diff --git a/pages/index/index.js b/pages/index/index.js index 5661ccb..fda2331 100644 --- a/pages/index/index.js +++ b/pages/index/index.js @@ -22,7 +22,7 @@ Page({ share:app.globalData.share }) await this.getToken() - await this.getIntelligentMessage() + // await this.getIntelligentMessage() await this.getStaffbasicinfo() }, onShow(){ diff --git a/pages/work/work.js b/pages/work/work.js index 43a8565..127e930 100644 --- a/pages/work/work.js +++ b/pages/work/work.js @@ -216,8 +216,8 @@ Page({ }, toDetail(e){ wx.navigateTo({ - url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${e.currentTarget.dataset.item.id}&qrCodeImgUrl=${e.currentTarget.dataset.item.qrCodeImgUrl}&agencyName=${e.currentTarget.dataset.item.agencyName}&monthName=${e.currentTarget.dataset.item.monthName}&questionnaireUrl=${e.currentTarget.dataset.item.questionnaireUrl}`, - }) + url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${encodeURIComponent(e.currentTarget.dataset.item.id)}&qrCodeImgUrl=${encodeURIComponent(e.currentTarget.dataset.item.qrCodeImgUrl)}&agencyName=${encodeURIComponent(e.currentTarget.dataset.item.agencyName)}&monthName=${encodeURIComponent(e.currentTarget.dataset.item.monthName)}&questionnaireUrl=${encodeURIComponent(e.currentTarget.dataset.item.questionnaireUrl)}&status=${encodeURIComponent(e.currentTarget.dataset.item.status)}` + }) }, handelClickShare(e) { // $wuxActionSheet().showSheet({ diff --git a/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js b/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js index 99ba234..ae6288a 100644 --- a/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js +++ b/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js @@ -141,7 +141,7 @@ Page({ } }, handelClickedit(e){ - // console.log(e); + console.log(e); // if(this.data.type == 'resi'){ // wx.navigateTo({ // url: `/subpages/addResi/pages/addResi/addResi?type=edit&resiId=${e.currentTarget.dataset.item.resiId}`, @@ -152,8 +152,11 @@ Page({ // }) // } wx.navigateTo({ - url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${e.currentTarget.dataset.item.id}`, + url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${encodeURIComponent(e.currentTarget.dataset.item.id)}&qrCodeImgUrl=${encodeURIComponent(e.currentTarget.dataset.item.qrCodeImgUrl)}&agencyName=${encodeURIComponent(e.currentTarget.dataset.item.agencyName)}&monthName=${encodeURIComponent(e.currentTarget.dataset.item.monthName)}&questionnaireUrl=${encodeURIComponent(e.currentTarget.dataset.item.questionnaireUrl)}&status=${encodeURIComponent(e.currentTarget.dataset.item.status)}` }) + // wx.navigateTo({ + // url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${e.currentTarget.dataset.item.id}&monthName=${e.currentTarget.dataset.item.monthName}&status=${e.currentTarget.dataset.item.status}`, + // }) }, back() { //返回上一级,关闭当前页面 diff --git a/subpages/communitySelfInsp/pages/synthesis/synthesis.js b/subpages/communitySelfInsp/pages/synthesis/synthesis.js index b3cc7e7..0d4bbde 100644 --- a/subpages/communitySelfInsp/pages/synthesis/synthesis.js +++ b/subpages/communitySelfInsp/pages/synthesis/synthesis.js @@ -14,23 +14,39 @@ Page({ synthesisScore:'',//综合得分 inspRecordId:'',//自查表Id fontSize:'', - maskStatus:false + maskStatus:false, + shareFlag:false, + status:0 }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { - console.log(options); + // 获取参数 this.setData({ statusHeight: app.globalData.deviceInfo.statusHeight, navigationHeight: app.globalData.deviceInfo.navigationHeight, - inspRecordId:options.inspRecordId, - agencyName:options.agencyName, - monthName:options.monthName, - qrCodeImgUrl:options.qrCodeImgUrl, - questionnaireUrl:options.questionnaireUrl + inspRecordId: decodeURIComponent(options.inspRecordId), + agencyName:decodeURIComponent(options.agencyName), + monthName:decodeURIComponent(options.monthName), + qrCodeImgUrl:decodeURIComponent(options.qrCodeImgUrl), + questionnaireUrl:decodeURIComponent(options.questionnaireUrl), + status:decodeURIComponent(options.status) }) + // 获取当前日期 + const currentDate = new Date(); + const currentMonth = currentDate.getMonth() + 1; + if(currentMonth == options.monthName){ + this.setData({ + shareFlag:true + }) + }else{ + this.setData({ + shareFlag:false + }) + } + this.getSynthesis() }, diff --git a/subpages/communitySelfInsp/pages/synthesis/synthesis.wxml b/subpages/communitySelfInsp/pages/synthesis/synthesis.wxml index 020c097..69993d2 100644 --- a/subpages/communitySelfInsp/pages/synthesis/synthesis.wxml +++ b/subpages/communitySelfInsp/pages/synthesis/synthesis.wxml @@ -6,7 +6,7 @@ {{agencyName}}{{monthName}}月份满意度自查 - 进行中 + {{status == 1?'进行中':'已结束'}} @@ -57,7 +57,7 @@ - +