|
@@ -86,7 +86,7 @@
|
|
|
<image style="width: 650rpx;height: 650rpx;" :src="config.service_code" mode=""></image>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
- <u-popup v-if="couponlist>0" v-model="youhui" mode="center" border-radius="20" v-if="coupon == 0">
|
|
|
+ <u-popup v-if="couponlist.length>0 && coupon == 0" v-model="youhui" mode="center" border-radius="20" >
|
|
|
<view style="font-size: 0;">
|
|
|
<view class="back">
|
|
|
<scroll-view scroll-y style="height: 330rpx;" :show-scrollbar="false">
|
|
@@ -140,6 +140,7 @@
|
|
|
youhui: false,
|
|
|
couponlist: [],
|
|
|
coupon: 0,
|
|
|
+ pan:""
|
|
|
}
|
|
|
},
|
|
|
onLoad() {
|
|
@@ -169,7 +170,6 @@
|
|
|
toyouhui() {
|
|
|
if (uni.getStorageSync("token")) {
|
|
|
this.$u.post('/api/Member/receive_coupon').then(res => {
|
|
|
- console.log(res);
|
|
|
setTimeout(() => {
|
|
|
uni.reLaunch({
|
|
|
url: "/pages/mine/youhui"
|
|
@@ -212,8 +212,12 @@
|
|
|
this.time = setInterval(() => {
|
|
|
if (this.s == 0) {
|
|
|
this.showguanggao = false
|
|
|
- this.youhui = true
|
|
|
- // if (this.guanggaolist > 0) {
|
|
|
+ if(this.pan == 1){
|
|
|
+ this.youhui = false
|
|
|
+ }else{
|
|
|
+ this.youhui = true
|
|
|
+ }
|
|
|
+ // if (this.guanggaolist.length > 0) {
|
|
|
// this.youhui = true
|
|
|
// }
|
|
|
clearInterval(this.time)
|
|
@@ -345,6 +349,7 @@
|
|
|
closeguanggao() {
|
|
|
this.showguanggao = false
|
|
|
this.youhui = true
|
|
|
+ this.pan = 1
|
|
|
}
|
|
|
}
|
|
|
}
|