This commit is contained in:
李志鹏
2025-10-16 11:01:54 +08:00
parent 7a312dd369
commit 6866d69d00
13 changed files with 381 additions and 288 deletions

View File

@@ -85,36 +85,31 @@ const router = createRouter({
// 上传照片
path: '/workshop/uploadFace',
name: 'uploadFace',
component: () => import('../views/Workshop/uploadFace/index.vue')
component: () => import('../views/Workshop/uploadFace.vue')
},
{
// 自定义创作
path: '/workshop/customize',
name: 'customize',
component: () => import('../views/Workshop/customize/index.vue'),
children: [
{
path: '/workshop/customize',
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')
}
]
component: () => import('../views/Workshop/customize.vue'),
},
{
// library
path: '/workshop/library',
name: 'library',
component: () => import('../views/Workshop/library.vue'),
},
{
// creation
path: '/workshop/creation',
name: 'creation',
component: () => import('../views/Workshop/creation.vue'),
},
{
// 完成创建
path: '/workshop/end',
name: 'end',
component: () => import('../views/Workshop/end/index.vue')
component: () => import('../views/Workshop/end.vue')
}
]
}