Files
MER-2.2_2601/mer_uniapp/pages/guide/index.vue
2026-03-08 20:07:52 +08:00

66 lines
1.4 KiB
Vue

<template>
<view>
<guide v-if="guidePages" :advData="advData"></guide>
</view>
</template>
<script>
import guide from './guide.vue'
import Cache from '@/utils/cache';
import {
getOpenAdvApi
} from '@/api/api.js'
export default {
components: {
guide
},
data() {
return {
guidePages: false,
advData: []
}
},
onShow() {
// #ifdef H5
if (this.$wechat.isWeixin()) {
this.$wechat.wechat();
}
// #endif
this.loadExecution()
},
methods: {
loadExecution() {
const tagDate = uni.getStorageSync('guideDate') || 0,
nowDate = new Date().getTime();
if ((nowDate - tagDate) <= uni.getStorageSync('intervalTime')) {
this.$util.navigateTo('/pages/index/index');
return
}
getOpenAdvApi().then(res => {
if (res.data.splashAdSwitch == 0 || res.data.adList.length == 0) {
this.$util.navigateTo('/pages/index/index');
} else if (res.data.splashAdSwitch && res.data.adList.length) {
this.advData = res.data
let intervalTime = parseFloat(res.data.splashAdShowInterval) * 60 * 60 * 1000 || 0;
uni.setStorageSync('intervalTime', intervalTime);
uni.setStorageSync('guideDate', new Date().getTime());
this.guidePages = true
}
}).catch(err => {
this.$util.navigateTo('/pages/index/index');
})
}
},
onHide() {
this.guidePages = false
}
}
</script>
<style>
page,
.main {
width: 100%;
height: 100%;
}
</style>