chat.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <view class="container">
  3. <view class="search-box">
  4. <u-search
  5. v-model="searchForm.keyword"
  6. :clearabled="true"
  7. bg-color="#E5E5E5"
  8. :input-style="searchInputStyle"
  9. placeholder="请输入搜索内容"
  10. ></u-search>
  11. </view>
  12. <view class="list-box">
  13. <view class="list-item-box" v-for="item in list" :key="item.id" @click="onChatClick(item)">
  14. <view class="main-box">
  15. <!-- <view class="icon-box">
  16. <cover-image class="icon" :src="`https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/chat-icon/${item.type}.png`"></cover-image>
  17. <view class="tag" v-show="item.isRead"></view>
  18. </view> -->
  19. <view class="content-box">
  20. <view class="title">
  21. {{item.title}}
  22. </view>
  23. <view class="text">
  24. {{item.content}}
  25. </view>
  26. <view class="tag" v-show="item.isRead"></view>
  27. </view>
  28. <view class="other-box">
  29. <view class="date">
  30. {{item.time}}
  31. </view>
  32. </view>
  33. </view>
  34. <view class="line-box"></view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script setup>
  40. import { ref } from 'vue'
  41. import { onLoad } from '@dcloudio/uni-app'
  42. const uToast = ref()
  43. const searchInputStyle = {
  44. backgroundColor: '#E5E5E5'
  45. }
  46. const searchForm = ref({
  47. keyword: ''
  48. })
  49. const list = ref([
  50. {
  51. id: '1',
  52. title: '会费缴交成功通知',
  53. content: '尊敬的用户,您在2023年8月16日15:00成交缴交会费……',
  54. type: 'zhifu',
  55. time: '8/16',
  56. isRead: true
  57. },
  58. {
  59. id: '2',
  60. title: '继续教育通知',
  61. content: '尊敬的用户,您预约2023年8月16日《广州市存量房网……',
  62. type: 'jiaoyu',
  63. time: '8/16',
  64. isRead: true
  65. },
  66. {
  67. id: '3',
  68. title: '课程购买成功通知',
  69. content: '尊敬的用户,您在成功购买2023年8月16日《广州市存……',
  70. type: 'goumai',
  71. time: '8/16',
  72. isRead: true
  73. },
  74. {
  75. id: '4',
  76. title: '个人会员生日祝福',
  77. content: '尊敬的用户,今日是您的生日,协会祝你在……',
  78. type: 'shengri',
  79. time: '8/16',
  80. isRead: false
  81. },
  82. ])
  83. function onChatClick(chat) {
  84. uni.navigateTo({
  85. url: `/pages/chatDetail/chatDetail?id=${chat.id}&title=${chat.title}`
  86. })
  87. }
  88. onLoad(() => {
  89. uni.setTabBarBadge({ //显示数字
  90. index: 1, //tabbar下标
  91. text: '999' //数字
  92. })
  93. })
  94. </script>
  95. <style lang="scss" scoped>
  96. .container {
  97. height: 100vh;
  98. width: 100vw;
  99. background-color: $uni-bg-color;
  100. padding: 0 20rpx;
  101. .search-box {
  102. margin-bottom: 20rpx;
  103. @include topMagnet();
  104. ::v-deep(.u-search) {
  105. background-color: #e5e5e5;
  106. border-radius: 50rpx;
  107. .u-action {
  108. width: 18%;
  109. background-color: $uni-color-primary;
  110. border-radius: 50rpx;
  111. color: $uni-text-color-inverse;
  112. margin-right: 8rpx;
  113. font-size: 28rpx;
  114. line-height: 50rpx;
  115. letter-spacing: 3rpx;
  116. text-align: center;
  117. }
  118. }
  119. }
  120. .list-box {
  121. padding: 0 20rpx;
  122. .list-item-box {
  123. .main-box {
  124. display: flex;
  125. justify-content: space-between;
  126. align-items: center;
  127. padding: 30rpx 0;
  128. &:active {
  129. background-color: $uni-bg-color-hover;
  130. }
  131. // .icon-box {
  132. // width: 15%;
  133. // display: flex;
  134. // justify-content: center;
  135. // align-items: center;
  136. // position: relative;
  137. // .icon {
  138. // width: 70rpx;
  139. // height: 70rpx;
  140. // }
  141. // .tag {
  142. // position: absolute;
  143. // right: 5rpx;
  144. // top: -3rpx;
  145. // width: 15rpx;
  146. // height: 15rpx;
  147. // background-color: $uni-color-error;
  148. // border-radius: 50%;
  149. // }
  150. // }
  151. .content-box {
  152. width: 85%;
  153. display: flex;
  154. flex-direction: column;
  155. justify-content: space-around;
  156. gap: 10rpx;
  157. position: relative;
  158. .title {
  159. height: calc(70% - 5rpx);
  160. font-size: $uni-title-font-size-2;
  161. font-weight: bold;
  162. }
  163. .text {
  164. height: calc(30% - 5rpx);
  165. font-size: $uni-font-size-2;
  166. color: $uni-text-color-grey;
  167. @include text-overflow();
  168. }
  169. .tag {
  170. position: absolute;
  171. left: -14rpx;
  172. top: -3rpx;
  173. width: 15rpx;
  174. height: 15rpx;
  175. background-color: $uni-color-error;
  176. border-radius: 50%;
  177. }
  178. }
  179. .other-box {
  180. width: 15%;
  181. display: flex;
  182. flex-direction: column;
  183. justify-content: flex-end;
  184. align-items: center;
  185. gap: 10rpx;
  186. .date {
  187. font-size: $uni-font-size-2;
  188. color: $uni-text-color-grey;
  189. }
  190. }
  191. }
  192. .line-box {
  193. height: 1rpx;
  194. width: 80%;
  195. background-color: #E5E5E5;
  196. margin: 0 auto;
  197. }
  198. }
  199. }
  200. }
  201. </style>