Skip to content

Commit fdbae2d

Browse files
committed
feat: 新增商品属性值路由配置
1 parent 4906cec commit fdbae2d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/router/modules/remaining.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,22 @@ const remainingRouter: AppRouteRecordRaw[] = [
294294
}
295295
}
296296
]
297+
},
298+
{
299+
path: '/property',
300+
component: Layout,
301+
name: 'property',
302+
meta: {
303+
hidden: true
304+
},
305+
children: [
306+
{
307+
path: 'value/:propertyId(\\d+)',
308+
component: () => import('@/views/mall/product/property/value/index.vue'),
309+
name: 'PropertyValue',
310+
meta: { title: '商品属性值', icon: '', activeMenu: '/product/property' }
311+
}
312+
]
297313
}
298314
]
299315

0 commit comments

Comments
 (0)