|
|
@@ -70,11 +70,9 @@
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<view class="tui-title">跑腿费</view>
|
|
|
<view class="tui-input">
|
|
|
- <text :class="isFreeDelivery ? 'delivery-price-free' : 'delivery-price-normal'">¥{{ form.sendCost }}</text>
|
|
|
- <text v-if="isFreeDelivery" class="free-delivery-tag">¥0【免跑腿费】</text>
|
|
|
- <text v-if="showDeliveryPolicy" class="delivery-policy-link" @click="showDeliveryPolicyModal">
|
|
|
- <text class="iconfont iconchangjianwentixiangguanwenti2 policy-icon"></text>包配送政策
|
|
|
- </text>
|
|
|
+ <text :class="isFreeDelivery ? 'delivery-price-free' : 'delivery-price-normal'" v-if="Number(form.sendCost)>0">¥{{ form.sendCost }}</text>
|
|
|
+ <text v-if="isFreeDelivery" class="free-delivery-tag">¥0</text>
|
|
|
+ <text v-if="showDeliveryPolicy" class="delivery-policy-link" @click="showDeliveryPolicyModal">免费配送范围</text>
|
|
|
</view>
|
|
|
</tui-list-cell>
|
|
|
|
|
|
@@ -1056,7 +1054,7 @@ export default {
|
|
|
.delivery-policy-link {
|
|
|
color: rgb(201, 52, 52);
|
|
|
font-size: 32upx;
|
|
|
- margin-left:10upx;
|
|
|
+ margin-left:25upx;
|
|
|
font-weight:bold;
|
|
|
text-decoration: underline;
|
|
|
}
|