From be5cd659dd19c4f9ba5e00bb7a2906e9ed4df6f7 Mon Sep 17 00:00:00 2001
From: “dzb” <2632970487@qq.com>
Date: 星期二, 20 九月 2022 11:47:30 +0800
Subject: [PATCH] 添加分页功能
---
src/router/index.js | 21 +++++++++++++--------
1 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index 7d3de8d..06199da 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -18,14 +18,9 @@
component: () => import('@/views/systemSetting'),
children: [
{
- path: "createUser",
- name: "createUser",
- component: () => import('@/views/systemSetting/baseSetting/user/createUser')
- },
- {
- path: 'userList',
- name: 'userList',
- component: () => import('@/views/systemSetting/baseSetting/user/userList')
+ path: "user",
+ name: "user",
+ component: () => import('@/views/systemSetting/baseSetting/user')
},
{
path:'role',
@@ -41,6 +36,16 @@
path:'department',
name:'department',
component: () => import('@/views/systemSetting/baseSetting/department')
+ },
+ {
+ path:'portalSetting',
+ name:'portalSetting',
+ component: () => import('@/views/systemSetting/platform/portalSetting')
+ },
+ {
+ path:'otherInterface',
+ name:'otherInterface',
+ component: () => import('@/views/systemSetting/platform/otherInterface')
}
]
},
--
Gitblit v1.8.0