chenrui 5 ماه پیش
والد
کامیت
c0dc5c46e9

+ 3 - 2
src/views/financialManagement/financialCollection/list.vue

@@ -81,7 +81,7 @@
           ,已退金额
           <strong>{{ totalData&&(totalData.refundedAmount || totalData.refundedAmount==0) ? toThousands(totalData.refundedAmount) : '--' }}</strong>
           <a-tooltip placement="bottom" title="实收金额=已收金额-退款中金额-已退金额">,<span style="color:#ED1c24;">实收金额</span><a-icon type="question-circle" style="margin:0 10px 0 5px;color:#ED1c24;"/></a-tooltip>
-          <strong style="color:#ED1c24;" v-if="receivedPriceFlag">{{ toThousands(receivedPrice) }}</strong>
+          <strong style="color:#ED1c24;" v-if="receivedPriceFlag">{{ '¥'+receivedPrice }}</strong>
           <span style="color:#ED1c24;" v-else>--</span>
         </div>
       </a-alert>
@@ -287,7 +287,8 @@ export default {
     },
     // 实收金额
     receivedPrice () {
-      return this.totalData.settledAmount - this.totalData.refundingAmount - this.totalData.refundedAmount
+      const numInfo = this.totalData.settledAmount - this.totalData.refundingAmount - this.totalData.refundedAmount
+      return numInfo.toFixed(2)
     }
   },
   methods: {

+ 3 - 1
src/views/numsGoodsShelves/withdrawalManagementNew/list.vue

@@ -19,8 +19,10 @@
       </div>
       <div style="margin:10px 0">
         <div style="margin:10px 0">
-          账户总金额:{{ pageInfo&&pageInfo.totalAmount?toThousands(pageInfo.totalAmount):'--' }}(包含可提现金额:<span>{{ pageInfo&&pageInfo.activeAmount?toThousands(pageInfo.activeAmount):'--' }}</span>,在途金额:{{ pageInfo&&pageInfo.floatAmount?toThousands(pageInfo.floatAmount):'--' }})
+          <p>可提现金额:<strong style="color:#ed1c24;">{{ pageInfo&&(pageInfo.activeAmount||pageInfo.activeAmount==0)?toThousands(pageInfo.activeAmount):'--' }}</strong></p>
+          账户总金额:{{ pageInfo&&(pageInfo.totalAmount||pageInfo.totalAmount==0)?toThousands(pageInfo.totalAmount):'--' }}(包含到账金额:<span>{{ pageInfo&&(pageInfo.activeAmount||pageInfo.activeAmount==0)?toThousands(pageInfo.activeAmount):'--' }}</span>,在途金额:{{ pageInfo&&(pageInfo.floatAmount||pageInfo.floatAmount==0)?toThousands(pageInfo.floatAmount):'--' }})
           <p style="margin-top:10px;">(提示:①提现手续费为0.5元/笔;②资金到账周期为工作日+1天;③线上支付订单需审核通过后才能提现;④订单被审核不通过或修理厂取消订单后将会在1-3个工作日原路返回到修理厂)</p>
+          账户冻结金额:{{ pageInfo&&(pageInfo.freezeAmount||freezeAmount==0)?toThousands(pageInfo.freezeAmount):'--' }}
         </div>
         <a-button
           id="withdrawal-tixian"