chat.vue 4.2 KB

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