chat.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. <template>
  2. <view class="chat-pages">
  3. <u-navbar :border="false" @leftClick="return1">
  4. <view class="chat-navbar u-flex-col u-col-center" slot="center">
  5. <text>{{user_other.username}}</text>
  6. <text>{{user_other.company_name || ''}}·{{user_other.type || ''}}</text>
  7. </view>
  8. </u-navbar>
  9. <view class="" style="height: 200rpx;"></view>
  10. <view class="chat-item" v-for="(item,index) in list" :key="index">
  11. <view class="chat-time">
  12. {{renderTime(item.time)}}
  13. </view>
  14. <view class="chat-item-box u-flex u-col-top acenter" v-if="item.from == user_other_no">
  15. <image :src="user_other.avatar" class="user-img" mode=""></image>
  16. <view style="max-width: 80%;" class="" v-if="item.type == 'txt' && !item.ext.type">
  17. <view class="chat-text" :style="{background:item.from == user_no ? '#D3E5FB' : '#fff'}">
  18. {{item.msg}}
  19. </view>
  20. </view>
  21. <view style="max-width: 80%;" v-if="item.type == 'audio'">
  22. <view class="chat-text hflex acenter" style="background: #D3E5FB;max-width: 550rpx;"
  23. @click="playaudio(item.url)">
  24. <image src="static/yuyin-left.png" mode="" style="width: 20rpx;height: 20rpx;"></image>
  25. <text :style="'padding-right: ' + item.length * 10 + 'rpx'">{{item.length}}</text>
  26. </view>
  27. </view>
  28. <image :src="item.msg ? item.msg : item.url" v-if="item.type === 'img'" mode="widthFix"
  29. style="width: 200px;text-align: right;" @click="previewimg(item.url)"></image>
  30. <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'cand'"
  31. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  32. <view class="header-top u-flex u-row-between">
  33. <view class="header-left">
  34. <view class="u-flex">
  35. <text class="text1">{{item.ext.order.name}}</text>
  36. </view>
  37. </view>
  38. <view class="header-right">
  39. <image :src="item.ext.order.avatar" class="right-img" mode=""></image>
  40. <image src="../static/images/nan.png" class="sex" mode=""
  41. v-if="item.ext.order.sex == 'male'"></image>
  42. <image src="../static/images/nv.png" class="sex" mode="" v-else></image>
  43. </view>
  44. </view>
  45. <view class="goutong-time">
  46. {{renderTime(item.time)}} 发起沟通
  47. </view>
  48. </view>
  49. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'pos'"
  50. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  51. <view class="header1-top u-flex u-row-between">
  52. <text>{{item.ext.order.title}}</text>
  53. <text>{{item.ext.order.salary}}K</text>
  54. </view>
  55. <view class="goutong-time1">
  56. {{renderTime(item.time)}} 发起沟通
  57. </view>
  58. </view>
  59. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'order'"
  60. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'order')">
  61. <view class="header1-top u-flex u-row-between">
  62. <text>{{item.ext.order.title}}</text>
  63. <text>{{item.ext.order.salary}}K</text>
  64. </view>
  65. <view class="goutong-time1">
  66. {{renderTime(item.time)}} 发起沟通
  67. </view>
  68. </view>
  69. </view>
  70. <view class="chat-item-box u-flex u-col-top jend" v-if="item.from == user_no">
  71. <view style="max-width: 80%;" class="" v-if="item.type == 'txt' && !item.ext.type">
  72. <view class="chat-text" :style="{background:item.from == user_no ? '#D3E5FB' : '#fff'}">
  73. {{item.msg}}
  74. </view>
  75. </view>
  76. <view style="max-width: 80%;" v-if="item.type == 'audio'">
  77. <view class="chat-text hflex acenter jend" style="background: #D3E5FB;max-width: 550rpx;"
  78. @click="playaudio(item.url)">
  79. <text :style="'padding-left: ' + item.length * 10 + 'rpx'">{{item.length}}</text>
  80. <image src="static/yuyin-right.png" mode="" style="width: 20rpx;height: 20rpx;"></image>
  81. </view>
  82. </view>
  83. <image :src="item.msg ? item.msg : item.url" v-if="item.type === 'img'" mode="widthFix"
  84. style="width: 200px;text-align: right;" @click="previewimg(item.url)"></image>
  85. <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'cand'"
  86. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  87. <view class="header-top u-flex u-row-between">
  88. <view class="header-left">
  89. <view class="u-flex">
  90. <text class="text1">{{item.ext.order.name}}</text>
  91. </view>
  92. </view>
  93. <view class="header-right">
  94. <image :src="item.ext.order.avatar" class="right-img" mode=""></image>
  95. <image src="../static/images/nan.png" class="sex" mode=""
  96. v-if="item.ext.order.sex == 'male'"></image>
  97. <image src="../static/images/nv.png" class="sex" mode="" v-else></image>
  98. </view>
  99. </view>
  100. <view class="goutong-time">
  101. {{renderTime(item.time)}} 发起沟通
  102. </view>
  103. </view>
  104. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'pos'"
  105. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
  106. <view class="header1-top u-flex u-row-between">
  107. <text>{{item.ext.order.title}}</text>
  108. <text>{{item.ext.order.salary}}K</text>
  109. </view>
  110. <view class="goutong-time1">
  111. {{renderTime(item.time)}} 发起沟通
  112. </view>
  113. </view>
  114. <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'order'"
  115. :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'order')">
  116. <view class="header1-top u-flex u-row-between">
  117. <text>{{item.ext.order.title}}</text>
  118. <text>{{item.ext.order.salary}}K</text>
  119. </view>
  120. <view class="goutong-time1">
  121. {{renderTime(item.time)}} 发起沟通
  122. </view>
  123. </view>
  124. <image v-if="item.from == user_no" :src="user.avatar" class="user-img" mode=""></image>
  125. </view>
  126. </view>
  127. <zhao-chat :to="user_other_no" :list="changyong_list" @success="getdata"></zhao-chat>
  128. </view>
  129. </template>
  130. <script>
  131. import {
  132. getEmchatUsersData
  133. } from "../units/inquire.js"
  134. import WebIM from '@/newSDK/Easemob-chat.js'
  135. import {
  136. conn
  137. } from '@/utils/WebIM';
  138. import {
  139. renderTime
  140. } from '@/utils/index'
  141. export default {
  142. data() {
  143. return {
  144. statusheight: 0,
  145. user_other_no: '',
  146. user_no: '',
  147. user: {},
  148. user_other: {},
  149. pageSize: 20,
  150. loadText: '',
  151. list: [],
  152. renderTime,
  153. changyong_list: [],
  154. playStatus: 0, //录音播放状态 0:未播放 1:正在播放
  155. }
  156. },
  157. onLoad(options) {
  158. this.statusheight = uni.getSystemInfoSync().statusBarHeight
  159. this.user_other_no = options.user_no
  160. this.user_no = uni.getStorageSync('user_no')
  161. this.getuser()
  162. this.getdata()
  163. },
  164. methods: {
  165. return1() {
  166. uni.navigateBack()
  167. },
  168. getuser() {
  169. let that = this
  170. getEmchatUsersData({
  171. user_no: this.user_no + ',' + this.user_other_no,
  172. }).then((res) => {
  173. if (res.code == 1) {
  174. this.user = res.data[0]
  175. this.user_other = res.data[1]
  176. } else {
  177. that.$u.toast(res.msg)
  178. }
  179. })
  180. },
  181. getdata() {
  182. let option2 = {
  183. chatType: "singleChat", // 会话类型,设置为单聊。
  184. type: "channel", // 消息类型。
  185. to: this.user_other_no, // 接收消息对象的用户 ID。
  186. };
  187. let msg2 = new WebIM.message.create(option2);
  188. conn.send(msg2);
  189. let options = {
  190. // 对方的用户 ID 或者群组 ID 或聊天室 ID。
  191. targetId: this.user_other_no,
  192. // 每页期望获取的消息条数。取值范围为 [1,50],默认值为 20。
  193. pageSize: this.pageSize,
  194. // 查询的起始消息 ID。若该参数设置为 `-1`、`null` 或空字符串,从最新消息开始。
  195. cursor: -1,
  196. // 会话类型:(默认) `singleChat`:单聊;`groupChat`:群聊。
  197. chatType: "singleChat",
  198. // 消息搜索方向:(默认)`up`:按服务器收到消息的时间的逆序获取;`down`:按服务器收到消息的时间的正序获取。
  199. searchDirection: "up",
  200. };
  201. conn.getHistoryMessages(options).then((res) => {
  202. // 成功获取历史消息。
  203. console.log(res);
  204. if (res.isLast) {
  205. this.loadText = '已无更多数据';
  206. }
  207. this.list = res.messages.reverse()
  208. // console.log(this.list);
  209. this.$nextTick(() => {
  210. uni.pageScrollTo({
  211. scrollTop: 99999
  212. })
  213. })
  214. })
  215. .catch((e) => {
  216. // 获取失败。
  217. console.log('失败', e);
  218. });
  219. },
  220. toinfo(item, type) {
  221. if (type == 'pos' && item.ext.order.item_url) {
  222. uni.navigateTo({
  223. url: "/pagesB/details?id=" + item.ext.order.item_url
  224. })
  225. } else if (type == 'cand') {
  226. uni.navigateTo({
  227. url: "/pagesC/rencai-info?id=" + item.ext.order.item_url
  228. })
  229. } else if (type == 'order') {
  230. uni.navigateTo({
  231. url: "/pagesD/order-detail?id=" + item.ext.order.item_url
  232. })
  233. }
  234. }
  235. }
  236. }
  237. </script>
  238. <style lang="scss">
  239. .chat-pages {
  240. .chat-header1 {
  241. width: 702rpx;
  242. background: #FFFFFF;
  243. border-radius: 16rpx;
  244. position: sticky;
  245. left: 24rpx;
  246. // z-index: 20;
  247. margin: 10px auto;
  248. padding: 0 20rpx;
  249. .goutong-time1 {
  250. line-height: 80rpx;
  251. font-size: 24rpx;
  252. font-family: SFPro-Regular, SFPro;
  253. font-weight: 400;
  254. color: #777777;
  255. border-top: 2rpx solid #F0F0F0;
  256. }
  257. .zhiwei-text {
  258. font-size: 26rpx;
  259. font-family: PingFangSC-Regular, PingFang SC;
  260. font-weight: 400;
  261. color: #555555;
  262. padding-bottom: 20rpx;
  263. border-bottom: 2rpx solid #F0F0F0;
  264. }
  265. .zhiwei-title {
  266. font-size: 26rpx;
  267. font-family: PingFangSC-Regular, PingFang SC;
  268. font-weight: 400;
  269. color: #555555;
  270. margin-bottom: 20rpx;
  271. }
  272. .chat-label1 {
  273. padding: 8rpx 0 10rpx 0;
  274. text {
  275. margin-right: 10rpx;
  276. margin-bottom: 10rpx;
  277. line-height: 40rpx;
  278. background: #F3F3F3;
  279. border-radius: 4rpx;
  280. padding: 0 12rpx;
  281. font-size: 24rpx;
  282. font-family: PingFangSC-Regular, PingFang SC;
  283. font-weight: 400;
  284. color: #555555;
  285. }
  286. }
  287. .jingli1-box {
  288. font-size: 24rpx;
  289. font-family: PingFangSC-Regular, PingFang SC;
  290. font-weight: 400;
  291. color: #555555;
  292. margin-bottom: 20rpx;
  293. }
  294. .header1-top {
  295. padding: 24rpx 0 20rpx 0;
  296. text:frist-child {
  297. font-size: 32rpx;
  298. font-family: PingFangSC-Medium, PingFang SC;
  299. font-weight: 500;
  300. color: #222222;
  301. }
  302. text:last-child {
  303. font-size: 32rpx;
  304. font-family: DINAlternate-Bold, DINAlternate;
  305. font-weight: bold;
  306. color: #0C66C2;
  307. }
  308. }
  309. }
  310. .chat-item {
  311. padding: 0 24rpx;
  312. margin-bottom: 20rpx;
  313. .chat-item-box {
  314. .chat-text {
  315. border-radius: 20rpx;
  316. background-color: #fff;
  317. max-width: 100%;
  318. margin: 0 20rpx;
  319. font-size: 30rpx;
  320. font-family: PingFangSC-Regular, PingFang SC;
  321. font-weight: 400;
  322. color: #141414;
  323. padding: 20rpx 24rpx;
  324. }
  325. .user-img {
  326. width: 92rpx;
  327. height: 92rpx;
  328. border-radius: 100rpx;
  329. }
  330. }
  331. .chat-time {
  332. text-align: center;
  333. margin-bottom: 30rpx;
  334. font-size: 24rpx;
  335. font-family: PingFangSC-Regular, PingFang SC;
  336. font-weight: 400;
  337. color: #777777;
  338. }
  339. }
  340. .chat-header {
  341. width: 702rpx;
  342. background: #FFFFFF;
  343. border-radius: 16rpx;
  344. position: sticky;
  345. left: 24rpx;
  346. z-index: 20;
  347. margin: 10px auto;
  348. padding: 0 20rpx;
  349. .goutong-time {
  350. line-height: 80rpx;
  351. font-size: 24rpx;
  352. font-family: SFPro-Regular, SFPro;
  353. font-weight: 400;
  354. color: #777777;
  355. border-top: 2rpx solid #F0F0F0;
  356. }
  357. .chat-label {
  358. padding: 8rpx 0 10rpx 0;
  359. text {
  360. margin-right: 10rpx;
  361. margin-bottom: 10rpx;
  362. line-height: 40rpx;
  363. background: #F3F3F3;
  364. border-radius: 4rpx;
  365. padding: 0 12rpx;
  366. font-size: 24rpx;
  367. font-family: PingFangSC-Regular, PingFang SC;
  368. font-weight: 400;
  369. color: #555555;
  370. }
  371. }
  372. .jingli-box {
  373. margin-bottom: 12rpx;
  374. .img {
  375. width: 28rpx;
  376. height: 28rpx;
  377. }
  378. .text1 {
  379. font-size: 28rpx;
  380. font-family: PingFangSC-Regular, PingFang SC;
  381. font-weight: 400;
  382. color: #222222;
  383. margin: 0 12rpx;
  384. flex: 1;
  385. }
  386. .text2 {
  387. font-size: 22rpx;
  388. font-family: SFPro-Regular, SFPro;
  389. font-weight: 400;
  390. color: #888888;
  391. }
  392. }
  393. .header-top {
  394. height: 150rpx;
  395. .header-right {
  396. width: 96rpx;
  397. height: 96rpx;
  398. position: relative;
  399. .sex {
  400. position: absolute;
  401. bottom: 0;
  402. right: 4rpx;
  403. width: 20rpx;
  404. height: 20rpx;
  405. }
  406. .right-img {
  407. width: 96rpx;
  408. height: 96rpx;
  409. border-radius: 100rpx;
  410. }
  411. }
  412. .header-left {
  413. .text3 {
  414. font-size: 26rpx;
  415. font-family: SFPro-Regular, SFPro;
  416. font-weight: 400;
  417. color: #666666;
  418. margin-top: 10rpx;
  419. }
  420. .text1 {
  421. font-size: 36rpx;
  422. font-family: PingFangSC-Medium, PingFang SC;
  423. font-weight: 500;
  424. color: #222222;
  425. margin-right: 28rpx;
  426. }
  427. .text2 {
  428. font-size: 26rpx;
  429. font-family: PingFangSC-Regular, PingFang SC;
  430. font-weight: 400;
  431. color: #222222;
  432. }
  433. }
  434. }
  435. }
  436. .chat-navbar {
  437. flex: 1;
  438. // padding-left: 100rpx;
  439. text:first-child {
  440. font-size: 36rpx;
  441. font-family: PingFangSC-Medium, PingFang SC;
  442. font-weight: 500;
  443. color: #141414;
  444. }
  445. text:last-child {
  446. font-size: 22rpx;
  447. font-family: PingFangSC-Regular, PingFang SC;
  448. font-weight: 400;
  449. color: #777777;
  450. }
  451. }
  452. }
  453. page {
  454. background-color: #F3F3F3;
  455. }
  456. </style>