diff --git a/src/views/finance/components/examineRegistration.vue b/src/views/finance/components/examineRegistration.vue index 743e9be..9bfd067 100644 --- a/src/views/finance/components/examineRegistration.vue +++ b/src/views/finance/components/examineRegistration.vue @@ -299,11 +299,18 @@ return res[0]?.value || '未知' } }, + { + label: "科室", + prop: 'plan_department.name', + width: 100, + align: 'center' + }, { label: "名称", prop: 'name', align: 'left' - }, + }, + { label: "计划金额", prop: 'money', @@ -315,6 +322,12 @@ return m2 == 0 ? m1 : m2; } + }, + { + label: "已经使用", + prop: 'use_money_total', + width: 136, + align: 'right', } ], } @@ -346,9 +359,11 @@ name: name } if (this.paymentRegistrationForm.moneyWay) { + let _arr = []; this.paymentRegistrationForm.moneyWay.forEach((item, index) => { - this.plansSelect[`type[${index}]`] = item - }) + _arr.push(item); + }); + this.plansSelect[`type`]=_arr +''; } this.getBudgets() },