chat.vue 14 KB

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