Commit 7b622462 by fengzhaoyu

fix:调试工作通知

parent 11a435c2
......@@ -84,9 +84,13 @@ create.Page({
}
},
onLoad(event) {
if (JSON.stringify(event) != '{}') {
this.setData({
listLoading: false
})
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({
isFullscreen: getApp().globalData.isFullscreen
......@@ -747,7 +751,7 @@ create.Page({
maxClickCount--;
if (maxClickCount == 0) {
dd.alert({
content: "版本号211"
content: "版本号219"
})
maxClickCount = 5;
}
......
......@@ -179,7 +179,7 @@ create.Page({
this.setData({
isIPX: checkFullScren(),
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
})
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