message.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view class="list_item hflex acenter" @click="toDetail(item.id)">
  6. <image class="item_img" :src="item.img"></image>
  7. <view class="number" v-if="item.read_num > 0">{{item.read_num}}</view>
  8. <view class="item_right">
  9. <view class="hflex acenter jbetween">
  10. <view class="hflex acenter">
  11. <view class="name">{{item.name}}</view>
  12. <view class="text_style2" v-if="item.is_guanfang">官方</view>
  13. </view>
  14. <view class="text_style1">{{item.date}}</view>
  15. </view>
  16. <view class="text_style1">{{item.content}}</view>
  17. </view>
  18. </view>
  19. </block>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import $api from '@/static/js/api.js'
  25. var that = ''
  26. export default {
  27. data() {
  28. return {
  29. pageList: [
  30. {
  31. id: 1,
  32. img: '/static/images/mine/avatar1.jpg',
  33. name: '系统通知',
  34. date: '11-01',
  35. content: '【有奖调研】程序员求职意向度调查',
  36. read_num: 6,
  37. is_guanfang: 0
  38. },
  39. {
  40. id: 2,
  41. img: '/static/images/mine/avatar2.jpg',
  42. name: '系统通知',
  43. date: '11-01',
  44. content: '【有奖调研】程序员求职意向度调查',
  45. is_guanfang: 1
  46. }
  47. ]
  48. }
  49. },
  50. onLoad() {
  51. that = this
  52. },
  53. methods: {
  54. // 查看详情
  55. toDetail(id) {
  56. $api.jump('/page_mine/pages/message/detail?id=' + id)
  57. }
  58. },
  59. }
  60. </script>
  61. <style lang="scss" scoped>
  62. .content {
  63. padding: 0 30rpx;
  64. background-color: #fff;
  65. .list {
  66. width: 100%;
  67. .list_item {
  68. width: 100%;
  69. margin: 48rpx 0 36rpx;
  70. position: relative;
  71. .item_img {
  72. width: 88rpx;
  73. height: 88rpx;
  74. border-radius: 50%;
  75. }
  76. .number {
  77. position: absolute;
  78. top: 5rpx;
  79. left: 70rpx;
  80. width: 32rpx;
  81. height: 32rpx;
  82. background-color: #ff4b4b;
  83. border: 1rpx solid #fff;
  84. border-radius: 50%;
  85. font-size: 24rpx;
  86. color: #fff;
  87. text-align: center;
  88. line-height: 32rpx;
  89. }
  90. .item_right {
  91. width: calc(100% - 108rpx);
  92. padding-left: 20rpx;
  93. .name {
  94. font-size: 28rpx;
  95. color: #222;
  96. }
  97. .text_style1 {
  98. font-size: 24rpx;
  99. color: #999;
  100. }
  101. .text_style2 {
  102. margin-left: 10rpx;
  103. width: 56rpx;
  104. height: 28rpx;
  105. border-radius: 8rpx;
  106. border: 1rpx solid #506dff;
  107. font-size: 20rpx;
  108. color: #506dff;
  109. text-align: center;
  110. line-height: 28rpx;
  111. }
  112. }
  113. }
  114. }
  115. }
  116. </style>