|
|
@@ -145,6 +145,7 @@
|
|
|
<textarea
|
|
|
placeholder="请添加备注(150字以内)"
|
|
|
v-model="mark"
|
|
|
+ :maxlength="150"
|
|
|
></textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -226,13 +227,6 @@
|
|
|
<div>商品总价:</div>
|
|
|
<div class="money">¥{{ orderPrice.total_price }}</div>
|
|
|
</div>
|
|
|
- <div
|
|
|
- class="item acea-row row-between-wrapper"
|
|
|
- v-if="orderPrice.pay_postage > 0"
|
|
|
- >
|
|
|
- <div>运费:</div>
|
|
|
- <div class="money">+¥{{ orderPrice.pay_postage }}</div>
|
|
|
- </div>
|
|
|
<div
|
|
|
class="item acea-row row-between-wrapper"
|
|
|
v-if="orderPrice.coupon_price > 0"
|
|
|
@@ -247,6 +241,13 @@
|
|
|
<div>积分抵扣:</div>
|
|
|
<div class="money">-¥{{ orderPrice.deduction_price }}</div>
|
|
|
</div>
|
|
|
+ <div
|
|
|
+ class="item acea-row row-between-wrapper"
|
|
|
+ v-if="orderPrice.pay_postage > 0"
|
|
|
+ >
|
|
|
+ <div>运费:</div>
|
|
|
+ <div class="money">+¥{{ orderPrice.pay_postage }}</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div style="height:1.2rem"></div>
|