chat.vue 15 KB

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