diff --git a/src/views/budget/budgetList.vue b/src/views/budget/budgetList.vue index 5457644..9c52f6a 100644 --- a/src/views/budget/budgetList.vue +++ b/src/views/budget/budgetList.vue @@ -901,16 +901,10 @@ export default { sums[index] = moneyFormatter(this.totalMoney); return; } -<<<<<<< HEAD - + if (column.property === "update_money") { sums[index] = moneyFormatter(this.update_money); return; -======= - if (column.property === 'update_money') { - sums[index] = moneyFormatter(this.updateMoney); - return ->>>>>>> df592f31fb2b950dd89844eb8be5521e364db39d } // const values = data.map(item => Number(item[column.property])); // if (!values.every(value => isNaN(value)) && (column.property === 'money' || column.property === 'plan_price'|| column.property === 'fund_log_total')) { diff --git a/src/views/contract/components/paymentRegistration.vue b/src/views/contract/components/paymentRegistration.vue index e497e2c..f97d4ee 100644 --- a/src/views/contract/components/paymentRegistration.vue +++ b/src/views/contract/components/paymentRegistration.vue @@ -488,7 +488,7 @@ export default { is_end: this.paymentRegistrationForm.isLast ? 1 : 0, remark: this.paymentRegistrationForm.remark, audit_money: this.paymentRegistrationForm.audit_money, - files: this.fileList.map(i => i?.response?.id) + files:this.fileList? this.fileList.map(i => i?.response?.id):[] }; addFundLog(data).then((res) => { //付款申请后同时更新一下合同中审计金额 diff --git a/src/views/contract/paymentRegistrationList.vue b/src/views/contract/paymentRegistrationList.vue index fa06946..eee43be 100644 --- a/src/views/contract/paymentRegistrationList.vue +++ b/src/views/contract/paymentRegistrationList.vue @@ -39,7 +39,7 @@ -