feat(product): 新增商品创建页面
- 添加商品创建表单,支持商品基本信息录入 - 实现多图片上传功能,支持主图和SKU图片上传 - 添加SKU配置模块,支持多个SKU的添加和管理 - 实现销售地区选择功能,支持多地区价格设置 - 添加物流信息配置,包括重量和尺寸设置 - 实现批量编辑功能,支持批量设置价格和库存 - 添加表单验证和提交逻辑,确保数据完整性 - 集成API接口,实现商品创建功能 - 添加页面路由配置,支持从商品管理页面跳转
This commit is contained in:
@@ -40,6 +40,11 @@ const routes = [
|
||||
path: '/manage/product',
|
||||
name: 'ProductManage',
|
||||
component: () => import('../views/ProductManage.vue')
|
||||
},
|
||||
{
|
||||
path: '/manage/product/create',
|
||||
name: 'ProductCreate',
|
||||
component: () => import('../views/ProductCreate.vue')
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
1424
src/views/ProductCreate.vue
Normal file
1424
src/views/ProductCreate.vue
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user