message.vue 3.1 KB

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