chat.vue 15 KB

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