刘翔宇-旅管家 3 years ago
parent 47ec6798ad
commit 49ebbacf06

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

Loading…
Cancel
Save