feat: stylist&customer&sex页面

This commit is contained in:
zhangyh
2025-10-13 10:13:54 +08:00
parent f1d0a2735a
commit d567014315
14 changed files with 633 additions and 52 deletions

View File

@@ -9,17 +9,42 @@ const router = createRouter({
},
{
path: '/login',
name: 'LoginPage',
component: () => import('@/views/login/LoginPage.vue')
},
{
path: '/signup',
name: 'SignupPage',
component: () => import('@/views/login/SignupPage.vue')
},
{ path: '/welcome', component: () => import('@/views/login/WelcomePage.vue') },
{
path: '/welcome',
name: 'WelcomePage',
component: () => import('@/views/login/WelcomePage.vue')
},
{
path: '/stylist',
component: () => import('@/views/stylist/index.vue')
name: 'StylistPage',
component: () => import('@/views/stylist/index.vue'),
children: [
{
path: '/sex',
name:'sex'
component: () => import('@/views/stylist/sex.vue')
},
{
path: '/dressfor',
name:'dressfor'
component: () => import('@/views/stylist/dressfor.vue')
},
{
path: '/customer',
name:'customer',
component: () => import('@/views/stylist/customer.vue')
}
]
},
{
path: '/workshop',
name: 'Workshop',
@@ -46,38 +71,41 @@ const router = createRouter({
name: 'SelectModelContinue',
component: () => import('../views/Workshop/selectModelContinue.vue')
},
{// 上传照片
path: '/workshop/uploadFace',
name: 'uploadFace',
component: () => import('../views/Workshop/uploadFace/index.vue'),
},
{// 自定义创作
path: '/workshop/customize',
name: 'customize',
component: () => import('../views/Workshop/customize/index.vue'),
children: [
{
path: '/workshop/customize/home',
name: 'customizeHome',
component: () => import('../views/Workshop/customize/home.vue'),
},
{
path: '/workshop/customize/library',
name: 'customizeLibrary',
component: () => import('../views/Workshop/customize/library.vue'),
},
{
path: '/workshop/customize/creation',
name: 'customizeCreation',
component: () => import('../views/Workshop/customize/creation.vue'),
},
],
},
{// 完成创建
path: '/workshop/end',
name: 'end',
component: () => import('../views/Workshop/end/index.vue'),
},
{
// 上传照片
path: '/workshop/uploadFace',
name: 'uploadFace',
component: () => import('../views/Workshop/uploadFace/index.vue')
},
{
// 自定义创作
path: '/workshop/customize',
name: 'customize',
component: () => import('../views/Workshop/customize/index.vue'),
children: [
{
path: '/workshop/customize/home',
name: 'customizeHome',
component: () => import('../views/Workshop/customize/home.vue')
},
{
path: '/workshop/customize/library',
name: 'customizeLibrary',
component: () => import('../views/Workshop/customize/library.vue')
},
{
path: '/workshop/customize/creation',
name: 'customizeCreation',
component: () => import('../views/Workshop/customize/creation.vue')
}
]
},
{
// 完成创建
path: '/workshop/end',
name: 'end',
component: () => import('../views/Workshop/end/index.vue')
}
]
}
]