123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <view class="main">
- <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')) {
- uni.switchTab({
- url: '/pages/index/index'
- });
- return
- }
- getOpenAdvApi().then(res => {
- if (res.data.splashAdSwitch == 0 || res.data.adList.length == 0) {
- uni.switchTab({
- url: '/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 => {
- uni.switchTab({
- url: '/pages/index/index'
- });
- })
- }
- },
- onHide() {
- this.guidePages = false
- }
- }
- </script>
- <style>
- page,
- .main {
- width: 100%;
- height: 100%;
- }
- </style>
|