From b4f9b6596d2ecd82ca7f8dc1eee9c4cc354e8068 Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Fri, 2 Aug 2024 15:16:40 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 14 ++++++++++++++ src/views/system/dept/index.vue | 6 +++++- src/views/system/user/index.vue | 5 +++-- src/views/system/withdrawAudit/index.vue | 12 +++++++++--- 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 4e36bcf..76947ab 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -176,6 +176,20 @@ export const dynamicRoutes = [ } ] }, + { + path: '/system/dept', + component: Layout, + hidden: true, + permissions: ['system:dept:list'], + children: [ + { + path: 'index/:owner', + component: () => import('@/views/system/dept'), + name: 'Data', + meta: { title: '运营商列表', activeMenu: '/system/dept' } + } + ] + }, { path: '/system/area-parking', component: Layout, diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index 0c25940..ad6b2f5 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -72,7 +72,7 @@ :default-expand-all="isExpandAll" :tree-props="{children: 'children', hasChildren: 'hasChildren'}" :default-sort="defaultSort" @sort-change="handleSortChange"> - + @@ -544,6 +544,10 @@ export default { }, created() { console.log("当前用户信息:",this.$store.state.user.id) + const owner = this.$route.params && this.$route.params.owner; + if (owner != null) { + this.queryParams.deptName = owner; + } this.userName = this.$store.state.user.name; let userId = this.$store.state.user.id; getUser(userId).then(response => { diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 093012e..8b20250 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -148,7 +148,8 @@ @@ -580,7 +581,7 @@ export default { }); }, appUserNameFormatter(value){ - return value ? value : '去绑定'; + return value ? value.split(',').join('
') : '去绑定'; }, /** 查询用户列表 */ getList() { diff --git a/src/views/system/withdrawAudit/index.vue b/src/views/system/withdrawAudit/index.vue index 3ebecb9..8884b37 100644 --- a/src/views/system/withdrawAudit/index.vue +++ b/src/views/system/withdrawAudit/index.vue @@ -76,9 +76,15 @@ - - - + + + + +