Commit 11a435c2 by fengzhaoyu

合并

parents 62b803a1 93f2546a
...@@ -457,6 +457,9 @@ create.Page({ ...@@ -457,6 +457,9 @@ create.Page({
} }
// 有日程长度 // 有日程长度
if (value.length !== 0) { if (value.length !== 0) {
value.sort(function (a, b) {
return a.startTime.getTime() - b.startTime.getTime();
});
value.forEach((item, index) => { value.forEach((item, index) => {
if (index === 0) { if (index === 0) {
DateList.push({ DateList.push({
...@@ -744,7 +747,7 @@ create.Page({ ...@@ -744,7 +747,7 @@ create.Page({
maxClickCount--; maxClickCount--;
if (maxClickCount == 0) { if (maxClickCount == 0) {
dd.alert({ dd.alert({
content: "版本号210" content: "版本号211"
}) })
maxClickCount = 5; maxClickCount = 5;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment