1、bug修复-系统异常后事务未回滚

2、指定人员打回
liujun0708-动火作业流程图逻辑修改
liujun 2024-06-11 17:42:12 +08:00
parent 50b64ed5e6
commit 39d0e0f406
1 changed files with 9 additions and 4 deletions

View File

@ -292,10 +292,15 @@ export default {
} }
upload('/xgf/user/approveMax', formData) upload('/xgf/user/approveMax', formData)
.then((data) => { .then((data) => {
this.$message.success('推送成功') if (data.code !== '0') {
this.visible = false this.$message.error(data.errorMessage)
this.$emit('refresh', '') } else {
this.handleClose() this.$message.success('推送成功')
this.visible = false
this.handleClose()
this.$emit('refresh', '')
}
this.loading = false this.loading = false
}) })
.catch((e) => { .catch((e) => {