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

View File

@@ -45,10 +45,10 @@
@del="onDeleteItem"
/>
</a-form-item>
<a-form-item label="商品价格" name="price">
<a-form-item label="商城价" name="price">
<a-input
allow-clear
placeholder="请输入商品价格"
placeholder="请输入商城价"
v-model:value="form.price"
/>
</a-form-item>

View File

@@ -137,7 +137,7 @@
align: 'center'
},
{
title: '商品价格',
title: '商城价',
dataIndex: 'price',
key: 'price',
align: 'center'