|
|
@@ -55,7 +55,7 @@
|
|
|
<view class="module-com input-line-wrap">
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false" >
|
|
|
- <button v-if="ghsInfo.id != 8053" class="admin-button-com middle" :class="[form.sendType == 0 ? 'blue' : 'default']" style="width:190upx;" @click="changeSendType(0)">免费送货</button>
|
|
|
+ <button class="admin-button-com middle" :class="[form.sendType == 0 ? 'blue' : 'default']" style="width:190upx;" @click="changeSendType(0)">免费送货</button>
|
|
|
<button class="admin-button-com middle" :class="[form.sendType == 1 ? 'blue' : 'default']" style="width:190upx;" @click="changeSendType(1)">到店自取</button>
|
|
|
<button class="admin-button-com middle" :class="[form.sendType == 2 ? 'blue' : 'default']" style="width:150upx;" @click="changeSendType(2)">跑腿</button>
|
|
|
<button class="admin-button-com middle" :class="[form.sendType == 3 ? 'blue' : 'default']" style="width:150upx;" @click="changeSendType(3)">物流</button>
|
|
|
@@ -64,7 +64,12 @@
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
|
<view v-if="form.sendType == 0">
|
|
|
<block v-if="ghsInfo.shopId == 4804">
|
|
|
- <text style="color:red;width:100%;font-weight:bold;">仅市区满500元免费送货上门</text>
|
|
|
+ <text style="color:red;width:100%;font-weight:bold;">市区满500元免费送货上门,其它情况请选自取、跑腿或物流</text>
|
|
|
+ </block>
|
|
|
+ <block v-else-if="ghsInfo.shopId == 4608">
|
|
|
+ <view style="color:red;width:100%;font-weight:bold;">满500元,10公里内免费配送</view>
|
|
|
+ <view style="color:red;width:100%;font-weight:bold;">满1000元,20公里内免费配送</view>
|
|
|
+ <view style="color:#3385FF;width:100%;font-weight:bold;">请自行查询距离是否符合要求,符合要求再下单哦!</view>
|
|
|
</block>
|
|
|
<block v-else>
|
|
|
<text style="color: #3385FF;width:100%;">在本店配送范围的,免费送货上门</text>
|
|
|
@@ -229,10 +234,6 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
onLoad() {
|
|
|
- //杭州斗南鲜花批发部不需要显示免费配送
|
|
|
- if(Number(this.option.id) == 8053){
|
|
|
- this.form.sendType = 1
|
|
|
- }
|
|
|
this.getGhsData(this.option.id)
|
|
|
},
|
|
|
onShow() {
|