商城装修

This commit is contained in:
owen
2023-10-29 22:03:24 +08:00
parent dc5cf9f24c
commit e9ff8d3237
39 changed files with 3425 additions and 5 deletions

View File

@ -459,6 +459,34 @@ const remainingRouter: AppRouteRecordRaw[] = [
component: () => import('@/views/pay/cashier/index.vue')
}
]
},
{
path: '/diy',
name: 'DiyCenter',
meta: { hidden: true },
component: Layout,
children: [
{
path: 'template/decorate/:id',
name: 'DiyTemplateDecorate',
meta: {
title: '模板装修',
noCache: true,
hidden: true
},
component: () => import('@/views/mall/promotion/diy/template/decorate.vue')
},
{
path: 'page/decorate/:id',
name: 'DiyPageDecorate',
meta: {
title: '页面装修',
noCache: true,
hidden: true
},
component: () => import('@/views/mall/promotion/diy/page/decorate.vue')
}
]
}
]