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.
124 lines
2.5 KiB
124 lines
2.5 KiB
<template>
|
|
<view class="main">
|
|
<guide v-if="guidePages" :advData="advData" :time="advData.time"></guide>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
mapGetters
|
|
} from "vuex";
|
|
import guide from '@/components/guide/index.vue'
|
|
import Cache from '@/utils/cache';
|
|
import {
|
|
getUserInfo
|
|
} from '@/api/user.js';
|
|
import {
|
|
getOpenAdv
|
|
} from '@/api/api.js'
|
|
export default {
|
|
components: {
|
|
guide
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
|
|
isLogin: 'isLogin'
|
|
})
|
|
},
|
|
data() {
|
|
return {
|
|
guidePages: false,
|
|
advData: []
|
|
}
|
|
},
|
|
onShow() {
|
|
this.loadExecution()
|
|
},
|
|
methods: {
|
|
loadExecution() {
|
|
const tagDate = uni.getStorageSync('guideDate') || '',
|
|
nowDate = new Date().toLocaleDateString();
|
|
if (tagDate === nowDate) {
|
|
if(this.isLogin){
|
|
getUserInfo().then(res => {
|
|
uni.setStorageSync('mark',res.data.renzheng.company_name)
|
|
if(res.data.renzheng&&res.data.renzheng.status==1){
|
|
uni.switchTab({
|
|
url: '/pages/index/index'
|
|
});
|
|
}else{
|
|
uni.navigateTo({
|
|
url:"/pages/users/shiming/index"
|
|
})
|
|
}
|
|
});
|
|
}else{
|
|
uni.redirectTo({
|
|
url:'/pages/users/wechat_login/index'
|
|
})
|
|
}
|
|
|
|
return
|
|
}
|
|
getOpenAdv().then(res => {
|
|
if (res.data.status == 0 || res.data.value.length == 0) {
|
|
if(this.isLogin){
|
|
getUserInfo().then(res1 => {
|
|
if(res1.data.renzheng&&res1.data.renzheng.status==1){
|
|
uni.switchTab({
|
|
url: '/pages/index/index'
|
|
});
|
|
}else{
|
|
uni.navigateTo({
|
|
url:"/pages/users/shiming/index"
|
|
})
|
|
}
|
|
});
|
|
}else{
|
|
uni.redirectTo({
|
|
url:'/pages/users/wechat_login/index'
|
|
})
|
|
}
|
|
|
|
} else if (res.data.status && (res.data.value.length || res.data.video_link)) {
|
|
this.advData = res.data
|
|
uni.setStorageSync('guideDate', new Date().toLocaleDateString());
|
|
this.guidePages = true
|
|
}
|
|
}).catch(err => {
|
|
if(this.isLogin){
|
|
getUserInfo().then(res1 => {
|
|
if(res1.data.renzheng&&res1.data.renzheng.status==1){
|
|
uni.switchTab({
|
|
url: '/pages/index/index'
|
|
});
|
|
}else{
|
|
uni.navigateTo({
|
|
url:"/pages/users/shiming/index"
|
|
})
|
|
}
|
|
});
|
|
}else{
|
|
uni.redirectTo({
|
|
url:'/pages/users/wechat_login/index'
|
|
})
|
|
}
|
|
|
|
})
|
|
},
|
|
|
|
},
|
|
onHide() {
|
|
this.guidePages = false
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page,
|
|
.main {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|