xiaoxi.vue 18 KB

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