# Conflicts:
#	src/api/request.js
#	src/layout/menu/index.vue
#	src/layout/menu/menuTable.js
#	src/store/modules/users.js
#	src/views/goods/index.vue
This commit is contained in:
monanxiao
2024-10-12 11:31:35 +08:00
2 changed files with 22 additions and 2 deletions
+1 -1
View File
@@ -72,4 +72,4 @@ export function cardlists(query) {
url: "/permission/cardlists",
data: query,
});
}
}
+21 -1
View File
@@ -75,6 +75,26 @@ const routerList = [
},
],
},
{
path: "/config",
component: Layout,
redirect: "config",
meta: {
requiresAuth: true, //有一些页面是否登录才能进去
name: "服务配置",
},
children: [
{
path: "/config",
name: "config",
component: () => import("../views/config/index.vue"),
meta: {
requiresAuth: true, //有一些页面是否登录才能进去
name: "服务配置",
},
},
],
},
{
path: "/goods",
component: Layout,
@@ -90,7 +110,7 @@ const routerList = [
component: () => import("../views/goods/index.vue"),
meta: {
requiresAuth: true, //有一些页面是否登录才能进去
name: "项目列表",
name: "服务项目",
},
},
],