index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <!-- #ifdef H5 -->
  3. <view class="message_user">
  4. <view class="gonggao">
  5. <view>防骗手册,为您保驾护航</view>
  6. <text class="iconfont icon-jinru"></text>
  7. </view>
  8. <view class="message_user_aview" v-for="(item,index) in 5" :key="index" @click="goMsgView">
  9. <view class="message_user_a">
  10. <view class="message_user_info">
  11. <!-- 头像 -->
  12. <view class="user_head">
  13. </view>
  14. <view class="user_info">
  15. <!-- 姓名 -->
  16. <view class="user_name">张锋</view>
  17. <!-- 聊天信息最后一条 -->
  18. <view class="user_goods">商品很nice</view>
  19. <!-- 聊天信息最后一条的时间 -->
  20. <view class="user_time">2023-10-21 12:20:21</view>
  21. </view>
  22. <!-- 商品图片 -->
  23. <view class="goods_img">
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- #endif -->
  30. <!-- #ifndef H5 -->
  31. <web-view :src="href+'/pages/message/index'"></web-view>
  32. <!-- #endif -->
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. href: this.$H5Href
  39. }
  40. },
  41. // #ifdef H5
  42. methods: {
  43. goMsgView() {
  44. this.$navToPage({
  45. url: '/pages/message/msgView'
  46. })
  47. }
  48. },
  49. // #endif
  50. // #ifndef H5
  51. // #endif
  52. }
  53. </script>
  54. <style lang="scss" scoped>
  55. .message_user {
  56. width: 100%;
  57. box-sizing: border-box;
  58. padding-top: 80rpx;
  59. .gonggao {
  60. position: absolute;
  61. width: 100%;
  62. height: 80rpx;
  63. background: #fff2d4;
  64. top: 0;
  65. z-index: 999;
  66. left: 0;
  67. right: 0;
  68. box-sizing: border-box;
  69. padding: 0 20rpx;
  70. display: flex;
  71. align-items: center;
  72. justify-content: space-between;
  73. font-size: 24rpx;
  74. color: rgb(230, 138, 19);
  75. view {
  76. color: rgb(230, 138, 19);
  77. }
  78. }
  79. .message_user_aview {
  80. width: 100%;
  81. height: auto;
  82. box-sizing: border-box;
  83. padding: 0 20rpx;
  84. background: #fff;
  85. .message_user_a {
  86. width: 100%;
  87. height: auto;
  88. box-sizing: border-box;
  89. padding: 20rpx 0;
  90. }
  91. &:not(:last-child) {
  92. .message_user_a {
  93. border-bottom: 1rpx solid #ddd;
  94. }
  95. }
  96. .message_user_info {
  97. width: 100%;
  98. display: flex;
  99. justify-content: space-between;
  100. align-items: flex-start;
  101. .user_head {
  102. width: 80rpx;
  103. height: 80rpx;
  104. }
  105. .user_info {
  106. width: 500rpx;
  107. min-height: 100rpx;
  108. box-sizing: border-box;
  109. padding: 0 16rpx;
  110. .user_name {
  111. width: 100%;
  112. font-size: 28rpx;
  113. font-weight: bold;
  114. overflow: hidden;
  115. /*超出部分隐藏*/
  116. white-space: nowrap;
  117. /*禁止换行*/
  118. text-overflow: ellipsis;
  119. /*省略号*/
  120. }
  121. .user_goods {
  122. width: 100%;
  123. font-size: 24rpx;
  124. overflow: hidden;
  125. /*超出部分隐藏*/
  126. white-space: nowrap;
  127. /*禁止换行*/
  128. text-overflow: ellipsis;
  129. /*省略号*/
  130. margin: 10rpx 0;
  131. }
  132. .user_time {
  133. width: 100%;
  134. font-size: 20rpx;
  135. color: #aaa;
  136. overflow: hidden;
  137. /*超出部分隐藏*/
  138. white-space: nowrap;
  139. /*禁止换行*/
  140. text-overflow: ellipsis;
  141. /*省略号*/
  142. }
  143. }
  144. .goods_img {
  145. width: 100rpx;
  146. height: 100rpx;
  147. }
  148. }
  149. }
  150. }
  151. </style>