Browse Source

修改问题

master
396316021 1 year ago
parent
commit
917ae930b2
  1. 11
      pages/CardDetail/index.vue
  2. 20
      pages/OrderPage/index.vue
  3. 5
      pages/UserCoupons/index.vue

11
pages/CardDetail/index.vue

@ -94,7 +94,8 @@
</view>
<view class="foot-menu-title">
<text @click="readInfo = !readInfo">我已阅读并同意</text>
<text class="foot-menu-url" @click="showAgreement">付费权益卡协议</text>
<text class="foot-menu-url" v-if="cardDetail.order_type === 1" @click="showAgreement">付费权益卡协议</text>
<text class="foot-menu-url" v-else @click="showAgreement">上门洗护次卡协议</text>
</view>
</view>
<view>
@ -321,8 +322,14 @@ export default {
this.petChecked.splice(index, 1);
},
showAgreement() {
let type;
if(this.type == 1){
type = 'PayCardPolicy';
}else{
type = 'bathe_card';
}
getConfig('PayCardPolicy').then(res => {
this.PayCardPolicy = res.data.PayCardPolicy;
this.PayCardPolicy = res.data[type];
})
this.$refs.agreement.open();
},

20
pages/OrderPage/index.vue

@ -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();
},

5
pages/UserCoupons/index.vue

@ -150,10 +150,12 @@
status:'loadmore',
navToUrl:'',
couponsContent:'',
order_type:1,
}
},
onLoad(option) {
this.type = option.type||'lists'
this.order_type = option.order_type|| 1
console.log(this.type)
this.navToUrl = option.url || ''
},
@ -192,7 +194,8 @@
userCoupons({
page:page,
limit:10,
is_buy:this.couponType
is_buy:this.couponType,
order_type:this.order_type,
}).then((res) => {
let couponsList = res.data.map((row) => {
return {

Loading…
Cancel
Save