chat.vue 14 KB

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