xiaoxi.vue 17 KB

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