From c629c77370a239a7e365821d650070b94fe44525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Wed, 9 Mar 2022 09:30:49 +0000 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=E5=B1=82=E7=BA=A7=E5=90=8E=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=89=BE=E5=88=B0=E9=A1=B5=E9=9D=A2=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/system/dict/data.vue | 2 +- ruoyi-ui/src/views/system/role/authUser.vue | 2 +- ruoyi-ui/src/views/system/user/authRole.vue | 2 +- ruoyi-ui/src/views/tool/gen/editTable.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ruoyi-ui/src/views/system/dict/data.vue b/ruoyi-ui/src/views/system/dict/data.vue index 2bd8cbb5c..dea5de0df 100644 --- a/ruoyi-ui/src/views/system/dict/data.vue +++ b/ruoyi-ui/src/views/system/dict/data.vue @@ -326,7 +326,7 @@ export default { }, /** 返回按钮操作 */ handleClose() { - const obj = { path: "/system/dict" }; + const obj = { name: "Dict" }; this.$tab.closeOpenPage(obj); }, /** 重置按钮操作 */ diff --git a/ruoyi-ui/src/views/system/role/authUser.vue b/ruoyi-ui/src/views/system/role/authUser.vue index 970496394..70581ce0c 100644 --- a/ruoyi-ui/src/views/system/role/authUser.vue +++ b/ruoyi-ui/src/views/system/role/authUser.vue @@ -151,7 +151,7 @@ export default { }, // 返回按钮 handleClose() { - const obj = { path: "/system/role" }; + const obj = { name: "Role" }; this.$tab.closeOpenPage(obj); }, /** 搜索按钮操作 */ diff --git a/ruoyi-ui/src/views/system/user/authRole.vue b/ruoyi-ui/src/views/system/user/authRole.vue index 7655bdf62..9df1b8115 100644 --- a/ruoyi-ui/src/views/system/user/authRole.vue +++ b/ruoyi-ui/src/views/system/user/authRole.vue @@ -109,7 +109,7 @@ export default { }, /** 关闭按钮 */ close() { - const obj = { path: "/system/user" }; + const obj = { name: "User" }; this.$tab.closeOpenPage(obj); }, }, diff --git a/ruoyi-ui/src/views/tool/gen/editTable.vue b/ruoyi-ui/src/views/tool/gen/editTable.vue index 5dc36c33b..762b826af 100644 --- a/ruoyi-ui/src/views/tool/gen/editTable.vue +++ b/ruoyi-ui/src/views/tool/gen/editTable.vue @@ -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); } },