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.
71 lines
1.6 KiB
71 lines
1.6 KiB
<template>
|
|
<view class="popup-box" v-show="newPopupList && newPopupList.length">
|
|
<view class="" v-for="(p, index) in newPopupList" :key="index">
|
|
<view class="cu-modal" :class="{ show: showModal }" @tap="hideModal(p, index)" v-if="popupCurrent === index && p.image">
|
|
<view class="cu-dialog" style="width: 610rpx;background: none;">
|
|
<view class="img-box" @tap.stop="onPopup(p.path)"><image class="modal-img" :src="p.image" mode="aspectFit"></image></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
* 广告模态框。连续弹窗和只弹一次。
|
|
* @property {Object} newPopupList - vuex 初始化传过来的数据
|
|
*/
|
|
import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
|
|
let timer = null;
|
|
export default {
|
|
name: 'shoproNoticeModal',
|
|
components: {},
|
|
data() {
|
|
return {
|
|
popupCurrent: 0,
|
|
showModal: true
|
|
};
|
|
},
|
|
props: {},
|
|
computed: {
|
|
...mapGetters(['popupData', 'isLogin']),
|
|
newPopupList() {
|
|
if (this.popupData) {
|
|
return this.popupData.list;
|
|
}
|
|
}
|
|
},
|
|
beforeDestroy() {
|
|
clearTimeout(timer);
|
|
timer = null;
|
|
},
|
|
methods: {
|
|
hideModal(p, index) {
|
|
clearTimeout(timer);
|
|
this.showModal = false;
|
|
if (p.style == 1) {
|
|
this.$store.commit('delPopup', index);
|
|
}
|
|
timer = setTimeout(() => {
|
|
this.popupCurrent += 1;
|
|
this.showModal = true;
|
|
}, 500);
|
|
},
|
|
onPopup(path) {
|
|
this.$tools.routerTo(path);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.img-box {
|
|
position: relative;
|
|
width: 610rpx;
|
|
.modal-img {
|
|
width: 100%;
|
|
will-change: transform;
|
|
height: 830rpx;
|
|
}
|
|
}
|
|
</style>
|
|
|