Browse Source

修改bug

chenrui 5 months ago
parent
commit
cf21387b3a
1 changed files with 1 additions and 1 deletions
  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)
     }
   },