Browse Source

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

DongZ 1 năm trước cách đây
mục cha
commit
e104a10274
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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;
         });
       },