feat: vue-mobile => 完善移动端聊天列表页功能

This commit is contained in:
RockYang
2023-06-25 17:01:04 +08:00
parent 2c172c0851
commit 811f12135a
11 changed files with 385 additions and 41 deletions

View File

@@ -102,17 +102,22 @@ const routes = [
]
},
{
path: '/mobile/chat/session',
name: 'mobile-chat-session',
component: () => import('@/views/mobile/ChatSession.vue'),
},
{
name: 'mobile',
path: '/mobile',
meta: {title: 'ChatGPT-智能助手V3'},
component: () => import('@/views/mobile/Home.vue'),
redirect: '/mobile/chat',
redirect: '/mobile/chat/list',
children: [
{
path: '/mobile/chat',
name: 'mobile-chat',
component: () => import('@/views/mobile/Chat.vue'),
path: '/mobile/chat/list',
name: 'mobile-chat-list',
component: () => import('@/views/mobile/ChatList.vue'),
},
{
path: '/mobile/setting',