代码调整

This commit is contained in:
dong 2023-02-17 15:49:44 +08:00
parent fcb9ce5e08
commit 25fcd0d671
2 changed files with 6 additions and 6 deletions

View File

@ -244,10 +244,10 @@ export default {
this.doClose();
this.$store.commit('socket/clearOperationModeApplyList', JSON.parse(JSON.stringify(this.tableData)));
}
}).catch(() => {
}).catch((err) => {
this.loading = false;
this.doClose();
this.$refs.noticeInfo.doShow();
this.$refs.noticeInfo.doShow(err.message);
});
} else {
const list = [];
@ -275,10 +275,10 @@ export default {
this.loading = false;
this.doClose();
}
}).catch(() => {
}).catch((err) => {
this.loading = false;
this.doClose();
this.$refs.noticeInfo.doShow();
this.$refs.noticeInfo.doShow(err.message);
});
}
}

View File

@ -211,10 +211,10 @@ export default {
this.loading = false;
this.doClose();
}
}).catch(() => {
}).catch((err) => {
this.loading = false;
this.doClose();
this.$refs.noticeInfo.doShow();
this.$refs.noticeInfo.doShow(err.message);
});
}
},