xiaoxi.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. <template>
  2. <view class="xiaoxi-pages">
  3. <view class="xiaoxi-header">
  4. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true">
  5. <view slot="left" class="xiaoxi-tabs u-flex u-row-between" style="margin-left: -11rpx;">
  6. <view class="tabs-item u-flex-col u-col-center u-flex-1" :class="{'tabs-item1':current == 1}"
  7. @click="change(1)">
  8. <text>消息</text>
  9. <text></text>
  10. </view>
  11. <view class="tabs-item u-flex-col u-col-center u-flex-1" :class="{'tabs-item1':current == 2}"
  12. @click="change(2)">
  13. <text>通知</text>
  14. <text></text>
  15. </view>
  16. </view>
  17. </u-navbar>
  18. <view v-if="current == 1" class="tabs-header u-flex">
  19. <view class="u-flex tabs-header-item" :class="{'tabs-header-active' : tabs1 == 0}"
  20. @click="changetabs1(0)">
  21. <text>全部</text>
  22. </view>
  23. <view class="u-flex tabs-header-item" :class="{'tabs-header-active' : tabs1 == 1}"
  24. @click="changetabs1(1)">
  25. <u-badge :is-dot="true" type="error" v-if="read"></u-badge>
  26. <text>未读</text>
  27. </view>
  28. </view>
  29. <view v-if="current == 2" class="tabs-header u-flex">
  30. <view class="u-flex tabs-header-item" :class="{'tabs-header-active' : tabs2 == index}"
  31. v-for="(item,index) in tabs2list" :key="index" @click="changetabs2(index)" v-if="index != 1">
  32. <text>{{item}}</text>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="xiaoxi-list" v-if="current == 1">
  37. <view class="xiaoxi-item u-flex u-row-between" v-for="(item,index) in list" :key="index"
  38. @click="tochat(index)">
  39. <view class="item-head">
  40. <u-badge type="error" :count="item.unReadCount" :offset="[0,0]"></u-badge>
  41. <image :src="item.user.avatar" mode=""></image>
  42. </view>
  43. <view class="xiaoxi-right u-flex-1">
  44. <view class="right-top u-flex u-row-between">
  45. <text>{{item.user.username}}</text>
  46. <text class="u-line-1">{{item.user.company_name || '' }}·{{item.user.type || ''}}</text>
  47. <text>{{ renderTime(item.lastMessage.time)}}</text>
  48. </view>
  49. <view class="right-down u-line-1" v-if="item.lastMessage && item.lastMessage.type == 'txt'">
  50. {{ item.lastMessage.msg }}
  51. </view>
  52. <view class="right-down u-line-1" v-if="item.lastMessage && item.lastMessage.type == 'img'">
  53. [图片]
  54. </view>
  55. <view class="right-down u-line-1" v-if="item.lastMessage && item.lastMessage.type == 'audio'">
  56. [语音]
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="tongzhi-list" v-if="current == 2">
  62. <view class="tongzhi-item" v-for="(item,index) in list" :key="index" @click="info2(item)">
  63. <view v-if="tabs2 == 0">
  64. <view class="tongzhi-header u-flex u-row-between">
  65. <view class="tongzhi-title u-flex">
  66. <text>{{item.title}}</text>
  67. <text v-if="item.is_view == 0"></text>
  68. </view>
  69. <view class="tongzhi-time">
  70. {{item.createtime}}
  71. </view>
  72. </view>
  73. <view class="tongzhi-tips">
  74. {{item.content}}
  75. </view>
  76. <view class="tongzhi-body">
  77. <view class="body-title u-flex">
  78. <text></text>
  79. <text>{{item.info.job.job_name}}</text>
  80. </view>
  81. <view class="body-name u-flex">
  82. <text></text>
  83. <text class="name-text">{{item.info.company.name || ''}}</text>
  84. <text class="name-text"
  85. style="margin-left: 5rpx;">{{item.info.company.category_name || ''}}</text>
  86. </view>
  87. <view class="body-address u-flex">
  88. <text class="text1">{{item.info.job.work_province}}·{{item.info.job.work_city}}</text>
  89. <text class="text2"></text>
  90. <text class="text1">{{item.info.job.experience_name}}</text>
  91. <text class="text2"></text>
  92. <text class="text1">{{item.info.job.education_name}}</text>
  93. </view>
  94. </view>
  95. </view>
  96. <view v-if="tabs2 == 1">
  97. <view class="tongzhi-header u-flex u-row-between">
  98. <view class="tongzhi-title u-flex">
  99. <text>{{item.title}}</text>
  100. <text v-if="item.is_view == 0"></text>
  101. </view>
  102. <view class="tongzhi-time">
  103. {{item.createtime}}
  104. </view>
  105. </view>
  106. <view class="tongzhi-tips">
  107. {{item.content}}
  108. </view>
  109. <view class="xitong-box" v-if="item.info.job_name">
  110. <view class="xitong-title u-flex">{{item.info.job_name}}</view>
  111. <view class="xitong-address u-flex">
  112. <text class="text1">{{item.info.work_city}}</text>
  113. <text class="text2"></text>
  114. <text class="text1">{{item.info.experience_name}}</text>
  115. <text class="text2"></text>
  116. <text class="text1">{{item.info.education_name}}</text>
  117. </view>
  118. </view>
  119. </view>
  120. <view v-if="tabs2 == 2">
  121. <view class="zixun-box">
  122. <view class="zixun-title">
  123. {{item.title}} {{item.createtime}}
  124. </view>
  125. <image :src="item.info.image" class="zixun-img" mode="aspectFill"></image>
  126. <view class="zixun-tips">
  127. {{item.content}}
  128. </view>
  129. </view>
  130. </view>
  131. <view class="tongzhi-down u-flex u-row-between">
  132. <text class="text">查看详情</text>
  133. <u-icon name="arrow-right" color="#0C66C2"></u-icon>
  134. </view>
  135. </view>
  136. </view>
  137. <view class="" style="border: 40rpx;"></view>
  138. <view style="height: 70vh;" v-if="list.length == 0">
  139. <u-empty text="暂无数据" mode="list"></u-empty>
  140. </view>
  141. </view>
  142. </template>
  143. <script>
  144. import {
  145. conn
  146. } from '@/utils/WebIM';
  147. import {
  148. renderTime
  149. } from '@/utils/index'
  150. import {
  151. get_list,
  152. notification,
  153. getEmchatUsersData
  154. } from "@/units/inquire.js"
  155. export default {
  156. data() {
  157. return {
  158. current: 1,
  159. tabs1: 0,
  160. tabs1list: ['全部', '未读'],
  161. tabs2: 0,
  162. tabs2list: ['订单通知', '系统通知', '资讯通知'],
  163. page: 1,
  164. total: 0,
  165. list: [],
  166. read: false,
  167. renderTime,
  168. }
  169. },
  170. onLoad() {},
  171. onShow() {
  172. this.getlist()
  173. },
  174. onReachBottom() {
  175. if (this.total != this.list.length) {
  176. this.page++
  177. this.getlist()
  178. }
  179. },
  180. methods: {
  181. change(index) {
  182. this.current = index
  183. this.list = []
  184. this.tabs2 = 0,
  185. this.tabs1 = 0
  186. this.getlist()
  187. },
  188. tochat(index) {
  189. uni.navigateTo({
  190. url: "/pagesC/chat?user_no=" + this.list[index].user.user_no
  191. })
  192. },
  193. info2(item) {
  194. notification({
  195. id: item.id
  196. }).then(res => {
  197. item.is_view = 1
  198. })
  199. if (this.tabs2 == 0) {
  200. uni.navigateTo({
  201. url: "/pagesD/order-info?id=" + item.info.id
  202. })
  203. }
  204. if (this.tabs2 == 1) {
  205. if (item.source_type == 'job') {
  206. uni.navigateTo({
  207. url: "/pagesB/zhiwei-info2?id=" + item.info.id
  208. })
  209. }
  210. }
  211. if (this.tabs2 == 2) {
  212. uni.navigateTo({
  213. url: "/pagesD/zixun-info?id=" + item.info.id
  214. })
  215. }
  216. },
  217. handlecurrent(index) {
  218. this.current = index
  219. this.page = 1
  220. this.total = 0
  221. this.list = []
  222. this.getlist()
  223. },
  224. changetabs1(index) {
  225. this.tabs1 = index
  226. this.page = 1
  227. this.total = 0
  228. this.list = []
  229. this.getlist()
  230. },
  231. changetabs2(index) {
  232. this.tabs2 = index
  233. this.page = 1
  234. this.total = 0
  235. this.list = []
  236. this.getlist()
  237. },
  238. getlist() {
  239. let that = this
  240. if (this.current == 1) {
  241. const options = {
  242. pageSize: 50,
  243. cursor: '',
  244. }
  245. conn.getServerConversations(options).then((res) => {
  246. that.list = res.data.conversations
  247. console.log(that.list);
  248. let list = []
  249. if (that.tabs1 == 1) {
  250. for (var i = 0; i < that.list.length; i++) {
  251. if (that.list[i].unReadCount > 0) {
  252. list.push(that.list[i])
  253. }
  254. }
  255. that.list = list
  256. }
  257. let ids = ''
  258. if (that.list.length > 0) {
  259. for (var i = 0; i < that.list.length; i++) {
  260. ids += that.list[i].conversationId + ','
  261. }
  262. that.getData(ids)
  263. }
  264. }).catch((error) => {
  265. console.log('失败', error);
  266. })
  267. }
  268. if (this.current == 2) {
  269. get_list({
  270. page: this.page,
  271. type: {
  272. 0: 'order',
  273. 1: 'system',
  274. 2: 'info'
  275. } [this.tabs2]
  276. }).then(res => {
  277. this.total = res.data.total
  278. this.list = this.list.concat(res.data.data)
  279. })
  280. }
  281. },
  282. getData(ids) {
  283. let that = this
  284. ids = ids.slice(0, -1)
  285. getEmchatUsersData({
  286. user_no: ids,
  287. }).then((res) => {
  288. if (res.code == 1) {
  289. for (var i = 0; i < that.list.length; i++) {
  290. that.$set(that.list[i], 'user', res.data[i])
  291. }
  292. } else {
  293. that.$u.toast(res.msg)
  294. }
  295. })
  296. },
  297. }
  298. }
  299. </script>
  300. <style lang="scss">
  301. .xiaoxi-pages {
  302. .tongzhi-list {
  303. padding: 1rpx 0;
  304. .tongzhi-item {
  305. margin: 20rpx auto;
  306. width: 702rpx;
  307. background: #FFFFFF;
  308. border-radius: 20rpx;
  309. padding: 0 24rpx;
  310. .xitong-box {
  311. width: 100%;
  312. background: rgba(243, 243, 243, 0.5);
  313. border-radius: 12rpx;
  314. padding: 24rpx;
  315. .xitong-address {
  316. .text1 {
  317. font-size: 26rpx;
  318. font-family: PingFangSC-Regular, PingFang SC;
  319. font-weight: 400;
  320. color: #666666;
  321. }
  322. .text2 {
  323. height: 20rpx;
  324. border: 2rpx solid #E5E5E5;
  325. margin: 0 16rpx;
  326. }
  327. }
  328. .xitong-title {
  329. font-size: 32rpx;
  330. font-family: PingFangSC-Regular, PingFang SC;
  331. font-weight: 400;
  332. color: #222222;
  333. margin-bottom: 20rpx;
  334. }
  335. }
  336. .zixun-box {
  337. .zixun-tips {
  338. font-size: 30rpx;
  339. font-family: PingFangSC-Regular, PingFang SC;
  340. font-weight: 400;
  341. color: #333333;
  342. padding: 24rpx 0;
  343. }
  344. .zixun-img {
  345. width: 100%;
  346. height: 284rpx;
  347. }
  348. .zixun-title {
  349. padding: 24rpx 0 20rpx 0;
  350. font-size: 24rpx;
  351. font-family: PingFangSC-Regular, PingFang SC;
  352. font-weight: 400;
  353. color: #888888;
  354. }
  355. }
  356. .tongzhi-down {
  357. height: 86rpx;
  358. border-top: 2rpx solid #F0F0F0;
  359. .text {
  360. font-size: 26rpx;
  361. font-family: PingFangSC-Regular, PingFang SC;
  362. font-weight: 400;
  363. color: #0C66C2;
  364. }
  365. }
  366. .tongzhi-body {
  367. background: rgba(243, 243, 243, 0.5);
  368. border-radius: 12rpx;
  369. padding: 20rpx;
  370. margin-bottom: 24rpx;
  371. .body-address {
  372. padding: 0 32rpx;
  373. .text2 {
  374. height: 20rpx;
  375. border: 2rpx solid #E5E5E5;
  376. margin: 0 14rpx;
  377. }
  378. .text1 {
  379. font-size: 26rpx;
  380. font-family: PingFangSC-Regular, PingFang SC;
  381. font-weight: 400;
  382. color: #666666;
  383. }
  384. }
  385. .body-name {
  386. margin-bottom: 20rpx;
  387. text:first-child {
  388. width: 12rpx;
  389. height: 12rpx;
  390. background: #0C66C2;
  391. border-radius: 100rpx;
  392. margin-right: 20rpx;
  393. }
  394. text :nth-child(2) {
  395. width: 220rpx;
  396. overflow: hidden;
  397. white-space: nowrap;
  398. text-overflow: ellipsis;
  399. font-size: 24rpx;
  400. font-family: PingFangSC, PingFang SC;
  401. font-weight: 400;
  402. color: #555555;
  403. }
  404. text:last-child {
  405. font-size: 24rpx;
  406. font-family: PingFangSC, PingFang SC;
  407. font-weight: 400;
  408. color: #555555;
  409. }
  410. }
  411. .body-title {
  412. margin-bottom: 28rpx;
  413. text:first-child {
  414. width: 12rpx;
  415. height: 12rpx;
  416. background: #131415;
  417. margin-right: 20rpx;
  418. border-radius: 100rpx;
  419. }
  420. text:last-child {
  421. font-size: 32rpx;
  422. font-family: PingFangSC-Regular, PingFang SC;
  423. font-weight: 400;
  424. color: #222222;
  425. }
  426. }
  427. }
  428. .tongzhi-tips {
  429. font-size: 28rpx;
  430. font-family: PingFangSC-Regular, PingFang SC;
  431. font-weight: 400;
  432. color: #666666;
  433. margin-bottom: 24rpx;
  434. }
  435. .tongzhi-header {
  436. height: 96rpx;
  437. .tongzhi-time {
  438. font-size: 24rpx;
  439. font-family: SFPro-Regular, SFPro;
  440. font-weight: 400;
  441. color: #666666;
  442. }
  443. .tongzhi-title {
  444. text:first-child {
  445. font-size: 32rpx;
  446. font-family: PingFangSC-Medium, PingFang SC;
  447. font-weight: 500;
  448. color: #222222;
  449. margin-right: 16rpx;
  450. }
  451. text:nth-child(2) {
  452. width: 12rpx;
  453. height: 12rpx;
  454. background: #F2413A;
  455. border-radius: 100rpx;
  456. }
  457. }
  458. }
  459. }
  460. }
  461. .xiaoxi-list {
  462. width: 702rpx;
  463. background: #FFFFFF;
  464. border-radius: 20rpx;
  465. margin: 20rpx auto;
  466. .xiaoxi-item {
  467. padding: 24rpx 20rpx;
  468. .xiaoxi-right {
  469. min-width: 1rpx;
  470. .right-down {
  471. font-size: 26rpx;
  472. font-family: PingFangSC-Regular, PingFang SC;
  473. font-weight: 400;
  474. color: #444444;
  475. }
  476. .right-top {
  477. margin-bottom: 18rpx;
  478. text:first-child {
  479. font-size: 30rpx;
  480. }
  481. text:nth-child(2) {
  482. font-size: 22rpx;
  483. font-family: PingFangSC-Regular, PingFang SC;
  484. font-weight: 400;
  485. color: #888888;
  486. margin: 0 8rpx;
  487. }
  488. text:last-child {
  489. font-size: 24rpx;
  490. font-family: SFPro-Regular, SFPro;
  491. font-weight: 400;
  492. color: #999999;
  493. }
  494. }
  495. }
  496. .item-head {
  497. width: 96rpx;
  498. height: 96rpx;
  499. border-radius: 100rpx;
  500. margin-right: 20rpx;
  501. position: relative;
  502. image {
  503. width: 96rpx;
  504. height: 96rpx;
  505. border-radius: 100rpx;
  506. }
  507. }
  508. }
  509. }
  510. .xiaoxi-header {
  511. position: sticky;
  512. top: 0;
  513. left: 0;
  514. width: 750rpx;
  515. z-index: 99;
  516. background: linear-gradient(180deg, #EDF6FF 0%, #F8FAFD 100%);
  517. .tabs-header {
  518. height: 88rpx;
  519. padding: 0 8rpx;
  520. .tabs-header-item {
  521. margin: 0 24rpx;
  522. text {
  523. font-size: 26rpx;
  524. font-family: PingFangSC-Regular, PingFang SC;
  525. font-weight: 400;
  526. color: #777777;
  527. }
  528. }
  529. .tabs-header-active {
  530. text {
  531. color: #0C66C2;
  532. }
  533. }
  534. }
  535. .xiaoxi-tabs {
  536. width: 250rpx;
  537. .tabs-item {
  538. text:first-child {
  539. font-size: 32rpx;
  540. font-family: PingFangSC-Medium, PingFang SC;
  541. font-weight: 500;
  542. color: #777777;
  543. position: relative;
  544. z-index: 1;
  545. }
  546. text:last-child {
  547. width: 76rpx;
  548. height: 12rpx;
  549. border-radius: 100rpx;
  550. margin-top: -14rpx;
  551. }
  552. }
  553. .tabs-item1 {
  554. text:first-child {
  555. font-size: 36rpx;
  556. font-family: PingFangSC-Medium, PingFang SC;
  557. font-weight: 500;
  558. color: #222222;
  559. }
  560. text:last-child {
  561. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  562. }
  563. }
  564. }
  565. }
  566. }
  567. page {
  568. background-color: #F3F3F3;
  569. }
  570. </style>