From 2c9695f6c5422942c0a7ce7d60783b32e52d1f4b Mon Sep 17 00:00:00 2001
From: 18650502300 <18650502300@163.com>
Date: Tue, 24 Sep 2024 16:22:33 +0800
Subject: [PATCH] =?UTF-8?q?1.=E8=B5=84=E9=87=91=E6=B5=81=E6=B0=B4=E6=94=BE?=
=?UTF-8?q?=E5=87=BA=E6=89=8B=E6=9C=BA=E5=8F=B7=E5=92=8C=E6=9F=A5=E8=AF=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/index.js | 14 ++++++++++++++
src/views/system/flow/index.vue | 23 +++++++++++++++--------
src/views/system/user/index.vue | 4 ++++
3 files changed, 33 insertions(+), 8 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index 94dfbf2..0a1797d 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -148,6 +148,20 @@ export const dynamicRoutes = [
}
]
},
+ {
+ path: '/system/user/userName',
+ component: Layout,
+ hidden: true,
+ permissions: ['system:user:list'],
+ children: [
+ {
+ path: 'index/:ownerPhone',
+ component: () => import('@/views/system/user'),
+ name: 'Data',
+ meta: { title: '管理员列表', activeMenu: '/system/user' }
+ }
+ ]
+ },
{
path: '/system/device/sn',
component: Layout,
diff --git a/src/views/system/flow/index.vue b/src/views/system/flow/index.vue
index 5919650..66092bc 100644
--- a/src/views/system/flow/index.vue
+++ b/src/views/system/flow/index.vue
@@ -20,14 +20,14 @@
@keyup.enter.native="handleQuery"
/>
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ {{ scope.row.ownerPhone }}
+
+
+
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index c3bccca..6777112 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -513,6 +513,10 @@ export default {
created() {
console.log("当前用户信息:",this.$store.state.user.name)
this.userName = this.$store.state.user.name;
+ const userName = this.$route.params && this.$route.params.ownerPhone;
+ if (userName != null) {
+ this.queryParams.userName = userName;
+ }
this.getList();
this.getDeptTree();
this.getConfigKey("sys.user.initPassword").then(response => {