chat.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. <template>
  2. <view class="chat-pages">
  3. <u-navbar :border="false" @leftClick="return1">
  4. <view class="chat-navbar u-flex-col u-col-center" slot="center">
  5. <text>{{user_other.username}}</text>
  6. <text>{{user_other.company_name || ''}}·{{user_other.type || ''}}</text>
  7. </view>
  8. </u-navbar>
  9. <view class="" style="height: 200rpx;"></view>
  10. <view class="chat-item" v-for="(item,index) in list" :key="index">
  11. <view class="chat-time">
  12. {{renderTime(item.time)}}
  13. </view>
  14. <view class="chat-item-box u-flex u-col-top acenter" v-if="item.from == user_other_no">
  15. <image :src="user_other.avatar" class="user-img" mode=""></image>
  16. <view style="max-width: 80%;" class="" v-if="item.type == 'txt' && !item.ext.type">
  17. <view class="chat-text" :style="{background:item.from == user_no ? '#D3E5FB' : '#fff'}">
  18. {{item.msg}}
  19. </view>
  20. </view>
  21. <view style="max-width: 80%;" v-if="item.type == 'audio'">
  22. <view class="chat-text hflex acenter" style="background: #D3E5FB;max-width: 550rpx;"
  23. @click="playaudio(item.url)">
  24. <image src="static/yuyin-left.png" mode="" style="width: 20rpx;height: 20rpx;"></image>
  25. <text :style="'padding-right: ' + item.length * 10 + 'rpx'">{{item.length}}</text>
  26. </view>
  27. </view>
  28. <image :src="item.msg ? item.msg : item.url" v-if="item.type === 'img'" mode="widthFix"
  29. style="width: 200px;text-align: right;" @click="previewimg(item.url)"></image>
  30. <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'cand'"
  31. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  32. <view class="header-top u-flex u-row-between">
  33. <view class="header-left">
  34. <view class="u-flex">
  35. <text class="text1">{{item.ext.order.name}}</text>
  36. </view>
  37. </view>
  38. <view class="header-right">
  39. <image :src="item.ext.order.avatar" class="right-img" mode=""></image>
  40. <image src="../static/images/nan.png" class="sex" mode=""
  41. v-if="item.ext.order.sex == 'male'"></image>
  42. <image src="../static/images/nv.png" class="sex" mode="" v-else></image>
  43. </view>
  44. </view>
  45. <view class="goutong-time">
  46. {{renderTime(item.time)}} 发起沟通
  47. </view>
  48. </view>
  49. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'pos'"
  50. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  51. <view class="header1-top u-flex u-row-between">
  52. <text>{{item.ext.order.title}}</text>
  53. <text>{{item.ext.order.salary}}K</text>
  54. </view>
  55. <view class="goutong-time1">
  56. {{renderTime(item.time)}} 发起沟通
  57. </view>
  58. </view>
  59. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'order'"
  60. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'order')">
  61. <view class="header1-top u-flex u-row-between">
  62. <text>{{item.ext.order.title}}</text>
  63. <text>{{item.ext.order.salary}}K</text>
  64. </view>
  65. <view class="goutong-time1">
  66. {{renderTime(item.time)}} 发起沟通
  67. </view>
  68. </view>
  69. </view>
  70. <view class="chat-item-box u-flex u-col-top jend" v-if="item.from == user_no">
  71. <view style="max-width: 80%;" class="" v-if="item.type == 'txt' && !item.ext.type">
  72. <view class="chat-text" :style="{background:item.from == user_no ? '#D3E5FB' : '#fff'}">
  73. {{item.msg}}
  74. </view>
  75. </view>
  76. <view style="max-width: 80%;" v-if="item.type == 'audio'">
  77. <view class="chat-text hflex acenter jend" style="background: #D3E5FB;max-width: 550rpx;"
  78. @click="playaudio(item.url)">
  79. <text :style="'padding-left: ' + item.length * 10 + 'rpx'">{{item.length}}</text>
  80. <image src="static/yuyin-right.png" mode="" style="width: 20rpx;height: 20rpx;"></image>
  81. </view>
  82. </view>
  83. <image :src="item.msg ? item.msg : item.url" v-if="item.type === 'img'" mode="widthFix"
  84. style="width: 200px;text-align: right;" @click="previewimg(item.url)"></image>
  85. <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'cand'"
  86. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  87. <view class="header-top u-flex u-row-between">
  88. <view class="header-left">
  89. <view class="u-flex">
  90. <text class="text1">{{item.ext.order.name}}</text>
  91. </view>
  92. </view>
  93. <view class="header-right">
  94. <image :src="item.ext.order.avatar" class="right-img" mode=""></image>
  95. <image src="../static/images/nan.png" class="sex" mode=""
  96. v-if="item.ext.order.sex == 'male'"></image>
  97. <image src="../static/images/nv.png" class="sex" mode="" v-else></image>
  98. </view>
  99. </view>
  100. <view class="goutong-time">
  101. {{renderTime(item.time)}} 发起沟通
  102. </view>
  103. </view>
  104. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'pos'"
  105. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  106. <view class="header1-top u-flex u-row-between">
  107. <text>{{item.ext.order.title}}</text>
  108. <text>{{item.ext.order.salary}}K</text>
  109. </view>
  110. <view class="goutong-time1">
  111. {{renderTime(item.time)}} 发起沟通
  112. </view>
  113. </view>
  114. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'order'"
  115. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'order')">
  116. <view class="header1-top u-flex u-row-between">
  117. <text>{{item.ext.order.title}}</text>
  118. <text>{{item.ext.order.salary}}K</text>
  119. </view>
  120. <view class="goutong-time1">
  121. {{renderTime(item.time)}} 发起沟通
  122. </view>
  123. </view>
  124. <image v-if="item.from == user_no" :src="user.avatar" class="user-img" mode=""></image>
  125. </view>
  126. </view>
  127. <view class="" style="height: 55rpx;"></view>
  128. <zhao-chat :to="user_other_no" :list="changyong_list" @success="getdata"></zhao-chat>
  129. </view>
  130. </template>
  131. <script>
  132. import vueBus from '@/utils/vueBus.js'
  133. import {
  134. phraseList,
  135. getEmchatUsersData,
  136. index
  137. } from "../units/inquire.js"
  138. import WebIM from '@/newSDK/Easemob-chat.js'
  139. import {
  140. conn
  141. } from '@/utils/WebIM';
  142. import {
  143. renderTime
  144. } from '@/utils/index'
  145. const innerAudioContext = uni.createInnerAudioContext()
  146. export default {
  147. data() {
  148. return {
  149. statusheight: 0,
  150. user_other_no: '',
  151. user_no: '',
  152. user: {},
  153. user_other: {},
  154. pageSize: 20,
  155. loadText: '',
  156. list: [],
  157. renderTime,
  158. changyong_list: [],
  159. playStatus: 0, //录音播放状态 0:未播放 1:正在播放
  160. }
  161. },
  162. onLoad(options) {
  163. this.statusheight = uni.getSystemInfoSync().statusBarHeight
  164. this.user_other_no = options.user_no
  165. if (uni.getStorageSync('user_no')) {
  166. this.user_no = uni.getStorageSync('user_no')
  167. this.getuser()
  168. this.getdata()
  169. } else {
  170. index().then((res) => {
  171. this.user_no = res.data.user_no
  172. this.getuser()
  173. this.getdata()
  174. })
  175. }
  176. vueBus.$on('message', this.getdata)
  177. },
  178. onShow() {
  179. this.getlist()
  180. },
  181. methods: {
  182. getlist() {
  183. phraseList().then((res) => {
  184. this.changyong_list = res.data
  185. })
  186. },
  187. previewimg(url) {
  188. let urls = []
  189. urls.push(url)
  190. uni.previewImage({
  191. urls: urls,
  192. longPressActions: {
  193. itemList: ['发送给朋友', '保存图片', '收藏'],
  194. success: function(data) {
  195. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  196. },
  197. fail: function(err) {
  198. console.log(err.errMsg);
  199. }
  200. }
  201. });
  202. },
  203. playaudio(url) {
  204. let _this = this
  205. innerAudioContext.src = url
  206. console.log(url);
  207. console.log(this.playStatus);
  208. if (this.playStatus == 0) {
  209. innerAudioContext.play()
  210. innerAudioContext.onPlay(() => {
  211. console.log('开始播放');
  212. _this.playStatus = 1
  213. });
  214. } else {
  215. innerAudioContext.pause()
  216. innerAudioContext.onPause(() => {
  217. console.log('暂停播放');
  218. _this.playStatus = 0
  219. });
  220. }
  221. innerAudioContext.onError((res) => {
  222. console.log('onError', res.errMsg);
  223. console.log('onError', res.errCode);
  224. });
  225. innerAudioContext.onEnded((res) => {
  226. _this.playStatus = 0
  227. })
  228. },
  229. return1() {
  230. uni.navigateBack()
  231. },
  232. getuser() {
  233. let that = this
  234. getEmchatUsersData({
  235. user_no: this.user_no + ',' + this.user_other_no,
  236. }).then((res) => {
  237. if (res.code == 1) {
  238. this.user = res.data[0]
  239. this.user_other = res.data[1]
  240. } else {
  241. that.$u.toast(res.msg)
  242. }
  243. })
  244. },
  245. getdata() {
  246. let option2 = {
  247. chatType: "singleChat", // 会话类型,设置为单聊。
  248. type: "channel", // 消息类型。
  249. to: this.user_other_no, // 接收消息对象的用户 ID。
  250. };
  251. let msg2 = new WebIM.message.create(option2);
  252. conn.send(msg2);
  253. let options = {
  254. // 对方的用户 ID 或者群组 ID 或聊天室 ID。
  255. targetId: this.user_other_no,
  256. // 每页期望获取的消息条数。取值范围为 [1,50],默认值为 20。
  257. pageSize: this.pageSize,
  258. // 查询的起始消息 ID。若该参数设置为 `-1`、`null` 或空字符串,从最新消息开始。
  259. cursor: -1,
  260. // 会话类型:(默认) `singleChat`:单聊;`groupChat`:群聊。
  261. chatType: "singleChat",
  262. // 消息搜索方向:(默认)`up`:按服务器收到消息的时间的逆序获取;`down`:按服务器收到消息的时间的正序获取。
  263. searchDirection: "up",
  264. };
  265. conn.getHistoryMessages(options).then((res) => {
  266. // 成功获取历史消息。
  267. console.log('kkkk', res);
  268. if (res.isLast) {
  269. this.loadText = '已无更多数据';
  270. }
  271. this.list = res.messages.reverse()
  272. this.$nextTick(() => {
  273. uni.pageScrollTo({
  274. scrollTop: 99999
  275. })
  276. })
  277. })
  278. .catch((e) => {
  279. // 获取失败。
  280. console.log('失败', e);
  281. });
  282. },
  283. toinfo(item, type) {
  284. if (type == 'pos' && item.ext.order.item_url) {
  285. uni.navigateTo({
  286. url: "/pagesB/details?id=" + item.ext.order.item_url
  287. })
  288. } else if (type == 'cand') {
  289. uni.navigateTo({
  290. url: "/pagesC/rencai-info?id=" + item.ext.order.item_url
  291. })
  292. } else if (type == 'order') {
  293. uni.navigateTo({
  294. url: "/pagesD/order-detail?id=" + item.ext.order.item_url
  295. })
  296. }
  297. }
  298. }
  299. }
  300. </script>
  301. <style lang="scss">
  302. .chat-pages {
  303. .chat-header1 {
  304. width: 702rpx;
  305. background: #FFFFFF;
  306. border-radius: 16rpx;
  307. position: sticky;
  308. left: 24rpx;
  309. // z-index: 20;
  310. margin: 10px auto;
  311. padding: 0 20rpx;
  312. .goutong-time1 {
  313. line-height: 80rpx;
  314. font-size: 24rpx;
  315. font-family: SFPro-Regular, SFPro;
  316. font-weight: 400;
  317. color: #777777;
  318. border-top: 2rpx solid #F0F0F0;
  319. }
  320. .zhiwei-text {
  321. font-size: 26rpx;
  322. font-family: PingFangSC-Regular, PingFang SC;
  323. font-weight: 400;
  324. color: #555555;
  325. padding-bottom: 20rpx;
  326. border-bottom: 2rpx solid #F0F0F0;
  327. }
  328. .zhiwei-title {
  329. font-size: 26rpx;
  330. font-family: PingFangSC-Regular, PingFang SC;
  331. font-weight: 400;
  332. color: #555555;
  333. margin-bottom: 20rpx;
  334. }
  335. .chat-label1 {
  336. padding: 8rpx 0 10rpx 0;
  337. text {
  338. margin-right: 10rpx;
  339. margin-bottom: 10rpx;
  340. line-height: 40rpx;
  341. background: #F3F3F3;
  342. border-radius: 4rpx;
  343. padding: 0 12rpx;
  344. font-size: 24rpx;
  345. font-family: PingFangSC-Regular, PingFang SC;
  346. font-weight: 400;
  347. color: #555555;
  348. }
  349. }
  350. .jingli1-box {
  351. font-size: 24rpx;
  352. font-family: PingFangSC-Regular, PingFang SC;
  353. font-weight: 400;
  354. color: #555555;
  355. margin-bottom: 20rpx;
  356. }
  357. .header1-top {
  358. padding: 24rpx 0 20rpx 0;
  359. text:frist-child {
  360. font-size: 32rpx;
  361. font-family: PingFangSC-Medium, PingFang SC;
  362. font-weight: 500;
  363. color: #222222;
  364. }
  365. text:last-child {
  366. font-size: 32rpx;
  367. font-family: DINAlternate-Bold, DINAlternate;
  368. font-weight: bold;
  369. color: #0C66C2;
  370. }
  371. }
  372. }
  373. .chat-item {
  374. padding: 0 24rpx;
  375. margin-bottom: 20rpx;
  376. .chat-item-box {
  377. .chat-text {
  378. border-radius: 20rpx;
  379. background-color: #fff;
  380. max-width: 100%;
  381. margin: 0 20rpx;
  382. font-size: 30rpx;
  383. font-family: PingFangSC-Regular, PingFang SC;
  384. font-weight: 400;
  385. color: #141414;
  386. padding: 20rpx 24rpx;
  387. }
  388. .user-img {
  389. width: 92rpx;
  390. height: 92rpx;
  391. border-radius: 100rpx;
  392. }
  393. }
  394. .chat-time {
  395. text-align: center;
  396. margin-bottom: 30rpx;
  397. font-size: 24rpx;
  398. font-family: PingFangSC-Regular, PingFang SC;
  399. font-weight: 400;
  400. color: #777777;
  401. }
  402. }
  403. .chat-header {
  404. width: 702rpx;
  405. background: #FFFFFF;
  406. border-radius: 16rpx;
  407. position: sticky;
  408. left: 24rpx;
  409. z-index: 20;
  410. margin: 10px auto;
  411. padding: 0 20rpx;
  412. .goutong-time {
  413. line-height: 80rpx;
  414. font-size: 24rpx;
  415. font-family: SFPro-Regular, SFPro;
  416. font-weight: 400;
  417. color: #777777;
  418. border-top: 2rpx solid #F0F0F0;
  419. }
  420. .chat-label {
  421. padding: 8rpx 0 10rpx 0;
  422. text {
  423. margin-right: 10rpx;
  424. margin-bottom: 10rpx;
  425. line-height: 40rpx;
  426. background: #F3F3F3;
  427. border-radius: 4rpx;
  428. padding: 0 12rpx;
  429. font-size: 24rpx;
  430. font-family: PingFangSC-Regular, PingFang SC;
  431. font-weight: 400;
  432. color: #555555;
  433. }
  434. }
  435. .jingli-box {
  436. margin-bottom: 12rpx;
  437. .img {
  438. width: 28rpx;
  439. height: 28rpx;
  440. }
  441. .text1 {
  442. font-size: 28rpx;
  443. font-family: PingFangSC-Regular, PingFang SC;
  444. font-weight: 400;
  445. color: #222222;
  446. margin: 0 12rpx;
  447. flex: 1;
  448. }
  449. .text2 {
  450. font-size: 22rpx;
  451. font-family: SFPro-Regular, SFPro;
  452. font-weight: 400;
  453. color: #888888;
  454. }
  455. }
  456. .header-top {
  457. height: 150rpx;
  458. .header-right {
  459. width: 96rpx;
  460. height: 96rpx;
  461. position: relative;
  462. .sex {
  463. position: absolute;
  464. bottom: 0;
  465. right: 4rpx;
  466. width: 20rpx;
  467. height: 20rpx;
  468. }
  469. .right-img {
  470. width: 96rpx;
  471. height: 96rpx;
  472. border-radius: 100rpx;
  473. }
  474. }
  475. .header-left {
  476. .text3 {
  477. font-size: 26rpx;
  478. font-family: SFPro-Regular, SFPro;
  479. font-weight: 400;
  480. color: #666666;
  481. margin-top: 10rpx;
  482. }
  483. .text1 {
  484. font-size: 36rpx;
  485. font-family: PingFangSC-Medium, PingFang SC;
  486. font-weight: 500;
  487. color: #222222;
  488. margin-right: 28rpx;
  489. }
  490. .text2 {
  491. font-size: 26rpx;
  492. font-family: PingFangSC-Regular, PingFang SC;
  493. font-weight: 400;
  494. color: #222222;
  495. }
  496. }
  497. }
  498. }
  499. .chat-navbar {
  500. flex: 1;
  501. // padding-left: 100rpx;
  502. text:first-child {
  503. font-size: 36rpx;
  504. font-family: PingFangSC-Medium, PingFang SC;
  505. font-weight: 500;
  506. color: #141414;
  507. }
  508. text:last-child {
  509. font-size: 22rpx;
  510. font-family: PingFangSC-Regular, PingFang SC;
  511. font-weight: 400;
  512. color: #777777;
  513. }
  514. }
  515. }
  516. page {
  517. background-color: #F3F3F3;
  518. }
  519. </style>