This commit is contained in:
parent
9f71108ece
commit
bd06f19214
|
@ -17,7 +17,7 @@
|
||||||
<view class="c-body-text">
|
<view class="c-body-text">
|
||||||
<view class="price">{{info.subsidy_amount}}元</view>
|
<view class="price">{{info.subsidy_amount}}元</view>
|
||||||
<view>
|
<view>
|
||||||
<text v-if="info.subsidy_status" class="price">{{info.subsidy_status_name}}</text>
|
<text v-if="info.subsidy_status==2" class="price">{{info.subsidy_status_name}}</text>
|
||||||
<text v-else>{{info.subsidy_status_name}}</text>
|
<text v-else>{{info.subsidy_status_name}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -98,10 +98,10 @@
|
||||||
<text class="sub_title">配送方式:</text>
|
<text class="sub_title">配送方式:</text>
|
||||||
<view class="flex">
|
<view class="flex">
|
||||||
<checkbox-group name="" @change="checkboxChange">
|
<checkbox-group name="" @change="checkboxChange">
|
||||||
<checkbox disabled='true' :checked="isZiti" :value="check.ziti" /><text
|
<checkbox disabled :checked="isZiti" :value="check.ziti" /><text
|
||||||
class="text ziti">到店自提(加入供应链)</text>
|
class="text ziti">到店自提</text>
|
||||||
<checkbox disabled='true' :checked="isKuaidi" :value="check.kuaidi" /><text
|
<checkbox :checked="isKuaidi" :value="check.kuaidi" /><text
|
||||||
class="text">快递配送</text>
|
class="text">商家配送</text>
|
||||||
</checkbox-group>
|
</checkbox-group>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -258,7 +258,7 @@
|
||||||
},
|
},
|
||||||
isZiti: false,
|
isZiti: false,
|
||||||
isKuaidi: false,
|
isKuaidi: false,
|
||||||
delivery_way: [1, 2],
|
delivery_way: [1],
|
||||||
takeName: '',
|
takeName: '',
|
||||||
takePhone: '',
|
takePhone: '',
|
||||||
servicePhone: '',
|
servicePhone: '',
|
||||||
|
@ -318,7 +318,6 @@
|
||||||
this.getMerchantInfo(e.mer_id)
|
this.getMerchantInfo(e.mer_id)
|
||||||
|
|
||||||
this.isZiti = true
|
this.isZiti = true
|
||||||
this.isKuaidi = true
|
|
||||||
},
|
},
|
||||||
onShow() {},
|
onShow() {},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -423,7 +422,7 @@
|
||||||
mer_avatar: this.images[1].img,
|
mer_avatar: this.images[1].img,
|
||||||
mini_banner: this.images[2].img,
|
mini_banner: this.images[2].img,
|
||||||
mer_certificate: this.images[3].img,
|
mer_certificate: this.images[3].img,
|
||||||
delivery_way: [1, 2],
|
delivery_way: this.delivery_way,
|
||||||
mer_take_name: this.takeName,
|
mer_take_name: this.takeName,
|
||||||
mer_take_phone: this.takePhone,
|
mer_take_phone: this.takePhone,
|
||||||
mer_take_address: this.detailSite,
|
mer_take_address: this.detailSite,
|
||||||
|
|
Loading…
Reference in New Issue