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

@@ -175,9 +175,11 @@ export default {
// payload: { type: string, data: string | number | object }
switch (type) {
case "delete": {
let hintMsg = "name" in data ? `确定要删除记录 "${data.name}" 吗?` : "确定删除该记录?";
let currenPageListLength = this.dataList.length;
// 确认是否删除
return this.$confirm(`确定要删除记录 "${data.name ?? data.id}" 吗?`, "提示", {
return this.$confirm(hintMsg, "提示", {
confirmButtonText: "确认",
cancelButtonText: "我再想想",
type: "warning",