浏览代码

修改bug

chenrui 5 月之前
父节点
当前提交
cf21387b3a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/views/financialManagement/financialCollection/list.vue

+ 1 - 1
src/views/financialManagement/financialCollection/list.vue

@@ -287,7 +287,7 @@ export default {
     },
     // 实收金额
     receivedPrice () {
-      const numInfo = this.totalData.settledAmount - this.totalData.refundingAmount - this.totalData.refundedAmount
+      const numInfo = (this.totalData.settledAmount * 100 - this.totalData.refundingAmount * 100 - this.totalData.refundedAmount * 100) / 100
       return numInfo.toFixed(2)
     }
   },