From 8b73bd399a648dbfd81be804b9a53798906a04c0 Mon Sep 17 00:00:00 2001 From: Xulinchuan <2026734208@qq.com> Date: Wed, 11 Jun 2025 14:56:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BE=E6=A0=87=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 56 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 50 insertions(+), 6 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 45e4ecb..01d8f0c 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -346,24 +346,68 @@ export const constantRoutes = [ }, ], }, - { +{ path: '/brand', 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", + // }, ], }, {