添加小屏成员聊天页面, 添加css降级配置, 修复ios时间格式化bug

This commit is contained in:
zhengw
2023-05-05 17:12:39 +08:00
parent 297ab0778d
commit 97324bdfef
12 changed files with 980 additions and 13 deletions

View File

@@ -10,6 +10,8 @@
* @param icon 配置路由的图标,取值参考 https://ant.design/components/icon-cn 注意去除风格后缀和大小写,如想要配置图标为 <StepBackwardOutlined /> 则取值应为 stepBackward 或 StepBackward如想要配置图标为 <UserOutlined /> 则取值应为 user 或者 User
* @doc https://umijs.org/docs/guides/routes
*/
// const isPhone = getDevice() === 'phone';
export default [
{
path: '/user',
@@ -96,6 +98,12 @@ export default [
path: '/scrm/chat/list',
component: './ChatLogs',
},
{
name: '成员聊天',
icon: 'table',
path: '/scrm/chat/phonelist',
component: './ChatLogsPhone',
},
],
},
],