xiaoxi.vue 15 KB

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