news.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <template>
  2. <!-- 聊天消息 -->
  3. <view class="back">
  4. <view class="input u-flex" @click="toserve">
  5. <u-icon name="search" color="rgba(153, 153, 153, 1)" size="40"></u-icon>
  6. <input type="text" :placeholder="i18n.Searchchat" style="width: 600rpx;margin-left: 16rpx;" />
  7. </view>
  8. <!-- 客服 -->
  9. <view class="" v-for="(item,idx) in list" :key="idx">
  10. <view v-if="user_no !='13523652365' && item.conversationId == '13523652365'" class="kefu u-flex"
  11. @click="tokefu">
  12. <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
  13. <view class="u-row-between"
  14. style="height: 88rpx;display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  15. <view class="u-flex u-row-between">
  16. <view class="name">{{i18n.customerService}}</view>
  17. <view class="time">
  18. {{new Date(item.lastMessage.time).getFullYear()}}-{{new Date(item.lastMessage.time).getMonth() + 1}}-{{new Date(item.lastMessage.time).getDate()}}
  19. {{new Date(item.lastMessage.time).toTimeString().substr(0, 8)}}
  20. </view>
  21. </view>
  22. <view class="u-flex u-row-between">
  23. <text v-if="item.lastMessage.msg" class="news">{{item.lastMessage.msg}}</text>
  24. <text v-if="item.lastMessage.type == 'img'" class="news">{{i18n.picture}}</text>
  25. <text v-if="item.lastMessage.type == 'audio'" class="news">{{i18n.voiceMessage}}</text>
  26. <u-badge :type="type" max="99" :value="item.unReadCount"></u-badge>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="box ">
  32. <view style="margin-bottom: 26rpx;" v-for="(item,idx) in list" :key="idx" @click="chat(item)">
  33. <!-- <u-swipe-action>
  34. <u-swipe-action-item :options="options1" @click.stop="dele">
  35. <view class="">
  36. <view class=""> -->
  37. <view class="u-flex " v-if="item.conversationId != '13523652365'">
  38. <image v-if="item.lastMessage.ext.user.easemob_username == user_no"
  39. :src="item.lastMessage.ext.user_other.image || item.lastMessage.ext.user_other.avatar"
  40. style="width: 88rpx;height: 88rpx;" mode="">
  41. <image v-else :src="item.lastMessage.ext.user.avatar" style="width: 88rpx;height: 88rpx;"
  42. mode="">
  43. </image>
  44. <view class="u-row-between"
  45. style="display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  46. <view class="u-flex u-row-between">
  47. <view class="name" v-if="item.lastMessage.ext.user.easemob_username == user_no">
  48. {{ item.lastMessage.ext.user_other.merchant_name ||item.lastMessage.ext.user_other.nickname || item.lastMessage.ext.user_other.member.easemob_nickname}}
  49. </view>
  50. <view class="name" v-else>
  51. {{ item.lastMessage.ext.user.nickname}}
  52. </view>
  53. <!-- <view class="name">{{item.lastMessage.ext.user}}</view> -->
  54. <view class="time">
  55. {{new Date(item.lastMessage.time).getFullYear()}}-{{new Date(item.lastMessage.time).getMonth() + 1}}-{{new Date(item.lastMessage.time).getDate()}}
  56. {{new Date(item.lastMessage.time).toTimeString().substr(0, 8)}}
  57. </view>
  58. </view>
  59. <view class="u-flex u-row-between"
  60. style="border-bottom: 2rpx solid #eae7e7;padding-bottom: 26rpx;margin-top: 10rpx;">
  61. <text v-if="item.lastMessage.msg" class="news">{{item.lastMessage.msg}}</text>
  62. <text v-if="item.lastMessage.type == 'img'" class="news">{{i18n.picture}}</text>
  63. <text v-if="item.lastMessage.type == 'audio'" class="news">{{i18n.voiceMessage}}</text>
  64. <u-badge :type="type" max="99" :value="item.unReadCount"></u-badge>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- </view>
  69. </view>
  70. </u-swipe-action-item>
  71. </u-swipe-action> -->
  72. </view>
  73. <!-- <view style="margin-bottom: 26rpx;" v-for="(item,idx) in list" :key="idx" @click="chat(item)">
  74. <view class="u-flex " v-if="item.conversationId != '13523652365'">
  75. <image :src=" item.lastMessage.ext.user_other.avatar" style="width: 88rpx;height: 88rpx;" mode="">
  76. </image>
  77. <view class="u-row-between"
  78. style="display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  79. <view class="u-flex u-row-between">
  80. <view class="name" v-if="item.lastMessage.from == user_no">
  81. {{ item.lastMessage.ext.user_other.merchant_name ||item.lastMessage.ext.user_other.nickname}}
  82. </view>
  83. <view class="name" v-else>
  84. {{ item.lastMessage.ext.user.nickname}}
  85. </view>
  86. <view class="time">
  87. {{new Date(item.lastMessage.time).getFullYear()}}-{{new Date(item.lastMessage.time).getMonth() + 1}}-{{new Date(item.lastMessage.time).getDate()}}
  88. {{new Date(item.lastMessage.time).toTimeString().substr(0, 8)}}
  89. </view>
  90. </view>
  91. <view class="u-flex u-row-between"
  92. style="border-bottom: 2rpx solid #979797;padding-bottom: 26rpx;margin-top: 10rpx;">
  93. <text v-if="item.lastMessage.msg" class="news">{{item.lastMessage.msg}}</text>
  94. <text v-if="item.lastMessage.type == 'img'" class="news">图片</text>
  95. <u-badge :type="type" max="99" :value="item.unReadCount"></u-badge>
  96. </view>
  97. </view>
  98. </view>
  99. </view> -->
  100. </view>
  101. </view>
  102. </template>
  103. <script>
  104. import {
  105. conn,
  106. } from '@/utils/WebIM';
  107. export default {
  108. data() {
  109. return {
  110. cursor:'',
  111. type: "error",
  112. value: 1,
  113. list: [],
  114. user_no: '',
  115. options1: [{
  116. text: '删除',
  117. style: {
  118. backgroundColor: 'red',
  119. }
  120. }]
  121. };
  122. },
  123. onReachBottom() {
  124. this.getlist()
  125. },
  126. onLoad() {
  127. this.user_no = uni.getStorageSync('user_no')
  128. // this.getlist()
  129. },
  130. onShow() {
  131. this.getlist()
  132. },
  133. computed: {
  134. i18n() {
  135. return this.$t('index')
  136. }
  137. },
  138. methods: {
  139. toserve(){
  140. uni.navigateTo({
  141. url:'/pageA/chat/search'
  142. })
  143. },
  144. dele() {
  145. let options = {
  146. // 会话 ID:单聊为对方的用户 ID,群聊为群组 ID。
  147. channel: "channel",
  148. // 会话类型:(默认) `singleChat`:单聊;`groupChat`:群聊。
  149. chatType: "singleChat",
  150. // 删除会话时是否同时删除服务端漫游消息。
  151. deleteRoam: true,
  152. };
  153. conn
  154. .deleteConversation(options)
  155. .then((res) => {
  156. console.log(res);
  157. })
  158. .catch((e) => {
  159. // 删除失败。
  160. });
  161. },
  162. getlist() {
  163. conn.getServerConversations({
  164. pageSize: 50,
  165. cursor: this.cursor
  166. }).then((res) => {
  167. console.log(res);
  168. // this.list.concat(res.data.conversations)
  169. if(this.cursor==''){
  170. this.list = res.data.conversations
  171. }
  172. if(this.cursor){
  173. this.list.concat(res.data.conversations)
  174. }
  175. this.cursor = res.data.cursor
  176. })
  177. },
  178. tokefu() {
  179. uni.navigateTo({
  180. url: '/pageA/service/service'
  181. })
  182. },
  183. chat(item) {
  184. if (item.lastMessage.ext.user.easemob_username == this.user_no) {
  185. uni.navigateTo({
  186. url: '/pageA/chat/chat?user_other_no=' + item.conversationId + '&user_other=' +
  187. encodeURIComponent(JSON
  188. .stringify(item.lastMessage.ext.user_other))
  189. })
  190. } else {
  191. uni.navigateTo({
  192. url: '/pageA/chat/chat?user_other_no=' + item.conversationId + '&user_other=' +
  193. encodeURIComponent(
  194. JSON.stringify(item.lastMessage.ext.user))
  195. })
  196. }
  197. }
  198. }
  199. }
  200. </script>
  201. <style lang="scss">
  202. .back {
  203. width: 750rpx;
  204. // height: 1624rpx;
  205. background: #F4F4F4;
  206. padding: 20rpx 24rpx;
  207. box-sizing: border-box;
  208. .input {
  209. width: 702rpx;
  210. height: 72rpx;
  211. background: #FFFFFF;
  212. border-radius: 36rpx;
  213. padding: 0 24rpx;
  214. box-sizing: border-box;
  215. }
  216. .kefu {
  217. width: 702rpx;
  218. height: 156rpx;
  219. background: #FFFFFF;
  220. border-radius: 16rpx;
  221. padding: 36rpx 24rpx 32rpx;
  222. box-sizing: border-box;
  223. margin-top: 24rpx;
  224. }
  225. .name {
  226. font-family: PingFangSC, PingFang SC;
  227. font-weight: 400;
  228. font-size: 32rpx;
  229. color: #222222;
  230. line-height: 44rpx;
  231. text-align: left;
  232. font-style: normal;
  233. }
  234. .time {
  235. font-family: SFPro, SFPro;
  236. font-weight: 400;
  237. font-size: 20rpx;
  238. color: #666666;
  239. line-height: 24rpx;
  240. text-align: left;
  241. font-style: normal;
  242. }
  243. .news {
  244. font-family: PingFangSC, PingFang SC;
  245. font-weight: 400;
  246. font-size: 24rpx;
  247. color: #666666;
  248. line-height: 34rpx;
  249. text-align: left;
  250. font-style: normal;
  251. }
  252. .box {
  253. width: 702rpx;
  254. min-height: 1156rpx;
  255. background: #FFFFFF;
  256. border-radius: 16rpx;
  257. padding: 40rpx 24rpx 20rpx;
  258. box-sizing: border-box;
  259. margin-top: 20rpx;
  260. }
  261. }
  262. </style>