修改添加商品商品简介、修改装修主页商品价格显示
parent
0f0d2d3864
commit
385c01ef17
|
|
@ -67,14 +67,14 @@
|
||||||
class="text-16px"
|
class="text-16px"
|
||||||
:style="{ color: property.fields.price.color }"
|
:style="{ color: property.fields.price.color }"
|
||||||
>
|
>
|
||||||
¥{{ spu.price }}
|
¥{{(spu.price / 100.0).toFixed(2)}}
|
||||||
</span>
|
</span>
|
||||||
<!-- 市场价 -->
|
<!-- 市场价 -->
|
||||||
<span
|
<span
|
||||||
v-if="property.fields.marketPrice.show && spu.marketPrice"
|
v-if="property.fields.marketPrice.show && spu.marketPrice"
|
||||||
class="ml-4px text-10px line-through"
|
class="ml-4px text-10px line-through"
|
||||||
:style="{ color: property.fields.marketPrice.color }"
|
:style="{ color: property.fields.marketPrice.color }"
|
||||||
>¥{{ spu.marketPrice }}</span
|
>¥{{ (spu.marketPrice / 100.0).toFixed(2)}}</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-12px">
|
<div class="text-12px">
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
:show-word-limit="true"
|
:show-word-limit="true"
|
||||||
class="w-80!"
|
class="w-80!"
|
||||||
maxlength="128"
|
maxlength="128"
|
||||||
placeholder="请输入商品名称"
|
placeholder="请输入商品简介"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue