diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 43375961..d768f217 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -294,6 +294,22 @@ const remainingRouter: AppRouteRecordRaw[] = [ } } ] + }, + { + path: '/property', + component: Layout, + name: 'property', + meta: { + hidden: true + }, + children: [ + { + path: 'value/:propertyId(\\d+)', + component: () => import('@/views/mall/product/property/value/index.vue'), + name: 'PropertyValue', + meta: { title: '商品属性值', icon: '', activeMenu: '/product/property' } + } + ] } ]