chat.vue 15 KB

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