riku
2022-10-28 b45a01a8bee4a9bff5f9c248ead301b8675d1099
pages/home/home.js
@@ -55,6 +55,13 @@
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    //判断用户是否为首次登录,决定是否强制修改默认密码
    if (app.globalData.userInfo.remark == null || app.globalData.userInfo.remark == '') {
      wx.navigateTo({
        url: '/pages/m_user/p_changepw/p_changepw',
      })
    }
    wx.getStorage({
      key: 'accessToken',
      success: (result) => {
@@ -71,6 +78,12 @@
    this.getNews()
    this.getCommitment()
    this.getLedgerType()
  },
  onShow(){
    if (app.globalData.isLogin) {
    }
  },
  onPullDownRefresh(){
@@ -199,18 +212,28 @@
    let monthInfo = {
      totalMust: 0,
      finishedMust: 0,
      totalSelf: 0,
      finishedSelf: 0
    }
    subtypes.forEach(s => {
      //月度统计
      if (s.needUpdate) {
        monthInfo.totalMust++
        //统计自巡查类型的台账,类别为-1(暂定)
        if (s.ledgerTypeId == -1) {
          monthInfo.totalSelf++
        }
        if (s.upLoad) {
          monthInfo.finishedMust++
          if (s.ledgerTypeId == -1) {
            monthInfo.finishedSelf++
          }
        }
      }
    });
    monthInfo.percent = Math.round(monthInfo.finishedMust / monthInfo.totalMust * 100)
    monthInfo.percent = monthInfo.totalMust == 0 ? 0 : Math.round(monthInfo.finishedMust / monthInfo.totalMust * 100)
    monthInfo.percent2 = monthInfo.totalSelf == 0 ? 0 : Math.round(monthInfo.finishedSelf / monthInfo.totalSelf * 100)
    this.setData({monthInfo})
  },
@@ -224,29 +247,29 @@
    switch (index) {
      case "0":
        //测评历史记录
        url = `/pages/gradereport/gradereport?period=${this.data.historyPoint.period}`
        url = `/pages/m_assessment/gradereport/gradereport?period=${this.data.historyPoint.period}`
        break;
      case "5":
        wx.switchTab({
          url: '/pages/module_ledger/ledgerhome/ledgerhome',
          url: '/pages/m_ledger/ledgerhome/ledgerhome',
        })
        return;
      case "6":
        wx.switchTab({
          url: '/pages/promise/promise',
          url: '/pages/m_promise/promisehome/promise',
        })
        break;
      case "1":
        //工作提醒
        url = "/pages/notice/notice"
        url = "/pages/m_notice/notice/notice"
        break;
      case "2":
        //智能在线咨询
        url = "/pages/module_consult/consulthome/consulthome"
        url = "/pages/m_consult/consulthome/consulthome"
        break;
      case "3":
        //在线守法学习
        url = `/pages/learn/learn`
        url = `/pages/m_learn/learn/learn`
        break;
      case "4":
        //守法动态
@@ -279,6 +302,13 @@
      wx.navigateTo({
        url: url
      })
    } else {
      wx.showToast({
        title: '功能敬请期待',
        duration: 1000,
        icon: 'none',
        mask: true,
      })
    }
  }
})