change(ruoyi-ui):在删除电柜信息时,增加提示信息,明确删除操作将同时删除相关母排

IOT
zch 2 months ago
parent 396a28f926
commit b045be086a

@ -455,7 +455,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const objIds = row.objId || this.ids; const objIds = row.objId || this.ids;
this.$modal.confirm('是否确认删除电柜信息编号为"' + objIds + '"的数据项?').then(function() { this.$modal.confirm('是否确认删除电柜信息编号为"' + objIds + '"的数据项?这也将删除电柜相关母排!').then(function() {
return delBaseCabinetInfo(objIds); return delBaseCabinetInfo(objIds);
}).then(() => { }).then(() => {
this.getList(); this.getList();

Loading…
Cancel
Save