|
|
|
|
@ -458,8 +458,8 @@
|
|
|
|
|
this.paymentRegistrationForm.plan.forEach(item => {
|
|
|
|
|
total += Number(item.use_money)
|
|
|
|
|
})
|
|
|
|
|
console.log(Number(this.paymentRegistrationForm.actMoney), total)
|
|
|
|
|
if (Number(this.paymentRegistrationForm.actMoney) !== total) {
|
|
|
|
|
console.log(Number(this.paymentRegistrationForm.actMoney).toFixed(2), total.toFixed(2))
|
|
|
|
|
if (Number(this.paymentRegistrationForm.actMoney).toFixed(2) !== total.toFixed(2)) {
|
|
|
|
|
Message({
|
|
|
|
|
type: 'warning',
|
|
|
|
|
message: '实际付款金额与计划总金额不符'
|
|
|
|
|
|