service.vue 14 KB

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