From 49ebbacf066911266cd6af5ce9669e53f6654dd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=BF=94=E5=AE=87-=E6=97=85=E7=AE=A1=E5=AE=B6?= <153298343@qq.com> Date: Tue, 13 Dec 2022 17:27:23 +0800 Subject: [PATCH] up --- .../components/examineRegistration.vue | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) 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() },