chat.vue 16 KB

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