You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
|
|
<template>
|
|
<uni-popup ref="uniPopup" :maskClick="false">
|
|
<view class="wrap center column">
|
|
<image class="pic" src="/static/icon/ad-coupon.png" @click="navTo('/pages/coupon/receiveCoupon', {login: true})"></image>
|
|
<text class="mix-icon icon-close" @click="close"></text>
|
|
</view>
|
|
</uni-popup>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
mounted() {
|
|
this.init();
|
|
},
|
|
methods: {
|
|
init(){
|
|
return;
|
|
const preShowTime = uni.getStorageSync('homeAdvertModalShowTime');
|
|
if(!this.$util.isLogin({nav: false}) && (!preShowTime || preShowTime < + new Date - 10*60*1000)){
|
|
this.open();
|
|
}
|
|
},
|
|
open(){
|
|
uni.hideTabBar();
|
|
this.$refs.uniPopup.open();
|
|
|
|
uni.setStorageSync('homeAdvertModalShowTime', + new Date());
|
|
},
|
|
close(){
|
|
uni.showTabBar();
|
|
this.$refs.uniPopup.close();
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.pic{
|
|
width: 530rpx;
|
|
height: 600rpx;
|
|
}
|
|
.icon-close{
|
|
padding: 20rpx 40rpx;
|
|
margin-top: 20rpx;
|
|
font-size: 48rpx;
|
|
color: #fff;
|
|
}
|
|
</style>
|