bugfix 0706 doc

This commit is contained in:
lb
2023-07-06 13:35:44 +08:00
parent eac4976304
commit bea02c6d0d
16 changed files with 79 additions and 22 deletions

View File

@@ -88,7 +88,7 @@ export default {
props: {
navigator: {
type: Boolean,
default: true
default: true,
},
tableConfig: {
type: Object,
@@ -241,7 +241,7 @@ export default {
}));
this.totalPage = res.data.total;
} else if (Array.isArray(res.data)) {
this.dataList = res.data
this.dataList = res.data;
} else {
this.dataList.splice(0);
this.totalPage = 0;
@@ -284,9 +284,15 @@ export default {
promptName = data[deleteConfig.promptField];
}
let hintMsg = `确定要删除记录 "${promptName}" 吗?`;
if (promptName == data.id) {
// 如果 promptName 计算出来是 data.id 就以'该记录'代称
hintMsg = "确定删除该记录?";
}
let currenPageListLength = this.dataList.length;
// 确认是否删除
return this.$confirm(`确定要删除记录 "${promptName}" 吗?`, "提示", {
return this.$confirm(hintMsg, "提示", {
confirmButtonText: "确认",
cancelButtonText: "我再想想",
type: "warning",