service.vue 17 KB

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