Browse Source

社区自查状态

dev
mk 2 years ago
parent
commit
2112e43ceb
  1. 2
      pages/index/index.js
  2. 4
      pages/work/work.js
  3. 7
      subpages/communitySelfInsp/pages/historyQuery/historyQuery.js
  4. 16
      subpages/communitySelfInsp/pages/synthesis/synthesis.js
  5. 2
      subpages/communitySelfInsp/pages/synthesis/synthesis.wxml

2
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(){

4
pages/work/work.js

@ -208,8 +208,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({

7
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}&monthName=${e.currentTarget.dataset.item.monthName}`,
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() {
//返回上一级,关闭当前页面

16
subpages/communitySelfInsp/pages/synthesis/synthesis.js

@ -15,25 +15,27 @@ Page({
inspRecordId:'',//自查表Id
fontSize:'',
maskStatus:false,
shareFlag:false
shareFlag:false,
status:0
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(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();
// 获取当前月份(注意月份是从 0 到 11,所以要加 1)
const currentMonth = currentDate.getMonth() + 1;
if(currentMonth == options.monthName){
this.setData({

2
subpages/communitySelfInsp/pages/synthesis/synthesis.wxml

@ -6,7 +6,7 @@
</view>
<view class="content">
<view class="h2" style="font-size: {{fontSize}};">{{agencyName}}{{monthName}}月份满意度自查</view>
<view class="tag"> <image src="../../../../images/tag.png" mode=""/> 进行中</view>
<view class="tag"> <image src="../../../../images/tag.png" mode=""/> {{status == 1?'进行中':'已结束'}}</view>
</view>
</view>

Loading…
Cancel
Save