xiaoxi.vue 15 KB

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