Browse Source

目标管理-列表增加两位小数点。

DongZ 1 year ago
parent
commit
e104a10274
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/views/business/spd/target/MonthGoalMerge.vue

+ 3 - 0
src/views/business/spd/target/MonthGoalMerge.vue

@@ -741,6 +741,9 @@
         listMonthGoalMerge(this.queryParams).then(response => {
           this.monthGoalMergeList = response.rows;
           this.total = response.total;
+          this.monthGoalMergeList.forEach(item => {
+            item.goalSum = item.goalSum.toFixed(2);
+          })
           this.loading = false;
         });
       },