diff --git a/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js b/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js index b5525903..8fc34809 100644 --- a/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js +++ b/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js @@ -157,12 +157,20 @@ export const FinancialModalMixin = { this.$refs.customerModalForm.title = "新增客户(提醒:如果找不到新添加的客户,请到用户管理检查是否分配了该客户权限)"; this.$refs.customerModalForm.disableSubmit = false; }, + addAccount() { + this.$refs.accountModalForm.add(); + this.$refs.accountModalForm.title = "新增结算账户"; + this.$refs.accountModalForm.disableSubmit = false; + }, vendorModalFormOk() { this.initSupplier() }, customerModalFormOk() { this.initCustomer() }, + accountModalFormOk() { + this.initAccount() + }, //单元值改变一个字符就触发一次 onValueChange(event) { let that = this diff --git a/jshERP-web/src/views/financial/modules/GiroModal.vue b/jshERP-web/src/views/financial/modules/GiroModal.vue index 3c72ce66..c529f67e 100644 --- a/jshERP-web/src/views/financial/modules/GiroModal.vue +++ b/jshERP-web/src/views/financial/modules/GiroModal.vue @@ -60,6 +60,12 @@ +
+ + +
新增结算账户
+
{{ item.name }} @@ -85,10 +91,12 @@ +