修复提交异常

This commit is contained in:
yuanteng 2024-12-02 13:15:12 +08:00
parent a2c19a215e
commit c6beef1783

View File

@ -1,3 +1,5 @@
export const routes = [
{
path: '/',
@ -67,6 +69,26 @@ export const routes = [
path: '/ProductCenter',
name: '服务类商品管理中心',
component: ()=> import("../views/ServiceType/ProductCenter.vue")
},
{
path: '/ClothingGrade',
name: '服装等级管理',
component: ()=> import("../views/CostumeAppointments/ClothingGrade.vue")
},
{
path: '/CostumeDetails',
name: '服装详情管理',
component: ()=> import("../views/CostumeAppointments/CostumeDetails.vue")
},
{
path: '/AppointmentOrder',
name: '写真预约订单管理',
component: ()=> import("../views/CostumeAppointments/AppointmentOrder.vue")
},
{
path: '/AddCostumes',
name: '添加服装',
component: ()=> import("../views/CostumeAppointments/AddCostumes.vue")
}
]
},