message.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <view class="message">
  3. <view class="top custom_box" style="background: linear-gradient(180deg, rgb(254,245,246), rgb(245,245,245)); color: black;" >
  4. <!-- #ifdef MP || APP-PLUS -->
  5. <view class="sys-head">
  6. <view class="sys-bar" :style="{ height: sysHeight }"></view>
  7. <!-- #ifdef MP -->
  8. <view class="sys-title">消息</view>
  9. <!-- #endif -->
  10. </view>
  11. <!-- #endif -->
  12. </view>
  13. <view class="header-group bord" :style="{ 'margin-top': sysHeightTop}">
  14. <view class="tabs">
  15. <u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @change="changeNav" lineColor="#B22338" :current="tabIndex"
  16. :inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
  17. keyName="title"></u-tabs>
  18. </view>
  19. </view>
  20. <view :style="{ height: height }" >
  21. <swiper :style="{ height: height }" :current="tabIndex" @change="swiperChange">
  22. <swiper-item v-for="(tab,index) in navigationList" :key="index">
  23. <view>
  24. <mescroll-item ref="MescrollItem" :i="index" :index="tabIndex" :tabs="navigationList" :height="height">
  25. </mescroll-item>
  26. </view>
  27. </swiper-item>
  28. </swiper>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  34. let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
  35. import {
  36. mapGetters
  37. } from "vuex";
  38. import recommend from '@/components/recommend';
  39. import productWindow from '@/components/productWindow';
  40. import pageFooter from '@/components/pageFooter/index.vue'
  41. import colors from "@/mixins/color";
  42. import MescrollItem from "./module/mescrollUni-item.vue";
  43. export default {
  44. components: {
  45. MescrollItem,
  46. pageFooter,
  47. recommend,
  48. productWindow,
  49. },
  50. mixins: [colors],
  51. data () {
  52. return {
  53. sysHeight: sysHeight,
  54. sysHeightTop: sysHeightTop,
  55. height:'550px',
  56. tabIndex:0,
  57. navigationList: [{
  58. title: '个人消息',
  59. id: 'normal-msg'
  60. }, {
  61. title: '系统公告',
  62. id: 'sys-msg'
  63. }],
  64. };
  65. },
  66. computed: mapGetters(['isLogin']),
  67. onLoad (options) {
  68. },
  69. onShow () {
  70. let sysInfo = uni.getSystemInfoSync()
  71. this.height= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (220) +'px';
  72. console.log(this.height)
  73. },
  74. created () {
  75. },
  76. methods: {
  77. swiperChange(e) {
  78. this.tabIndex = e.detail.current
  79. },
  80. changeNav (e) {
  81. this.tabIndex = e.index
  82. },
  83. },
  84. }
  85. </script>
  86. <style scoped lang="scss">
  87. .message {
  88. display: flex;
  89. flex-direction: column;
  90. }
  91. .sys-head {
  92. position: relative;
  93. width: 100%;
  94. // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
  95. .bg {
  96. position: absolute;
  97. left: 0;
  98. top: 0;
  99. width: 100%;
  100. height: 100%;
  101. background: var(--view-theme);
  102. background-size: 100% auto;
  103. background-position: left bottom;
  104. }
  105. .sys-title {
  106. font-family: STYuanti-SC-Regular, STYuanti-SC;
  107. z-index: 10;
  108. position: relative;
  109. height: 43px;
  110. text-align: left;
  111. line-height: 43px;
  112. font-size: 36rpx;
  113. color: rgba(17, 17, 17, 1);
  114. /*font-weight: bolder;*/
  115. font-weight: 400;
  116. padding-left: 36rpx;
  117. color: #333333;
  118. }
  119. }
  120. </style>