2023-04-07 17:38:15 +08:00
|
|
|
|
/**
|
2023-04-04 10:56:33 +08:00
|
|
|
|
* @name umi 的路由配置
|
|
|
|
|
* @description 只支持 path,component,routes,redirect,wrappers,name,icon 的配置
|
|
|
|
|
* @param path path 只支持两种占位符配置,第一种是动态参数 :id 的形式,第二种是 * 通配符,通配符只能出现路由字符串的最后。
|
|
|
|
|
* @param component 配置 location 和 path 匹配后用于渲染的 React 组件路径。可以是绝对路径,也可以是相对路径,如果是相对路径,会从 src/pages 开始找起。
|
|
|
|
|
* @param routes 配置子路由,通常在需要为多个路径增加 layout 组件时使用。
|
|
|
|
|
* @param redirect 配置路由跳转
|
|
|
|
|
* @param wrappers 配置路由组件的包装组件,通过包装组件可以为当前的路由组件组合进更多的功能。 比如,可以用于路由级别的权限校验
|
|
|
|
|
* @param name 配置路由的标题,默认读取国际化文件 menu.ts 中 menu.xxxx 的值,如配置 name 为 login,则读取 menu.ts 中 menu.login 的取值作为标题
|
|
|
|
|
* @param icon 配置路由的图标,取值参考 https://ant.design/components/icon-cn, 注意去除风格后缀和大小写,如想要配置图标为 <StepBackwardOutlined /> 则取值应为 stepBackward 或 StepBackward,如想要配置图标为 <UserOutlined /> 则取值应为 user 或者 User
|
|
|
|
|
* @doc https://umijs.org/docs/guides/routes
|
|
|
|
|
*/
|
2023-05-05 17:12:39 +08:00
|
|
|
|
|
|
|
|
|
// const isPhone = getDevice() === 'phone';
|
2023-04-04 10:56:33 +08:00
|
|
|
|
export default [
|
|
|
|
|
{
|
|
|
|
|
path: '/user',
|
|
|
|
|
layout: false,
|
|
|
|
|
routes: [
|
|
|
|
|
{
|
|
|
|
|
name: 'login',
|
|
|
|
|
path: '/user/login',
|
|
|
|
|
component: './User/Login',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-04-07 17:38:15 +08:00
|
|
|
|
// {
|
|
|
|
|
// path: '/welcome',
|
|
|
|
|
// name: 'welcome',
|
|
|
|
|
// icon: 'smile',
|
|
|
|
|
// component: './Welcome',
|
|
|
|
|
// },
|
2023-04-04 10:56:33 +08:00
|
|
|
|
{
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm',
|
2023-04-07 17:38:15 +08:00
|
|
|
|
name: 'scrm',
|
2023-04-04 10:56:33 +08:00
|
|
|
|
icon: 'crown',
|
2023-04-07 17:38:15 +08:00
|
|
|
|
// access: 'canAdmin',
|
2023-04-04 10:56:33 +08:00
|
|
|
|
routes: [
|
|
|
|
|
{
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm',
|
|
|
|
|
redirect: '/scrm/custom/workbench',
|
2023-04-04 10:56:33 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm/custom',
|
2023-04-20 17:38:19 +08:00
|
|
|
|
name: '客群管理',
|
2023-04-17 17:47:31 +08:00
|
|
|
|
routes: [
|
|
|
|
|
{
|
|
|
|
|
path: '/scrm/custom',
|
|
|
|
|
redirect: '/scrm/custom/workbench',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: '工作台',
|
|
|
|
|
icon: 'table',
|
|
|
|
|
path: '/scrm/custom/workbench',
|
|
|
|
|
component: './Workbench',
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-04-20 17:38:19 +08:00
|
|
|
|
name: '客户中心',
|
2023-04-17 17:47:31 +08:00
|
|
|
|
icon: 'table',
|
|
|
|
|
path: '/scrm/custom/list',
|
|
|
|
|
component: './CustomList',
|
|
|
|
|
},
|
2023-04-20 17:38:19 +08:00
|
|
|
|
{
|
|
|
|
|
name: '客群中心',
|
|
|
|
|
icon: 'table',
|
|
|
|
|
path: '/scrm/custom/grouplist',
|
|
|
|
|
component: './GroupList',
|
|
|
|
|
},
|
2023-04-17 17:47:31 +08:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/scrm/dep',
|
2023-04-07 17:38:15 +08:00
|
|
|
|
name: '部门管理',
|
|
|
|
|
routes: [
|
|
|
|
|
{
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm/dep',
|
|
|
|
|
redirect: '/scrm/dep/list',
|
2023-04-07 17:38:15 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: '部门员工',
|
|
|
|
|
icon: 'table',
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm/dep/list',
|
2023-04-07 17:38:15 +08:00
|
|
|
|
component: './DepartmentsList',
|
|
|
|
|
},
|
2023-04-17 17:47:31 +08:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/scrm/chat',
|
|
|
|
|
name: '聊天记录',
|
|
|
|
|
routes: [
|
2023-04-07 17:38:15 +08:00
|
|
|
|
{
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm/chat',
|
|
|
|
|
redirect: '/scrm/chat/list',
|
2023-04-07 17:38:15 +08:00
|
|
|
|
},
|
2023-04-11 15:29:40 +08:00
|
|
|
|
{
|
2023-04-17 17:47:31 +08:00
|
|
|
|
name: '成员聊天',
|
2023-04-11 15:29:40 +08:00
|
|
|
|
icon: 'table',
|
2023-04-17 17:47:31 +08:00
|
|
|
|
path: '/scrm/chat/list',
|
2023-04-11 15:29:40 +08:00
|
|
|
|
component: './ChatLogs',
|
|
|
|
|
},
|
2023-05-05 17:12:39 +08:00
|
|
|
|
{
|
|
|
|
|
name: '成员聊天',
|
|
|
|
|
icon: 'table',
|
|
|
|
|
path: '/scrm/chat/phonelist',
|
|
|
|
|
component: './ChatLogsPhone',
|
|
|
|
|
},
|
2023-04-07 17:38:15 +08:00
|
|
|
|
],
|
2023-04-04 10:56:33 +08:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-04-07 17:38:15 +08:00
|
|
|
|
|
|
|
|
|
// {
|
|
|
|
|
// name: 'list.table-list',
|
|
|
|
|
// icon: 'table',
|
|
|
|
|
// path: '/list',
|
|
|
|
|
// component: './TableList',
|
|
|
|
|
// },
|
2023-04-04 10:56:33 +08:00
|
|
|
|
{
|
|
|
|
|
path: '/',
|
2023-04-17 17:47:31 +08:00
|
|
|
|
redirect: '/scrm',
|
2023-04-04 10:56:33 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '*',
|
|
|
|
|
layout: false,
|
|
|
|
|
component: './404',
|
|
|
|
|
},
|
|
|
|
|
];
|