路由回复

This commit is contained in:
Xulinchuan 2025-06-11 14:56:32 +08:00
parent d1cc65822d
commit 3d0bc89f66

View File

@ -351,19 +351,63 @@ export const constantRoutes = [
name: "brand",
component: Layout,
hidden: false,
alwaysShow: true,
redirect: 'noredirect',
meta: {
icon: "money",
link: null,
noCache: false,
title: "公共品牌",
},
children: [
{
path: 'brand/index',
component: () => import('@/views/brand/index'),
path: 'brand/informationManagement',
component: () => import('@/views/brand/informationManagement/index'),
hidden: false,
meta: {
title: "公共品牌",
icon: "star",
title: "信息管理",
icon: "",
noCache: false,
link: null,
},
name: "index",
name: "informationManagement",
},
{
path: 'brand/applicationReview',
component: () => import('@/views/brand/applicationReview/index'),
hidden: false,
meta: {
title: "申请审核",
icon: "",
noCache: false,
link: null,
},
name: "applicationReview",
},
{
path: 'brand/renewal',
component: () => import('@/views/brand/renewal/index'),
hidden: false,
meta: {
title: "申请续期",
icon: "",
noCache: false,
link: null,
},
name: "renewal",
},
// {
// path: 'brand/management',
// component: () => import('@/views/brand/management/index'),
// hidden: false,
// meta: {
// title: "品牌使用管理",
// icon: "",
// noCache: false,
// link: null,
// },
// name: "management",
// },
],
},
{