pansl 2 년 전
부모
커밋
77912b770d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/dataStatistics/rechargeStatistics/summaryStatistics.vue

+ 2 - 2
src/views/dataStatistics/rechargeStatistics/summaryStatistics.vue

@@ -241,12 +241,12 @@ const init = () => {
   }
   }
   if (checkPermission('statistic.chargeTJ.lastMonthCharge')) {
   if (checkPermission('statistic.chargeTJ.lastMonthCharge')) {
     statisticChargeLastMonthCharge().then(res => {
     statisticChargeLastMonthCharge().then(res => {
-      currentMonthChargeData.value = res.data;
+      lastMonthChargeData.value = res.data;
     })
     })
   }
   }
   if (checkPermission('statistic.chargeTJ.totalCharge')) {
   if (checkPermission('statistic.chargeTJ.totalCharge')) {
     statisticChargeTotalCharge().then(res => {
     statisticChargeTotalCharge().then(res => {
-      currentMonthChargeData.value = res.data;
+      totalChargeData.value = res.data;
     })
     })
   }
   }
 }
 }