xiaoxi.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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);" @click="totongzhi(4)">
  36. <view class="u-flex">
  37. <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
  38. <text class="font">积分通知</text>
  39. </view>
  40. <view class="u-flex">
  41. <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
  42. <u-icon name="arrow-right"></u-icon>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. };
  53. },
  54. methods:{
  55. totongzhi(){
  56. uni.navigateTo({
  57. url:'/pageA/tongzhi'
  58. })
  59. }
  60. }
  61. }
  62. </script>
  63. <style lang="scss">
  64. .font {
  65. font-size: 30rpx;
  66. font-family: PingFang SC;
  67. font-weight: 600;
  68. line-height: 24rpx;
  69. color: #323337;
  70. margin-left: 22rpx;
  71. }
  72. .item {
  73. height: 132rpx;
  74. position: relative;
  75. border-bottom: 1px solid #C7C7C7;
  76. }
  77. .box {
  78. width: 702rpx;
  79. // height: 498rpx;
  80. background: rgba(255, 255, 255, 1);
  81. border-radius: 14rpx;
  82. padding: 0 16rpx 0 26rpx;
  83. }
  84. .page {
  85. width: 750rpx;
  86. height: 100vh;
  87. background: rgba(246, 245, 250, 1);
  88. padding: 0 24rpx;
  89. border: 1rpx solid rgba(0, 0, 0, 0);
  90. }
  91. .top {
  92. font-size: 26rpx;
  93. font-family: PingFang SC;
  94. font-weight: 400;
  95. line-height: 24rpx;
  96. color: #808080;
  97. margin: 22rpx 0;
  98. }
  99. </style>