chat.vue 15 KB

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