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>
  18. <view class="content-box">
  19. <view class="title">
  20. {{item.title}}
  21. </view>
  22. <view class="text">
  23. {{item.content}}
  24. </view>
  25. </view>
  26. <view class="other-box">
  27. <view class="date">
  28. {{item.time}}
  29. </view>
  30. <view class="tag">
  31. {{item.count}}
  32. </view>
  33. </view>
  34. </view>
  35. <view class="line-box"></view>
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script setup>
  41. import { ref } from 'vue'
  42. import { onLoad } from '@dcloudio/uni-app'
  43. const uToast = ref()
  44. const searchInputStyle = {
  45. backgroundColor: '#E5E5E5'
  46. }
  47. const searchForm = ref({
  48. keyword: ''
  49. })
  50. const list = ref([
  51. {
  52. id: '1',
  53. title: '会费缴交成功通知',
  54. content: '尊敬的用户,您在2023年8月16日15:00成交缴交会费……',
  55. type: 'zhifu',
  56. time: '8/16',
  57. count: 1
  58. },
  59. {
  60. id: '2',
  61. title: '继续教育通知',
  62. content: '尊敬的用户,您预约2023年8月16日《广州市存量房网……',
  63. type: 'jiaoyu',
  64. time: '8/16',
  65. count: 1
  66. },
  67. {
  68. id: '3',
  69. title: '课程购买成功通知',
  70. content: '尊敬的用户,您在成功购买2023年8月16日《广州市存……',
  71. type: 'goumai',
  72. time: '8/16',
  73. count: 1
  74. },
  75. {
  76. id: '4',
  77. title: '个人会员生日祝福',
  78. content: '尊敬的用户,今日是您的生日,协会祝你在……',
  79. type: 'shengri',
  80. time: '8/16',
  81. count: 1
  82. }
  83. ])
  84. function onChatClick(chat) {
  85. uni.navigateTo({
  86. url: `/pages/chatDetail/chatDetail?id=${chat.id}&title=${chat.title}`
  87. })
  88. }
  89. onLoad(() => {
  90. uni.setTabBarBadge({ //显示数字
  91. index: 1, //tabbar下标
  92. text: '999' //数字
  93. })
  94. })
  95. </script>
  96. <style lang="scss" scoped>
  97. .container {
  98. height: 100vh;
  99. width: 100vw;
  100. background-color: $uni-bg-color;
  101. padding: 0 20rpx;
  102. .search-box {
  103. margin-bottom: 20rpx;
  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. .icon {
  137. width: 70rpx;
  138. height: 70rpx;
  139. }
  140. }
  141. .content-box {
  142. width: 67%;
  143. display: flex;
  144. flex-direction: column;
  145. justify-content: space-around;
  146. gap: 10rpx;
  147. .title {
  148. height: calc(70% - 5rpx);
  149. font-size: $uni-title-font-size-2;
  150. font-weight: bold;
  151. }
  152. .text {
  153. height: calc(30% - 5rpx);
  154. font-size: $uni-font-size-3;
  155. color: $uni-text-color-grey;
  156. @include text-overflow();
  157. }
  158. }
  159. .other-box {
  160. width: 18%;
  161. display: flex;
  162. flex-direction: column;
  163. justify-content: space-around;
  164. align-items: center;
  165. gap: 10rpx;
  166. .date {
  167. font-size: $uni-font-size-3;
  168. color: $uni-text-color-grey;
  169. }
  170. .tag {
  171. font-size: $uni-font-size-3;
  172. width: 42rpx;
  173. background-color: $uni-color-error;
  174. color: $uni-text-color-inverse;
  175. border-radius: 20rpx;
  176. text-align: center;
  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>