移动端重构第一版

This commit is contained in:
GeekMaster
2025-08-02 11:17:18 +08:00
parent 92915f7678
commit f7cf992598
14 changed files with 6151 additions and 507 deletions

View File

@@ -309,15 +309,25 @@ const routes = [
component: () => import('@/views/mobile/ChatList.vue'),
},
{
path: '/mobile/image',
name: 'mobile-image',
component: () => import('@/views/mobile/Image.vue'),
path: '/mobile/create',
name: 'mobile-create',
component: () => import('@/views/mobile/Create.vue'),
},
{
path: '/mobile/discover',
name: 'mobile-discover',
component: () => import('@/views/mobile/Discover.vue'),
},
{
path: '/mobile/profile',
name: 'mobile-profile',
component: () => import('@/views/mobile/Profile.vue'),
},
{
path: '/mobile/member',
name: 'mobile-member',
component: () => import('@/views/mobile/Member.vue'),
},
{
path: '/mobile/imgWall',
name: 'mobile-img-wall',
@@ -338,6 +348,37 @@ const routes = [
name: 'mobile-apps',
component: () => import('@/views/mobile/Apps.vue'),
},
// 新增的功能页面路由
{
path: '/mobile/power-log',
name: 'mobile-power-log',
component: () => import('@/views/mobile/PowerLog.vue'),
},
{
path: '/mobile/invite',
name: 'mobile-invite',
component: () => import('@/views/mobile/Invite.vue'),
},
{
path: '/mobile/tools',
name: 'mobile-tools',
component: () => import('@/views/mobile/Tools.vue'),
},
{
path: '/mobile/settings',
name: 'mobile-settings',
component: () => import('@/views/mobile/Settings.vue'),
},
{
path: '/mobile/help',
name: 'mobile-help',
component: () => import('@/views/mobile/Help.vue'),
},
{
path: '/mobile/feedback',
name: 'mobile-feedback',
component: () => import('@/views/mobile/Feedback.vue'),
},
],
},