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
@@ -72,10 +72,10 @@
v-model:value="form.unitName"
/>
</a-form-item>
<a-form-item label="商品价格" name="price">
<a-form-item label="商城价" name="price">
<a-space>
<a-input-number
:placeholder="`商品价格`"
:placeholder="`商城价`"
style="width: 240px"
:min="0.01"
v-model:value="form.price"
@@ -308,7 +308,7 @@
:precision="2"
:min="0"
style="width: 110px"
placeholder="商品价格"
placeholder="商城价"
/>
<a-input-number
v-model:value="batchSalePrice"
@@ -895,7 +895,7 @@ const columns = [
align: 'center'
},
{
title: '商品价格',
title: '商城价',
dataIndex: 'price',
key: 'price',
align: 'center'
@@ -1337,7 +1337,7 @@ const rules = reactive({
price: [
{
required: true,
message: '请填写商品价格',
message: '请填写商城价',
type: 'number',
trigger: 'blur'
}