Commit eaa22a65 authored by jingnan's avatar jingnan 👀

指令表示维护操作增加成功提示

parent f7516e03
......@@ -828,6 +828,7 @@ export default {
.then((res) => {
if (res.message.includes('成功')) {
this.getTableData(this.nodeData, this.level)
this.$utils.showMessageSuccess(res.message)
} else {
this.$message({
showClose: true,
......@@ -845,6 +846,7 @@ export default {
.then((res) => {
if (res.message.includes('成功')) {
this.getTableData(this.nodeData, this.level)
this.$utils.showMessageSuccess(res.message)
} else {
this.$message({
showClose: true,
......@@ -854,7 +856,9 @@ export default {
}
})
.catch((err) => console.error(err))
.finally(() => {})
.finally(() => {
this.aoLoading = false
})
},
/**
* 表一多选框
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment