Commit 7b622462 by fengzhaoyu

fix:调试工作通知

parent 11a435c2
...@@ -84,9 +84,13 @@ create.Page({ ...@@ -84,9 +84,13 @@ create.Page({
} }
}, },
onLoad(event) { onLoad(event) {
if (JSON.stringify(event) != '{}') { if (JSON.stringify(event) != '{}') {
this.setData({
listLoading: false
})
let scheduleItem = JSON.parse(Object.keys(event)[0].split('=')[1]) let scheduleItem = JSON.parse(Object.keys(event)[0].split('=')[1])
dd.navigateTo({ url: `./../meetingDetail/meetingDetail?scheduleItem=${encodeURIComponent(scheduleItem)}` }) dd.navigateTo({ url: `./../meetingDetail/meetingDetail?scheduleItem=${encodeURIComponent(JSON.stringify(scheduleItem))}` })
} }
this.setData({ this.setData({
isFullscreen: getApp().globalData.isFullscreen isFullscreen: getApp().globalData.isFullscreen
...@@ -747,7 +751,7 @@ create.Page({ ...@@ -747,7 +751,7 @@ create.Page({
maxClickCount--; maxClickCount--;
if (maxClickCount == 0) { if (maxClickCount == 0) {
dd.alert({ dd.alert({
content: "版本号211" content: "版本号219"
}) })
maxClickCount = 5; maxClickCount = 5;
} }
......
...@@ -179,7 +179,7 @@ create.Page({ ...@@ -179,7 +179,7 @@ create.Page({
this.setData({ this.setData({
isIPX: checkFullScren(), isIPX: checkFullScren(),
placeholder: `${getApp().globalData.name}创建的会议`, placeholder: `${getApp().globalData.name}创建的会议`,
scheduleItem: JSON.parse(event.scheduleItem) || JSON.parse(Object.keys(event)[0].split('=')[1]), scheduleItem: JSON.parse(event.scheduleItem),
currentPeople: getApp().globalData.userid currentPeople: getApp().globalData.userid
}) })
this.getDetail() this.getDetail()
......
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