refactor(shop): 将商品价格相关文本统一修改为“商城价”

- 修改shopGoods、shopGoodsBrowse和shopGoodsSku模型中price字段注释
- 更新shopGoodsBrowse和shopGoodsSku页面表格中价格列标题
- 调整shopGoodsEdit组件中表单标签、输入框占位符和校验提示信息
- 同步修改shopGoodsSkuEdit组件中价格表单项的标签和占位符文本
- 保证所有相关文本表述一致,提升用户界面和代码的统一性
This commit is contained in:
2026-07-30 12:45:27 +08:00
parent eb26594f41
commit bf60ba1d04
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export interface ShopGoodsBrowse {
goodsName?: string;
/** 商品封面图(关联查询) */
goodsImage?: string;
/** 商品价格(关联查询) */
/** 商城价(关联查询) */
price?: string;
/** 市场价(关联查询) */
salePrice?: string;