增加菜单页面,增加小程序管理页面,增加店铺员工页面

This commit is contained in:
2025-02-17 10:03:35 +08:00
parent 4adee9121e
commit 960bbada59
29 changed files with 2508 additions and 280 deletions

View File

@@ -134,7 +134,7 @@ export const constantRoutes: RouteRecordRaw[] = [
},
{
path: "staff",
component: () => import("@/views/shop/staff.vue"),
component: () => import("@/views/shop/staff/index.vue"),
name: "shopStaff",
meta: {
title: "员工列表",
@@ -189,6 +189,26 @@ export const constantRoutes: RouteRecordRaw[] = [
keepAlive: true,
},
},
{
path: "menu",
component: () => import("@/views/admim/system/menu/index.vue"),
name: "adminSysMenu",
meta: {
title: "菜单管理",
affix: false,
keepAlive: true,
},
},
{
path: "miniAppPages",
component: () => import("@/views/admim/system/miniAppPages/index.vue"),
name: "adminSysMiniAppPages",
meta: {
title: "小程序页面",
affix: false,
keepAlive: true,
},
},
{
path: "version",
component: () => import("@/views/admim/system/version/index.vue"),