news.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <!-- 聊天消息 -->
  3. <view class="back">
  4. <view class="input u-flex">
  5. <u-icon name="search" color="rgba(153, 153, 153, 1)" size="40"></u-icon>
  6. <input type="text" placeholder="搜索聊天记录/团长" style="width: 600rpx;margin-left: 16rpx;" />
  7. </view>
  8. <!-- 客服 -->
  9. <view class="kefu u-flex" @click="tokefu">
  10. <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
  11. <view class="u-row-between"
  12. style="height: 88rpx;display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  13. <view class="u-flex u-row-between">
  14. <view class="name">官方客服</view>
  15. <view class="time">14:09</view>
  16. </view>
  17. <view class="u-flex u-row-between">
  18. <text class="news">[卡片]</text>
  19. <u-badge :type="type" max="99" :value="value"></u-badge>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="box ">
  24. <view class="u-flex " style="margin-bottom: 26rpx;" v-for="(item,idx) in list" :key="idx"
  25. @click="chat(item.lastMessage)">
  26. <image :src="item.lastMessage.ext.image" style="width: 88rpx;height: 88rpx;" mode=""></image>
  27. <view class="u-row-between" style="display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  28. <view class="u-flex u-row-between">
  29. <view class="name">{{item.lastMessage.ext.shopname}}</view>
  30. <view class="name">{{item.lastMessage.ext.user}}</view>
  31. <view class="time">
  32. {{new Date(item.lastMessage.time).getFullYear()}}-{{new Date(item.lastMessage.time).getMonth() + 1}}-{{new Date(item.lastMessage.time).getDate()}}
  33. {{new Date(item.lastMessage.time).toTimeString().substr(0, 8)}}
  34. </view>
  35. </view>
  36. <view class="u-flex u-row-between"
  37. style="border-bottom: 2rpx solid #979797;padding-bottom: 26rpx;margin-top: 10rpx;">
  38. <text v-if="item.lastMessage.msg" class="news">{{item.lastMessage.msg}}</text>
  39. <text v-if="item.lastMessage.type == 'img'" class="news">图片</text>
  40. <u-badge :type="type" max="99" :value="item.unReadCount"></u-badge>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import {
  49. conn,
  50. } from '@/utils/WebIM';
  51. export default {
  52. data() {
  53. return {
  54. type: "error",
  55. value: 1,
  56. list: []
  57. };
  58. },
  59. onLoad() {
  60. this.getlist()
  61. },
  62. methods: {
  63. getlist() {
  64. conn.getServerConversations({
  65. pageSize: 50,
  66. cursor: ''
  67. }).then((res) => {
  68. console.log(res);
  69. this.list = res.data.conversations
  70. })
  71. },
  72. tokefu() {
  73. uni.navigateTo({
  74. url: '/pageA/service/service'
  75. })
  76. },
  77. chat(item) {
  78. uni.navigateTo({
  79. // url: '/pageA/chat/chat?user_other_no=' + item.from + '&user_other=' + encodeURIComponent(JSON.stringify(item.ext.user))
  80. url: '/pageA/chat/chat?user_other_no=' + item.from
  81. })
  82. }
  83. }
  84. }
  85. </script>
  86. <style lang="scss">
  87. .back {
  88. width: 750rpx;
  89. // height: 1624rpx;
  90. background: #F4F4F4;
  91. padding: 20rpx 24rpx;
  92. box-sizing: border-box;
  93. .input {
  94. width: 702rpx;
  95. height: 72rpx;
  96. background: #FFFFFF;
  97. border-radius: 36rpx;
  98. padding: 0 24rpx;
  99. box-sizing: border-box;
  100. }
  101. .kefu {
  102. width: 702rpx;
  103. height: 156rpx;
  104. background: #FFFFFF;
  105. border-radius: 16rpx;
  106. padding: 36rpx 24rpx 32rpx;
  107. box-sizing: border-box;
  108. margin-top: 24rpx;
  109. }
  110. .name {
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: 400;
  113. font-size: 32rpx;
  114. color: #222222;
  115. line-height: 44rpx;
  116. text-align: left;
  117. font-style: normal;
  118. }
  119. .time {
  120. font-family: SFPro, SFPro;
  121. font-weight: 400;
  122. font-size: 20rpx;
  123. color: #666666;
  124. line-height: 24rpx;
  125. text-align: left;
  126. font-style: normal;
  127. }
  128. .news {
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 400;
  131. font-size: 24rpx;
  132. color: #666666;
  133. line-height: 34rpx;
  134. text-align: left;
  135. font-style: normal;
  136. }
  137. .box {
  138. width: 702rpx;
  139. min-height: 1156rpx;
  140. background: #FFFFFF;
  141. border-radius: 16rpx;
  142. padding: 40rpx 24rpx 20rpx;
  143. box-sizing: border-box;
  144. margin-top: 20rpx;
  145. }
  146. }
  147. </style>