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)
     }
   },