guide.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view class="pages">
  3. <view class="guide-img">
  4. <swiper class="swiper"
  5. :indicator-dots="swiper.indicatorDots"
  6. :indicator-color="swiper.indicatorColor"
  7. :indicator-active-color="swiper.indicatorActiveColor"
  8. :autoplay="swiper.autoplay"
  9. :interval="swiper.interval" :duration="swiper.duration">
  10. <swiper-item>
  11. <view class="adv-item"><image :src="$getimg +'guide01.png'" class="pic" mode="widthFix"></image></view>
  12. </swiper-item>
  13. <swiper-item>
  14. <view class="adv-item" @click="goIndex"><image :src="$getimg +'guide02.png'" class="pic" mode="widthFix"></image></view>
  15. </swiper-item>
  16. </swiper>
  17. <!-- <div id="universal-preloader">
  18. <div class="preloader">
  19. <span class="preloader-time"><i id="preloader-time-num">{{preloaderTime}}</i>秒后关闭</span>
  20. </div>
  21. </div> -->
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. preloaderTime:5,
  30. $getimg:this.$getimg,
  31. swiper: {
  32. indicatorDots: true,
  33. autoplay: true,
  34. interval: 9000,
  35. duration: 500,
  36. indicatorColor:"rgba(171, 234, 213, 1)",
  37. indicatorActiveColor:"rgba(54, 206, 149, 1)",
  38. },
  39. }
  40. },
  41. onShow() {
  42. // console.log('config',this.$getimg);
  43. },
  44. onLoad() {
  45. // console.log(this.config.version);
  46. },
  47. onReady() {
  48. // 从本地缓存中同步获取指定 key 对应的内容,用于判断是否是第一次打开应用
  49. const value = uni.getStorageSync('launchFlag');
  50. const version = uni.getStorageSync('version');
  51. if(!version){
  52. uni.setStorage({
  53. key: 'version',
  54. data: this.config.version
  55. });
  56. }
  57. if (value&&version==this.config.version) {
  58. // 如果已经有,直接去首页
  59. this.goIndex();
  60. } else {
  61. // 没有值,跳到引导页,并存储,下次打开就不会进去引导页
  62. uni.setStorage({
  63. key: 'launchFlag',
  64. data: true
  65. });
  66. // this.lxfEndtime();
  67. }
  68. },
  69. methods: {
  70. goIndex(){
  71. uni.setStorage({
  72. key: 'version',
  73. data: this.config.version
  74. });
  75. uni.redirectTo({
  76. url: '/pages/login/loginType',
  77. fail(err) {
  78. // console.log(err)
  79. }
  80. });
  81. },
  82. lxfEndtime(){
  83. let that = this;
  84. let $i;
  85. if(that.preloaderTime!=0){
  86. that.preloaderTime--;
  87. $i=setTimeout(function(){that.lxfEndtime()},1000);
  88. }else{
  89. clearTimeout($i);
  90. this.goIndex();
  91. }
  92. }
  93. }
  94. }
  95. </script>
  96. <style scoped>
  97. .guide-img{position: fixed;left: 0;right: 0;top: 0;bottom: 0;display: block;}
  98. .swiper{height: 100%;}
  99. .adv-item{height: 100%;}
  100. .guide-img .pic{width: 100%;/* max-height: 100%; */}
  101. #universal-preloader{position:fixed;top:0px;left:0px;width:100%;height:100%;opacity:1;background:rgba(0,0,0,0.1) !important;filter:Alpha(opacity=100);background:#000;z-index:1020;}
  102. #universal-preloader>.preloader{position: relative;width: 100%;height: 100%;}
  103. .universal-preloader-preloader{width: 100%;min-height: 100%;}
  104. .preloader-time{position: absolute;right: 24px;top: 24px;font-size: 24rpx;display: inline-block;background: #fff;padding: 3px 8px;border-radius: 10px;}
  105. #preloader-time-num{font-style: normal;margin-right: 5rpx;color: #57992c;}
  106. </style>