service.vue 14 KB

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