fix(store): 修复门店商品管理页多项显示与编辑问题

- 将商品状态Tab标签「出售中」修改为「已上架」,与后端定义一致
- 调整商品参数注释,更新status状态枚举说明
- 编辑弹窗新增会员价(dealerPrice)输入框,完善编辑表单数据绑定与提交
- 分类选择改为传递参数方式避免闭包旧值,解决需点击两次才生效的问题
- 更新商品列表加载逻辑,支持分类ID参数即时生效
This commit is contained in:
2026-07-06 11:30:51 +08:00
parent ac283148f7
commit 433afb8070
3 changed files with 54 additions and 8 deletions

View File

@@ -153,6 +153,6 @@ export interface ShopGoodsParam extends PageParam {
stock?: number;
keywords?: string;
recommend?: number;
// 0上架 1下架(以实际后端约定为准)
// 0上架 1待上架 2待审核 3审核不通过
status?: number;
}