|
@@ -86,33 +86,23 @@
|
|
<image style="width: 650rpx;height: 650rpx;" :src="config.service_code" mode=""></image>
|
|
<image style="width: 650rpx;height: 650rpx;" :src="config.service_code" mode=""></image>
|
|
</view>
|
|
</view>
|
|
</u-popup>
|
|
</u-popup>
|
|
- <u-popup v-model="youhui" mode="center" border-radius="20">
|
|
|
|
|
|
+ <u-popup v-model="youhui" mode="center" border-radius="20" v-if="coupon == 0">
|
|
<view style="font-size: 0;">
|
|
<view style="font-size: 0;">
|
|
<view class="back">
|
|
<view class="back">
|
|
- <view class="back-item u-flex">
|
|
|
|
- <view class="left">
|
|
|
|
- <text class="top">¥</text>
|
|
|
|
- <text class="bottom">1000</text>
|
|
|
|
- </view>
|
|
|
|
- <view class="right">
|
|
|
|
- <text class="top">满100万可用</text>
|
|
|
|
- <view class="bottom">
|
|
|
|
- 满减券-仅限购房使用
|
|
|
|
|
|
+ <scroll-view scroll-y style="height: 330rpx;" :show-scrollbar="false">
|
|
|
|
+ <view class="back-item u-flex " v-for="(item,index) in couponlist " :key="index">
|
|
|
|
+ <view class="left">
|
|
|
|
+ <text class="top">¥</text>
|
|
|
|
+ <text class="bottom">{{item.amount.slice(0,-3)}}</text>
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="back-item u-flex">
|
|
|
|
- <view class="left">
|
|
|
|
- <text class="top">¥</text>
|
|
|
|
- <text class="bottom">1000</text>
|
|
|
|
- </view>
|
|
|
|
- <view class="right">
|
|
|
|
- <text class="top">满100万可用</text>
|
|
|
|
- <view class="bottom">
|
|
|
|
- 满减券-仅限购房使用
|
|
|
|
|
|
+ <view class="right">
|
|
|
|
+ <text class="top">满{{item.low_amount.slice(0,-3)}}万可用</text>
|
|
|
|
+ <view class="bottom">
|
|
|
|
+ {{item.title}}
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
|
|
+ </scroll-view>
|
|
<view class="u-flex " style="justify-content: center;">
|
|
<view class="u-flex " style="justify-content: center;">
|
|
<view class="btn" @click="toyouhui">
|
|
<view class="btn" @click="toyouhui">
|
|
开心收下
|
|
开心收下
|
|
@@ -121,7 +111,8 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="u-flex" style="justify-content: center;">
|
|
<view class="u-flex" style="justify-content: center;">
|
|
- <image @click="this.youhui = false" src="../../static/images/close.png" style="width: 46rpx;height: 46rpx;margin-top: 46rpx;" mode="">
|
|
|
|
|
|
+ <image @click="this.youhui = false" src="../../static/images/close.png"
|
|
|
|
+ style="width: 46rpx;height: 46rpx;margin-top: 46rpx;" mode="">
|
|
</image>
|
|
</image>
|
|
</view>
|
|
</view>
|
|
</u-popup>
|
|
</u-popup>
|
|
@@ -146,7 +137,9 @@
|
|
popularity: 0,
|
|
popularity: 0,
|
|
dijialist: [],
|
|
dijialist: [],
|
|
tuijianlist: [],
|
|
tuijianlist: [],
|
|
- youhui: false
|
|
|
|
|
|
+ youhui: false,
|
|
|
|
+ couponlist: [],
|
|
|
|
+ coupon: 0,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad() {
|
|
onLoad() {
|
|
@@ -154,18 +147,48 @@
|
|
this.gettabs()
|
|
this.gettabs()
|
|
this.getguanggao()
|
|
this.getguanggao()
|
|
this.getlist()
|
|
this.getlist()
|
|
|
|
+ this.coupon_list()
|
|
|
|
+
|
|
},
|
|
},
|
|
onShow() {
|
|
onShow() {
|
|
this.getpopularity()
|
|
this.getpopularity()
|
|
|
|
+ if (uni.getStorageSync("token")) {
|
|
|
|
+ this.member_info()
|
|
|
|
+ }
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
...mapGetters(['config']),
|
|
...mapState(['city'])
|
|
...mapState(['city'])
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- toyouhui(){
|
|
|
|
- uni.reLaunch({
|
|
|
|
- url:"../mine/youhui"
|
|
|
|
|
|
+ member_info() {
|
|
|
|
+ this.$u.post('/api/Member/member_info').then(res => {
|
|
|
|
+ this.coupon = res.data.is_receive_coupon
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ toyouhui() {
|
|
|
|
+ if (uni.getStorageSync("token")) {
|
|
|
|
+ this.$u.post('/api/Member/receive_coupon').then(res => {
|
|
|
|
+ console.log(res);
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ uni.reLaunch({
|
|
|
|
+ url: "/pages/mine/youhui"
|
|
|
|
+ })
|
|
|
|
+ }, 800)
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ this.$u.toast("请先登录")
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ uni.reLaunch({
|
|
|
|
+ url: "/pages/mine/mine"
|
|
|
|
+ })
|
|
|
|
+ }, 800)
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ coupon_list() {
|
|
|
|
+ this.$u.post('/api/Index/coupon_list').then(res => {
|
|
|
|
+ this.couponlist = res.data
|
|
})
|
|
})
|
|
},
|
|
},
|
|
getlist() {
|
|
getlist() {
|
|
@@ -190,6 +213,9 @@
|
|
if (this.s == 0) {
|
|
if (this.s == 0) {
|
|
this.showguanggao = false
|
|
this.showguanggao = false
|
|
this.youhui = true
|
|
this.youhui = true
|
|
|
|
+ // if (this.guanggaolist > 0) {
|
|
|
|
+ // this.youhui = true
|
|
|
|
+ // }
|
|
clearInterval(this.time)
|
|
clearInterval(this.time)
|
|
} else {
|
|
} else {
|
|
this.s--
|
|
this.s--
|
|
@@ -199,6 +225,9 @@
|
|
getguanggao() {
|
|
getguanggao() {
|
|
this.$u.post('/api/Index/adv_list').then(res => {
|
|
this.$u.post('/api/Index/adv_list').then(res => {
|
|
this.guanggaolist = res.data
|
|
this.guanggaolist = res.data
|
|
|
|
+ if (this.guanggaolist == 0) {
|
|
|
|
+ this.youhui = true
|
|
|
|
+ }
|
|
this.showguanggao = true
|
|
this.showguanggao = true
|
|
this.daojishi()
|
|
this.daojishi()
|
|
})
|
|
})
|
|
@@ -325,7 +354,6 @@
|
|
page {
|
|
page {
|
|
background-color: #F6F6F6;
|
|
background-color: #F6F6F6;
|
|
}
|
|
}
|
|
-
|
|
|
|
.btn {
|
|
.btn {
|
|
margin-top: 44rpx;
|
|
margin-top: 44rpx;
|
|
width: 266rpx;
|
|
width: 266rpx;
|
|
@@ -350,32 +378,33 @@
|
|
}
|
|
}
|
|
|
|
|
|
.back-item {
|
|
.back-item {
|
|
- width: 498rpx;
|
|
|
|
|
|
+ // width: 498rpx;
|
|
height: 144rpx;
|
|
height: 144rpx;
|
|
margin-top: 24rpx;
|
|
margin-top: 24rpx;
|
|
background: url(../../static/images/beijing.png) no-repeat;
|
|
background: url(../../static/images/beijing.png) no-repeat;
|
|
- background-size: cover;
|
|
|
|
|
|
+ background-size: 100% 100%;
|
|
padding: 28rpx 40rpx 28rpx 36rpx;
|
|
padding: 28rpx 40rpx 28rpx 36rpx;
|
|
|
|
|
|
.left {
|
|
.left {
|
|
font-family: JDZhengHT-Regular, JDZhengHT;
|
|
font-family: JDZhengHT-Regular, JDZhengHT;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
color: #FFFFFF;
|
|
|
|
+ width: 168rpx;
|
|
|
|
|
|
.top {
|
|
.top {
|
|
font-size: 24rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
}
|
|
|
|
|
|
.bottom {
|
|
.bottom {
|
|
- font-size: 52rpx;
|
|
|
|
|
|
+ font-size: 40rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.right {
|
|
.right {
|
|
- margin-left: 80rpx;
|
|
|
|
|
|
+ margin-left: 40rpx;
|
|
|
|
|
|
.top {
|
|
.top {
|
|
- font-size: 34rpx;
|
|
|
|
|
|
+ font-size: 28rpx;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
color: #FFFFFF;
|
|
@@ -566,7 +595,7 @@
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|
|
<style scoped>
|
|
<style scoped>
|
|
- ::v-deep .u-mode-center-box{
|
|
|
|
|
|
+ ::v-deep .u-mode-center-box {
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|