guide.vue 4.0 KB

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