xiaoxi.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. <template>
  2. <view class="xiaoxi-pages">
  3. <view class="xiaoxi-header">
  4. <!-- <u-navbar :isBack="false" :border-bottom="false" :background="{background:'rgba(0,0,0,0)'}" :isFixed="false"> -->
  5. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true">
  6. <view slot="left" class="xiaoxi-tabs u-flex u-row-between" style="margin-left: -11rpx;">
  7. <view class="tabs-item u-flex-col u-col-center u-flex-1" :class="{'tabs-item1':current == 1}"
  8. @click="current = 1">
  9. <text>消息</text>
  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="current = 2">
  14. <text>通知</text>
  15. <text></text>
  16. </view>
  17. </view>
  18. </u-navbar>
  19. <view v-if="current == 1" class="tabs-header u-flex">
  20. <view class="u-flex tabs-header-item" :class="{'tabs-header-active' : tabs1 == index}"
  21. v-for="(item,index) in tabs1list" :key="index" @click="changetabs1(index)">
  22. <text>{{item}}</text>
  23. </view>
  24. </view>
  25. <view v-if="current == 2" class="tabs-header u-flex">
  26. <view class="u-flex tabs-header-item" :class="{'tabs-header-active' : tabs2 == index}"
  27. v-for="(item,index) in tabs2list" :key="index" @click="changetabs2(index)">
  28. <text>{{item}}</text>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="xiaoxi-list" v-if="current == 1">
  33. <view class="xiaoxi-item u-flex u-row-between" v-for="(item,index) in 10" :key="index">
  34. <view class="item-head">
  35. <u-badge absolute="true" type="error" :value="7" :offset="[0,0]"></u-badge>
  36. <image src="https://dummyimage.com/96x96" mode=""></image>
  37. </view>
  38. <view class="xiaoxi-right u-flex-1">
  39. <view class="right-top u-flex u-row-between">
  40. <text>高先生</text>
  41. <text class="u-line-1">上海彼时人力资源有限公司·猎头…</text>
  42. <text>04月8日</text>
  43. </view>
  44. <view class="right-down u-line-1">
  45. HI!关于贵公司Java这个职位,我这边有合…
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="tongzhi-list" v-if="current == 2">
  51. <view class="tongzhi-item" v-for="(item,index) in list" :key="index" @click="info2(item)">
  52. <view v-if="tabs2 == 0">
  53. <view class="tongzhi-header u-flex u-row-between">
  54. <view class="tongzhi-title u-flex">
  55. <text>{{item.title}}</text>
  56. <text v-if="item.is_view == 0"></text>
  57. </view>
  58. <view class="tongzhi-time">
  59. {{item.createtime}}
  60. </view>
  61. </view>
  62. <view class="tongzhi-tips">
  63. {{item.content}}
  64. </view>
  65. <view class="tongzhi-body">
  66. <view class="body-title u-flex">
  67. <text></text>
  68. <text>{{item.info.job.job_name}}</text>
  69. </view>
  70. <view class="body-name u-flex">
  71. <text></text>
  72. <text>{{item.info.resume.name}}</text>
  73. </view>
  74. <view class="body-address u-flex">
  75. <text class="text1">{{item.info.job.work_province}}·{{item.info.job.work_city}}</text>
  76. <text class="text2"></text>
  77. <text class="text1">{{item.info.job.experience_name}}</text>
  78. <text class="text2"></text>
  79. <text class="text1">{{item.info.job.education_name}}</text>
  80. </view>
  81. </view>
  82. </view>
  83. <!-- <view v-if="tabs2 == 1">
  84. <view class="tongzhi-header u-flex u-row-between">
  85. <view class="tongzhi-title u-flex">
  86. <text>{{item.title}}</text>
  87. <text v-if="item.is_view == 0"></text>
  88. </view>
  89. <view class="tongzhi-time">
  90. {{item.createtime}}
  91. </view>
  92. </view>
  93. <view class="tongzhi-tips">
  94. {{item.content}}
  95. </view>
  96. <view class="xitong-box" v-if="item.info.job_name">
  97. <view class="xitong-title u-flex">{{item.info.job_name}}</view>
  98. <view class="xitong-address u-flex">
  99. <text class="text1">{{item.info.work_city}}</text>
  100. <text class="text2"></text>
  101. <text class="text1">{{item.info.experience_name}}</text>
  102. <text class="text2"></text>
  103. <text class="text1">{{item.info.education_name}}</text>
  104. </view>
  105. </view>
  106. </view> -->
  107. <view v-if="tabs2 == 1">
  108. <view class="zixun-box">
  109. <view class="zixun-title">
  110. {{item.title}} {{item.createtime}}
  111. </view>
  112. <image :src="item.info.image" class="zixun-img" mode="aspectFill"></image>
  113. <view class="zixun-tips">
  114. {{item.content}}
  115. </view>
  116. </view>
  117. </view>
  118. <view class="tongzhi-down u-flex u-row-between">
  119. <text class="text">查看详情</text>
  120. <u-icon name="arrow-right" color="#0C66C2"></u-icon>
  121. </view>
  122. </view>
  123. </view>
  124. <view style="height: 70vh;display: flex;align-items: center;justify-content: center;" v-if="list.length == 0">
  125. <u-empty text="暂无数据" mode="list"></u-empty>
  126. </view>
  127. </view>
  128. </template>
  129. <script>
  130. import {get_list,view} from "@/units/inquire.js"
  131. export default {
  132. data() {
  133. return {
  134. current: 2,
  135. tabs1: 0,
  136. tabs1list: ['全部', '未读', '沟通中'],
  137. tabs2: 0,
  138. tabs2list: ['应聘通知', '资讯通知'],
  139. page: 1,
  140. total: 0,
  141. list: []
  142. }
  143. },
  144. onLoad() {
  145. this.getlist()
  146. },
  147. onReachBottom() {
  148. if (this.total != this.list.length) {
  149. this.page++
  150. this.getlist()
  151. }
  152. },
  153. methods: {
  154. info2(item) {
  155. view({
  156. id: item.id
  157. }).then(res => {
  158. item.is_view = 1
  159. })
  160. if (this.tabs2 == 0) {
  161. uni.navigateTo({
  162. url: "/pagesD/order-info?id=" + item.info.id
  163. })
  164. }
  165. // if (this.tabs2 == 1) {
  166. // if (item.source_type == 'job') {
  167. // uni.navigateTo({
  168. // url: "/pagesB/zhiwei-info2?id=" + item.info.id
  169. // })
  170. // } else {
  171. // uni.navigateTo({
  172. // url: "/pagesD/vip"
  173. // })
  174. // }
  175. // }
  176. if (this.tabs2 == 1) {
  177. uni.navigateTo({
  178. url: "/pagesD/zixun-info?id=" + item.info.id
  179. })
  180. }
  181. },
  182. changetabs2(index) {
  183. this.tabs2 = index
  184. this.page = 1
  185. this.total = 0
  186. this.list = []
  187. this.getlist()
  188. },
  189. changetabs1(index) {
  190. this.tabs1 = index
  191. this.page = 1
  192. this.total = 0
  193. this.list = []
  194. this.getlist()
  195. },
  196. getlist() {
  197. if (this.current == 1) {
  198. }
  199. if (this.current == 2) {
  200. get_list({
  201. page: this.page,
  202. type: {
  203. 0: 'order',
  204. // 1: 'system',
  205. 1: 'info'
  206. } [this.tabs2]
  207. }).then(res => {
  208. this.total = res.data.total
  209. this.list = this.list.concat(res.data.data)
  210. })
  211. }
  212. }
  213. }
  214. }
  215. </script>
  216. <style lang="scss" >
  217. .xiaoxi-pages {
  218. .tongzhi-list {
  219. padding: 1rpx 0;
  220. .tongzhi-item {
  221. margin: 20rpx auto;
  222. width: 702rpx;
  223. background: #FFFFFF;
  224. border-radius: 20rpx;
  225. padding: 0 24rpx;
  226. .xitong-box {
  227. width: 100%;
  228. background: rgba(243, 243, 243, 0.5);
  229. border-radius: 12rpx;
  230. padding: 24rpx;
  231. .xitong-address {
  232. .text1 {
  233. font-size: 26rpx;
  234. font-family: PingFangSC-Regular, PingFang SC;
  235. font-weight: 400;
  236. color: #666666;
  237. }
  238. .text2 {
  239. height: 20rpx;
  240. border: 2rpx solid #E5E5E5;
  241. margin: 0 16rpx;
  242. }
  243. }
  244. .xitong-title {
  245. font-size: 32rpx;
  246. font-family: PingFangSC-Regular, PingFang SC;
  247. font-weight: 400;
  248. color: #222222;
  249. margin-bottom: 20rpx;
  250. }
  251. }
  252. .zixun-box {
  253. .zixun-tips {
  254. font-size: 30rpx;
  255. font-family: PingFangSC-Regular, PingFang SC;
  256. font-weight: 400;
  257. color: #333333;
  258. padding: 24rpx 0;
  259. }
  260. .zixun-img {
  261. width: 100%;
  262. height: 284rpx;
  263. }
  264. .zixun-title {
  265. padding: 24rpx 0 20rpx 0;
  266. font-size: 24rpx;
  267. font-family: PingFangSC-Regular, PingFang SC;
  268. font-weight: 400;
  269. color: #888888;
  270. }
  271. }
  272. .tongzhi-down {
  273. height: 86rpx;
  274. border-top: 2rpx solid #F0F0F0;
  275. .text {
  276. font-size: 26rpx;
  277. font-family: PingFangSC-Regular, PingFang SC;
  278. font-weight: 400;
  279. color: #0C66C2;
  280. }
  281. }
  282. .tongzhi-body {
  283. background: rgba(243, 243, 243, 0.5);
  284. border-radius: 12rpx;
  285. padding: 20rpx;
  286. margin-bottom: 24rpx;
  287. .body-address {
  288. padding: 0 32rpx;
  289. .text2 {
  290. height: 20rpx;
  291. border: 2rpx solid #E5E5E5;
  292. margin: 0 14rpx;
  293. }
  294. .text1 {
  295. font-size: 26rpx;
  296. font-family: PingFangSC-Regular, PingFang SC;
  297. font-weight: 400;
  298. color: #666666;
  299. }
  300. }
  301. .body-name {
  302. margin-bottom: 20rpx;
  303. text:first-child {
  304. width: 12rpx;
  305. height: 12rpx;
  306. background: #0C66C2;
  307. border-radius: 100rpx;
  308. margin-right: 20rpx;
  309. }
  310. text:last-child {
  311. font-size: 32rpx;
  312. font-family: PingFangSC-Regular, PingFang SC;
  313. font-weight: 400;
  314. color: #222222;
  315. }
  316. }
  317. .body-title {
  318. margin-bottom: 28rpx;
  319. text:first-child {
  320. width: 12rpx;
  321. height: 12rpx;
  322. background: #131415;
  323. margin-right: 20rpx;
  324. border-radius: 100rpx;
  325. }
  326. text:last-child {
  327. font-size: 32rpx;
  328. font-family: PingFangSC-Regular, PingFang SC;
  329. font-weight: 400;
  330. color: #222222;
  331. }
  332. }
  333. }
  334. .tongzhi-tips {
  335. font-size: 28rpx;
  336. font-family: PingFangSC-Regular, PingFang SC;
  337. font-weight: 400;
  338. color: #666666;
  339. margin-bottom: 24rpx;
  340. }
  341. .tongzhi-header {
  342. height: 96rpx;
  343. .tongzhi-time {
  344. font-size: 24rpx;
  345. font-family: SFPro-Regular, SFPro;
  346. font-weight: 400;
  347. color: #666666;
  348. }
  349. .tongzhi-title {
  350. text:first-child {
  351. font-size: 32rpx;
  352. font-family: PingFangSC-Medium, PingFang SC;
  353. font-weight: 500;
  354. color: #222222;
  355. margin-right: 16rpx;
  356. }
  357. text:nth-child(2) {
  358. width: 12rpx;
  359. height: 12rpx;
  360. background: #F2413A;
  361. border-radius: 100rpx;
  362. }
  363. }
  364. }
  365. }
  366. }
  367. .xiaoxi-list {
  368. width: 702rpx;
  369. background: #FFFFFF;
  370. border-radius: 20rpx;
  371. margin: 20rpx auto;
  372. .xiaoxi-item {
  373. padding: 24rpx 20rpx;
  374. .xiaoxi-right {
  375. min-width: 1rpx;
  376. .right-down {
  377. font-size: 26rpx;
  378. font-family: PingFangSC-Regular, PingFang SC;
  379. font-weight: 400;
  380. color: #444444;
  381. }
  382. .right-top {
  383. margin-bottom: 18rpx;
  384. text:first-child {
  385. font-size: 30rpx;
  386. }
  387. text:nth-child(2) {
  388. font-size: 22rpx;
  389. font-family: PingFangSC-Regular, PingFang SC;
  390. font-weight: 400;
  391. color: #888888;
  392. margin: 0 8rpx;
  393. }
  394. text:last-child {
  395. font-size: 24rpx;
  396. font-family: SFPro-Regular, SFPro;
  397. font-weight: 400;
  398. color: #999999;
  399. }
  400. }
  401. }
  402. .item-head {
  403. width: 96rpx;
  404. height: 96rpx;
  405. border-radius: 100rpx;
  406. margin-right: 20rpx;
  407. position: relative;
  408. image {
  409. width: 96rpx;
  410. height: 96rpx;
  411. border-radius: 100rpx;
  412. }
  413. }
  414. }
  415. }
  416. .xiaoxi-header {
  417. position: sticky;
  418. top: 0;
  419. left: 0;
  420. width: 750rpx;
  421. z-index: 99;
  422. background: linear-gradient(180deg, #EDF6FF 0%, #F8FAFD 100%);
  423. .tabs-header {
  424. height: 88rpx;
  425. padding: 0 8rpx;
  426. .tabs-header-item {
  427. margin: 0 24rpx;
  428. text {
  429. font-size: 26rpx;
  430. font-family: PingFangSC-Regular, PingFang SC;
  431. font-weight: 400;
  432. color: #777777;
  433. }
  434. }
  435. .tabs-header-active {
  436. text {
  437. color: #0C66C2;
  438. }
  439. }
  440. }
  441. .xiaoxi-tabs {
  442. width: 250rpx;
  443. .tabs-item {
  444. text:first-child {
  445. font-size: 32rpx;
  446. font-family: PingFangSC-Medium, PingFang SC;
  447. font-weight: 500;
  448. color: #777777;
  449. position: relative;
  450. z-index: 1;
  451. }
  452. text:last-child {
  453. width: 76rpx;
  454. height: 12rpx;
  455. border-radius: 100rpx;
  456. margin-top: -14rpx;
  457. }
  458. }
  459. .tabs-item1 {
  460. text:first-child {
  461. font-size: 36rpx;
  462. font-family: PingFangSC-Medium, PingFang SC;
  463. font-weight: 500;
  464. color: #222222;
  465. }
  466. text:last-child {
  467. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  468. }
  469. }
  470. }
  471. }
  472. }
  473. page {
  474. background-color: #F3F3F3;
  475. }
  476. </style>
  477. <style scoped>
  478. ::v-deep .u-navbar__content__left{
  479. left: -11rpx !important;
  480. }
  481. </style>