|
|
|
|
@ -502,6 +502,15 @@ export default {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label:'已申请金额(元)',
|
|
|
|
|
prop:'apply_money_total',
|
|
|
|
|
width:180,
|
|
|
|
|
align:'right',
|
|
|
|
|
formatter:(cell,data,value)=>{
|
|
|
|
|
return Number(value).toFixed(2).replace(/(\d)(?=(\d{3})+\.)/g, '$1,')
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label:'已付金额(元)',
|
|
|
|
|
prop:'fund_log_total',
|
|
|
|
|
@ -518,7 +527,7 @@ export default {
|
|
|
|
|
let per = ((((row.fund_log_total)/row.money)||0)*100)?.toFixed(2) || 0
|
|
|
|
|
return (
|
|
|
|
|
<div style={{'color':per > 110 ? 'red' : 'green'}}>
|
|
|
|
|
{per.padStart(5,'0')}%
|
|
|
|
|
{per}%
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
@ -806,8 +815,8 @@ export default {
|
|
|
|
|
showPaymentPlan(row, column, cell){
|
|
|
|
|
if(column.property === 'sign_plan_count'){
|
|
|
|
|
this.$refs['contractPaymentRegistration'].getSignPlan(row.id)
|
|
|
|
|
row.status === 2 ? this.$refs['contractPaymentRegistration'].isSign = true : this.$refs['contractPaymentRegistration'].isSign = false
|
|
|
|
|
this.$refs['contractPaymentRegistration'].isShow = true
|
|
|
|
|
row.id === 2 ? this.$refs['contractPaymentRegistration'].isSign = true : this.$refs['contractPaymentRegistration'].isSign = false
|
|
|
|
|
}
|
|
|
|
|
if(column.property === 'fund_log_total'){
|
|
|
|
|
this.$router.push(`/contract/paymentRegistrationList?contractId=${row.id}`)
|
|
|
|
|
|