!83 商品属性模块

Merge pull request !83 from 孔思宇/feat/mall-product-property
This commit is contained in:
芋道源码
2023-04-01 16:25:24 +00:00
committed by Gitee
6 changed files with 625 additions and 0 deletions

View File

@ -319,6 +319,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' }
}
]
}
]