xiaoxi.vue 17 KB

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