保存进度!

This commit is contained in:
2023-02-21 18:33:59 +08:00
parent a97d222486
commit 8248fe942a
3 changed files with 160 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2022-12-14 15:12:46
* @LastEditors: Kane
* @LastEditTime: 2023-02-04 22:36:13
* @LastEditTime: 2023-02-21 13:09:15
* @FilePath: /IT工具综合平台/src/router/index.js
* @Description: 定义应用路由配置
*
@@ -91,7 +91,28 @@ const routes = [
},
],
},
{//信息管理
{
//信息查询
path: "/query_info",
name: "QueryInfo",
meta: {
title: "信息查询",
icon: "search",
},
component: () => import("@/layout/Index.vue"),
children: [
{
path: "/query_stuff",
name: "QueryStuff",
meta: {
title: "人员信息",
icon: "user",
},
component: () => import("@/views/info/StaffInfo.vue"),
},
],
},
{//权限管理
path: "/privilege",
name: "Privilege",
meta: {