From 6754fe06c2d5e000c8daae954454a290209645c1 Mon Sep 17 00:00:00 2001 From: puhui999 Date: Sun, 14 Jan 2024 21:48:20 +0800 Subject: [PATCH] Merge remote-tracking branch 'yudao/dev' into dev-crm --- src/router/modules/remaining.ts | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index c1a933d2..13cbb47b 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -473,8 +473,7 @@ const remainingRouter: AppRouteRecordRaw[] = [ title: '模板装修', noCache: true, hidden: true, - // TODO @疯狂:建议 menu 那的 /mall/promotion/diy-template/diy-template 改成 /mall/promotion/diy/template - activeMenu: '/mall/promotion/diy-template/diy-template' + activeMenu: '/mall/promotion/diy/template' }, component: () => import('@/views/mall/promotion/diy/template/decorate.vue') }, @@ -485,8 +484,7 @@ const remainingRouter: AppRouteRecordRaw[] = [ title: '页面装修', noCache: true, hidden: true, - // TODO @疯狂:建议 menu 那的 /mall/promotion/diy-template/diy-page 改成 /mall/promotion/diy/page - activeMenu: '/mall/promotion/diy-template/diy-page' + activeMenu: '/mall/promotion/diy/page' }, component: () => import('@/views/mall/promotion/diy/page/decorate.vue') } @@ -518,6 +516,17 @@ const remainingRouter: AppRouteRecordRaw[] = [ hidden: true }, component: () => import('@/views/crm/contact/detail/index.vue') + }, + { + path: 'product/detail/:id', + name: 'CrmProductDetail', + meta: { + title: '产品详情', + noCache: true, + hidden: true, + activeMenu: '/crm/product' + }, + component: () => import('@/views/crm/product/detail/index.vue') } ] }