feat: 客户详情 + review 修改

This commit is contained in:
Wanwan
2023-11-04 03:21:01 +08:00
parent fcc748dc63
commit 23f483ac45
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')
}
]
}
]