xiaoxi.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <view class="page">
  3. <view class="top">消息通知</view>
  4. <view class="box">
  5. <view class="item u-flex u-row-between" @click="totongzhi(1,'订单转换通知')">
  6. <view class="u-flex">
  7. <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
  8. <text class="font">订单转换通知</text>
  9. </view>
  10. <view class="u-flex">
  11. <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
  12. <u-icon name="arrow-right"></u-icon>
  13. </view>
  14. </view>
  15. <view class="item u-flex u-row-between" @click="totongzhi(2,'直播预告通知')">
  16. <view class="u-flex">
  17. <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
  18. <text class="font">直播预告通知</text>
  19. </view>
  20. <view class="u-flex">
  21. <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
  22. <u-icon name="arrow-right"></u-icon>
  23. </view>
  24. </view>
  25. <view class="item u-flex u-row-between" @click="totongzhi(3,'等级通知')">
  26. <view class="u-flex">
  27. <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
  28. <text class="font">等级通知</text>
  29. </view>
  30. <view class="u-flex">
  31. <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
  32. <u-icon name="arrow-right"></u-icon>
  33. </view>
  34. </view>
  35. <view class="item u-flex u-row-between" style="border: 1rpx solid rgba(0, 0, 0, 0);"
  36. @click="totongzhi(4,'积分通知')">
  37. <view class="u-flex">
  38. <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
  39. <text class="font">积分通知</text>
  40. </view>
  41. <view class="u-flex">
  42. <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
  43. <u-icon name="arrow-right"></u-icon>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. };
  54. },
  55. methods: {
  56. totongzhi(type,title) {
  57. uni.navigateTo({
  58. url: '/pageA/tongzhi?type='+type+'&title='+title
  59. })
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="scss">
  65. .font {
  66. font-size: 30rpx;
  67. font-family: PingFang SC;
  68. font-weight: 600;
  69. line-height: 24rpx;
  70. color: #323337;
  71. margin-left: 22rpx;
  72. }
  73. .item {
  74. height: 132rpx;
  75. position: relative;
  76. border-bottom: 1px solid #C7C7C7;
  77. }
  78. .box {
  79. width: 702rpx;
  80. // height: 498rpx;
  81. background: rgba(255, 255, 255, 1);
  82. border-radius: 14rpx;
  83. padding: 0 16rpx 0 26rpx;
  84. }
  85. .page {
  86. width: 750rpx;
  87. height: 100vh;
  88. background: rgba(246, 245, 250, 1);
  89. padding: 0 24rpx;
  90. border: 1rpx solid rgba(0, 0, 0, 0);
  91. }
  92. .top {
  93. font-size: 26rpx;
  94. font-family: PingFang SC;
  95. font-weight: 400;
  96. line-height: 24rpx;
  97. color: #808080;
  98. margin: 22rpx 0;
  99. }
  100. </style>