sub-health-pool.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!-- 亚健康汇 -->
  2. <template>
  3. <view class="wrap">
  4. <HeaderViewBar ref='HeaderViewBar' title='亚健康汇' titleColor='#090909' :opacity="scrollTop / 20" backgroundColor='#fff'
  5. style="position: fixed; top: 0; z-index: 999999999;" backImg='../../../static/return.png'>
  6. </HeaderViewBar>
  7. <view class="swiper-box">
  8. <swiper class="swiper" :circular="true" autoplay="true" interval="4000"
  9. duration="500">
  10. <swiper-item v-for="(item,index) in swiperList" :key="index">
  11. <view class="swiper-item">
  12. <image :src="item" class="banner-img" mode="aspectFill" />
  13. </view>
  14. </swiper-item>
  15. </swiper>
  16. </view>
  17. <view class="module">
  18. <view class="top-module-item" @tap="subHealthPoolDetails">
  19. <view class="top-module-item-name">疲乏无力</view>
  20. <image src="../../../static/img-4.png" class="top-module-item-img" mode="aspectFill"></image>
  21. </view>
  22. <view class="top-module-item" @tap="subHealthPoolDetails">
  23. <view class="top-module-item-name">肌肉/关节疼痛</view>
  24. <image src="../../../static/img-4.png" class="top-module-item-img" mode="aspectFill"></image>
  25. </view>
  26. <view class="top-module-item" @tap="subHealthPoolDetails">
  27. <view class="top-module-item-name">头昏头痛</view>
  28. <image src="../../../static/img-4.png" class="top-module-item-img" mode="aspectFill"></image>
  29. </view>
  30. <view class="top-module-item" @tap="subHealthPoolDetails">
  31. <view class="top-module-item-name">心悸胸闷</view>
  32. <image src="../../../static/img-4.png" class="top-module-item-img" mode="aspectFill"></image>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. import HeaderViewBar from '../../../components/header-view-bar/header-view-bar.vue';
  39. export default {
  40. components: {
  41. HeaderViewBar,
  42. },
  43. data() {
  44. return {
  45. headerHeight: 0,
  46. scrollTop: 0,
  47. //轮播
  48. swiperList: [
  49. '../../../static/banner-1.png',
  50. '../../../static/banner-1.png',
  51. '../../../static/banner-1.png'
  52. ],
  53. }
  54. },
  55. onShow() {
  56. setTimeout(() => {
  57. const {
  58. headerHeight,
  59. } = this.$refs['HeaderViewBar'].getHeaderStyle();
  60. this.headerHeight = headerHeight;
  61. }, 20);
  62. },
  63. methods: {
  64. //跳转详情
  65. subHealthPoolDetails(){
  66. uni.navigateTo({
  67. url:'../sub-health-pool-details/sub-health-pool-details'
  68. })
  69. }
  70. },
  71. onPageScroll(e) {
  72. this.scrollTop = e.scrollTop;
  73. }
  74. }
  75. </script>
  76. <style scoped lang="scss">
  77. @import "./sub-health-pool.css";
  78. </style>