update: 改用名称查找页面

This commit is contained in:
phanes 2022-03-09 17:18:15 +08:00
parent 8a89054c2f
commit d54981ac2d
4 changed files with 204 additions and 204 deletions

View File

@ -327,7 +327,7 @@ export default {
},
/** 返回按钮操作 */
handleClose() {
const obj = { path: "/system/dict" };
const obj = { name: "Dict" };
this.$tab.closeOpenPage(obj);
},
/** 重置按钮操作 */

View File

@ -153,7 +153,7 @@ export default {
},
//
handleClose() {
const obj = { path: "/system/role" };
const obj = { name: "Role" };
this.$tab.closeOpenPage(obj);
},
/** 搜索按钮操作 */

View File

@ -109,7 +109,7 @@ export default {
},
/** 关闭按钮 */
close() {
const obj = { path: "/system/user" };
const obj = { name: "User" };
this.$tab.closeOpenPage(obj);
},
},

View File

@ -213,7 +213,7 @@ export default {
},
/** 关闭按钮 */
close() {
const obj = { path: "/tool/gen", query: { t: Date.now(), pageNum: this.$route.query.pageNum } };
const obj = { name: "Gen", query: { t: Date.now(), pageNum: this.$route.query.pageNum } };
this.$tab.closeOpenPage(obj);
}
},