This commit is contained in:
van
2026-04-07 17:29:30 +08:00
parent a2263eeef9
commit 8addb6080c
9 changed files with 835 additions and 89 deletions

View File

@@ -118,6 +118,32 @@ export const constantRoutes = [
meta: { title: '下好的慢单', icon: 'list' }
}
]
},
// 移动端专用入口(隐藏菜单,底部导航直达)
{
path: '/mobile',
component: Layout,
hidden: true,
children: [
{
path: 'fadan',
component: () => import('@/views/mobile/fadan/index'),
name: 'MobileFadan',
meta: { title: '发单' }
},
{
path: 'xianyu-publish',
component: () => import('@/views/system/social-media/xianyu-wenan'),
name: 'MobileXianyuPublish',
meta: { title: '发品' }
},
{
path: 'zhongcao',
component: () => import('@/views/mobile/zhongcao/index'),
name: 'MobileZhongcao',
meta: { title: '种草' }
}
]
}
]