index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <view class="main">
  3. <guide v-if="guidePages" :advData="advData" :time="advData.time"></guide>
  4. </view>
  5. </template>
  6. <script>
  7. import guide from '@/components/guide/index.vue'
  8. import Cache from '@/utils/cache';
  9. import {
  10. getOpenAdv
  11. } from '@/api/api.js'
  12. export default {
  13. components: {
  14. guide
  15. },
  16. data() {
  17. return {
  18. guidePages: false,
  19. advData: []
  20. }
  21. },
  22. onShow() {
  23. this.loadExecution()
  24. },
  25. methods: {
  26. loadExecution() {
  27. const tagDate = uni.getStorageSync('guideDate') || '',
  28. nowDate = new Date().toLocaleDateString();
  29. if (tagDate === nowDate) {
  30. uni.switchTab({
  31. url: '/pages/index/index'
  32. });
  33. return
  34. }
  35. uni.switchTab({
  36. url: '/pages/index/index'
  37. });
  38. // getOpenAdv().then(res => {
  39. // if (res.data.status == 0 || res.data.value.length == 0) {
  40. // uni.switchTab({
  41. // url: '/pages/index/index'
  42. // });
  43. // } else if (res.data.status && (res.data.value.length || res.data.video_link)) {
  44. // this.advData = res.data
  45. // uni.setStorageSync('guideDate', new Date().toLocaleDateString());
  46. // this.guidePages = true
  47. // }
  48. // }).catch(err => {
  49. // uni.switchTab({
  50. // url: '/pages/index/index'
  51. // });
  52. // })
  53. }
  54. },
  55. onHide() {
  56. this.guidePages = false
  57. }
  58. }
  59. </script>
  60. <style>
  61. page,
  62. .main {
  63. width: 100%;
  64. height: 100%;
  65. }
  66. </style>