feat: 客户详情 + review 修改

(cherry picked from commit 23f483ac45)
This commit is contained in:
Wanwan
2023-11-04 03:21:01 +08:00
committed by shizhong
parent e65a853cda
commit f780cf0c7b
9 changed files with 508 additions and 107 deletions

View File

@ -487,6 +487,24 @@ const remainingRouter: AppRouteRecordRaw[] = [
component: () => import('@/views/mall/promotion/diy/page/decorate.vue')
}
]
},
{
path: '/crm',
component: Layout,
name: 'CrmCenter',
meta: { hidden: true },
children: [
{
path: 'customer/detail/:id',
name: 'CrmCustomerDetail',
meta: {
title: '客户详情',
noCache: true,
hidden: true
},
component: () => import('@/views/crm/customer/detail/index.vue')
}
]
}
]