图标修改

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

View File

@ -346,24 +346,68 @@ export const constantRoutes = [
}, },
], ],
}, },
{ {
path: '/brand', path: '/brand',
name: "brand", name: "brand",
component: Layout, component: Layout,
hidden: false, hidden: false,
alwaysShow: true,
redirect: 'noredirect',
meta: {
icon: "money",
link: null,
noCache: false,
title: "公共品牌",
},
children: [ children: [
{ {
path: 'brand/index', path: 'brand/informationManagement',
component: () => import('@/views/brand/index'), component: () => import('@/views/brand/informationManagement/index'),
hidden: false, hidden: false,
meta: { meta: {
title: "公共品牌", title: "信息管理",
icon: "star", icon: "",
noCache: false, noCache: false,
link: null, 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",
// },
], ],
}, },
{ {