chat.vue 14 KB

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