|
|
|
|
@ -15,6 +15,16 @@
|
|
|
|
|
<div class="payment-registration-row-title">合同金额</div>
|
|
|
|
|
<div class="payment-registration-row-content">{{moneyFormat(contract.money)}} (元)</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: flex">
|
|
|
|
|
<div class="payment-registration-row">
|
|
|
|
|
<div class="payment-registration-row-title">已申请金额</div>
|
|
|
|
|
<div class="payment-registration-row-content">{{totalApplyMoney()}} (元)</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="payment-registration-row">
|
|
|
|
|
<div class="payment-registration-row-title">已申请笔数</div>
|
|
|
|
|
<div class="payment-registration-row-content">{{payment.length}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: flex">
|
|
|
|
|
<div class="payment-registration-row">
|
|
|
|
|
<div class="payment-registration-row-title">已付金额</div>
|
|
|
|
|
@ -162,11 +172,17 @@ export default {
|
|
|
|
|
planTypes:[],
|
|
|
|
|
payTable:[
|
|
|
|
|
{
|
|
|
|
|
label:'支付金额',
|
|
|
|
|
label:'申请金额',
|
|
|
|
|
prop:'apply_money',
|
|
|
|
|
sortable:false,
|
|
|
|
|
align:'right'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label:'已付金额',
|
|
|
|
|
prop:'act_money',
|
|
|
|
|
sortable: false,
|
|
|
|
|
align:'right'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label:'时间',
|
|
|
|
|
prop:'created_at',
|
|
|
|
|
@ -243,6 +259,14 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
//合计申请金额
|
|
|
|
|
totalApplyMoney(){
|
|
|
|
|
let total = 0.00
|
|
|
|
|
this.payment.map(item => {
|
|
|
|
|
total += Number(item.apply_money)
|
|
|
|
|
})
|
|
|
|
|
return total.toFixed(2)
|
|
|
|
|
},
|
|
|
|
|
//资金列支渠道选择后变化
|
|
|
|
|
moneyWayChange(){
|
|
|
|
|
let page = this.plansSelect.page
|
|
|
|
|
|