service.vue 17 KB

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