给单据的新增和编辑界面增加审核按钮

This commit is contained in:
季圣华
2022-05-18 23:16:45 +08:00
parent fa48c8345b
commit 24ee142f55
23 changed files with 164 additions and 21 deletions

View File

@@ -33,11 +33,17 @@ export const FinancialListMixin = {
methods: {
myHandleAdd() {
this.$refs.modalForm.action = "add";
if(this.btnEnableList.indexOf(2)===-1) {
this.$refs.modalForm.isCanCheck = false
}
this.handleAdd();
},
myHandleEdit(record) {
if(record.status === '0') {
this.$refs.modalForm.action = "edit";
if(this.btnEnableList.indexOf(2)===-1) {
this.$refs.modalForm.isCanCheck = false
}
this.handleEdit(record);
} else {
this.$message.warning("抱歉,只有未审核的单据才能编辑!")

View File

@@ -15,6 +15,8 @@ export const FinancialModalMixin = {
organList: [],
personList: [],
accountList: [],
billStatus: '0',
isCanCheck: true,
isTenant: false,
spans: {
labelCol1: {span: 2},
@@ -244,6 +246,11 @@ export const FinancialModalMixin = {
});
typeof success === 'function' ? success(res) : ''
tab.loading = false
}
},
//保存并审核
handleOkAndCheck() {
this.billStatus = '1'
this.handleOk()
},
}
}