From 7dfbc30e947b79885a041fd671a19af44c568f8a Mon Sep 17 00:00:00 2001 From: tikkhun Date: Thu, 27 Nov 2025 23:55:18 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=B7=AF=E7=94=B1):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E4=BA=A7=E5=93=81=E5=88=97=E8=A1=A8=E8=B7=AF=E7=94=B1=E5=B9=B6?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将产品列表路由添加到路由配置中,并调整其他路由的顺序以优化菜单显示逻辑 --- .umirc.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.umirc.ts b/.umirc.ts index f810ace..59f691d 100644 --- a/.umirc.ts +++ b/.umirc.ts @@ -87,6 +87,11 @@ export default defineConfig({ path: '/product', access: 'canSeeProduct', routes: [ + { + name: '产品列表', + path: '/product/list', + component: './Product/List', + }, { name: '商品分类', path: '/product/category', @@ -102,11 +107,7 @@ export default defineConfig({ path: '/product/flavors', component: './Product/Flavors', }, - { - name: '产品列表', - path: '/product/list', - component: './Product/List', - }, + { name: 'WP商品列表', path: '/product/wp_list',