diff --git a/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js b/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js index 99ba234..3525119 100644 --- a/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js +++ b/subpages/communitySelfInsp/pages/historyQuery/historyQuery.js @@ -152,7 +152,7 @@ Page({ // }) // } wx.navigateTo({ - url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${e.currentTarget.dataset.item.id}`, + url: `/subpages/communitySelfInsp/pages/synthesis/synthesis?inspRecordId=${e.currentTarget.dataset.item.id}&monthName=${e.currentTarget.dataset.item.monthName}`, }) }, back() { diff --git a/subpages/communitySelfInsp/pages/synthesis/synthesis.js b/subpages/communitySelfInsp/pages/synthesis/synthesis.js index b3cc7e7..ab2fe69 100644 --- a/subpages/communitySelfInsp/pages/synthesis/synthesis.js +++ b/subpages/communitySelfInsp/pages/synthesis/synthesis.js @@ -14,14 +14,14 @@ Page({ synthesisScore:'',//综合得分 inspRecordId:'',//自查表Id fontSize:'', - maskStatus:false + maskStatus:false, + shareFlag:false }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { - console.log(options); this.setData({ statusHeight: app.globalData.deviceInfo.statusHeight, navigationHeight: app.globalData.deviceInfo.navigationHeight, @@ -31,6 +31,20 @@ Page({ qrCodeImgUrl:options.qrCodeImgUrl, questionnaireUrl:options.questionnaireUrl }) + // 获取当前日期 + const currentDate = new Date(); + // 获取当前月份(注意月份是从 0 到 11,所以要加 1) + 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..9e2ee48 100644 --- a/subpages/communitySelfInsp/pages/synthesis/synthesis.wxml +++ b/subpages/communitySelfInsp/pages/synthesis/synthesis.wxml @@ -57,7 +57,7 @@ - +