|
|
|
@ -90,7 +90,7 @@
|
|
|
|
|
</view> |
|
|
|
|
<view class="item-content row col"> |
|
|
|
|
<view class="item-content-text" v-if="coupons.length === 0"> |
|
|
|
|
<u-text text="请选择优惠券" size="28" color="#636363" @click="navTo('/pages/UserCoupons/index?type=select')"></u-text> |
|
|
|
|
<u-text text="请选择优惠券" size="28" color="#636363" @click="navTo('/pages/UserCoupons/index?type=select&order_type='+type)"></u-text> |
|
|
|
|
</view> |
|
|
|
|
<view class="item-content-text" v-else> |
|
|
|
|
<view class="item-content-tag" style="margin-bottom:10rpx;" v-for="(item,index) in coupons"> |
|
|
|
@ -218,7 +218,7 @@
|
|
|
|
|
></u-checkbox> |
|
|
|
|
</view> |
|
|
|
|
<view class="foot-menu-title"> |
|
|
|
|
<text @click="readInfo = !readInfo">阅读并同意</text><text class="foot-menu-url" @click="showAgreement">《上门喂养协议》</text> |
|
|
|
|
<text @click="readInfo = !readInfo">阅读并同意</text><text class="foot-menu-url" @click="showAgreement">《上门{{ type==1?'喂养':'洗护' }}协议》</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -271,13 +271,15 @@
|
|
|
|
|
|
|
|
|
|
<!-- <u-text text="协议内容" size="38" color="#191919"></u-text>--> |
|
|
|
|
<view class="" style="position: relative;display:inline-block;"> |
|
|
|
|
<view style="color:#191919;font-size:38rpx;display:inline-block;position: relative;z-index: 2;">喂养协议</view> |
|
|
|
|
<view v-if="type===1" style="color:#191919;font-size:38rpx;display:inline-block;position: relative;z-index: 2;">喂养协议</view> |
|
|
|
|
<view v-else style="color:#191919;font-size:38rpx;display:inline-block;position: relative;z-index: 2;">洗护协议</view> |
|
|
|
|
<view class="background" style="width:100%;height:50%;position: absolute;bottom:0;left:0;background-color:rgba(227, 191, 119, 0.6);display:inline-block;z-index:1;"></view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view style="padding:30rpx;max-height:700rpx;overflow: auto;"> |
|
|
|
|
<view style="height:200rpx;display: flex;align-items: center;">是否同意 <text @click="showAgreement" style="color:#4DC3B8;">《上门喂养协议》</text></view> |
|
|
|
|
<view v-if="type == 1" style="height:200rpx;display: flex;align-items: center;">是否同意 <text @click="showAgreement" style="color:#4DC3B8;">《上门喂养协议》</text></view> |
|
|
|
|
<view v-else style="height:200rpx;display: flex;align-items: center;">是否同意 <text @click="showAgreement" style="color:#4DC3B8;">《上门洗护协议》</text></view> |
|
|
|
|
<MzButton title="确认" @click="agreeHandle" button-color="#4DC3B8" font-color="#fff"></MzButton> |
|
|
|
|
</view> |
|
|
|
|
</uv-popup> |
|
|
|
@ -850,8 +852,14 @@
|
|
|
|
|
this.$refs.doDatePopup.open(); |
|
|
|
|
}, |
|
|
|
|
showAgreement(){ |
|
|
|
|
getConfig('FeedPolicy').then(res => { |
|
|
|
|
this.feedPolicy = res.data.FeedPolicy; |
|
|
|
|
let type; |
|
|
|
|
if(this.type == 1){ |
|
|
|
|
type = 'FeedPolicy'; |
|
|
|
|
}else{ |
|
|
|
|
type = 'bathe_info'; |
|
|
|
|
} |
|
|
|
|
getConfig(type).then(res => { |
|
|
|
|
this.feedPolicy = res.data[type]; |
|
|
|
|
}) |
|
|
|
|
this.$refs.agreement.open(); |
|
|
|
|
}, |
|
|
|
|