feat(product): 新增商品创建页面

- 添加商品创建表单,支持商品基本信息录入
- 实现多图片上传功能,支持主图和SKU图片上传
- 添加SKU配置模块,支持多个SKU的添加和管理
- 实现销售地区选择功能,支持多地区价格设置
- 添加物流信息配置,包括重量和尺寸设置
- 实现批量编辑功能,支持批量设置价格和库存
- 添加表单验证和提交逻辑,确保数据完整性
- 集成API接口,实现商品创建功能
- 添加页面路由配置,支持从商品管理页面跳转
This commit is contained in:
2025-12-22 11:37:35 +08:00
parent 3e1d77988d
commit ed745ee6a5
3 changed files with 1559 additions and 0 deletions

View File

@@ -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

File diff suppressed because it is too large Load Diff