search.vue 7.2 KB

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