demand.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. <template>
  2. <view class="content">
  3. <view class="search">
  4. <u-input v-model="serach_value" type="text" :border="true" placeholder="热搜榜单" shape="circle"
  5. prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399">
  6. <template slot="suffix">
  7. <view>搜索</view>
  8. </template>
  9. </u-input>
  10. </view>
  11. <view class="box hflex acenter jbetween">
  12. <block v-for="(item,index) in tabs" :key="index">
  13. <view class="vflex acenter jcenter" @click="toTab(item.url)">
  14. <image :src="item.src" class="tab_img"></image>
  15. <view class="tab_text">{{item.text}}</view>
  16. </view>
  17. </block>
  18. </view>
  19. <view class="box1">
  20. <view class="hflex acenter jbetween box1_top">
  21. <view class="hflex acenter">
  22. <block v-for="(item,index) in tabs2" :key="index">
  23. <view class="tabs_item" :class="tab_active == item.id? 'tabs_active' : ''" @click="changeTab(item.id)">{{item.text}}</view>
  24. </block>
  25. </view>
  26. <view class="screen hflex acenter jcenter" @click="open">
  27. <view class="screen_text">筛选</view>
  28. <u-icon name="arrow-down-fill" color="#666666" size="6"></u-icon>
  29. </view>
  30. </view>
  31. <view class="list" v-if="tab_active == 0">
  32. <block v-for="(item,index) in pageList" :key="index">
  33. <view class="list_item">
  34. <view class="hflex acenter jbetween">
  35. <view class="item_title">{{item.title}}</view>
  36. <view class="item_blue">{{item.salary}}·{{item.monthly}}薪</view>
  37. </view>
  38. <view class="hflex acenter" style="padding: 20rpx 0 24rpx;">
  39. <view class="item_box">{{item.city}}</view>
  40. <view class="item_box">{{item.education}}</view>
  41. <view class="item_box">{{item.experience}}</view>
  42. </view>
  43. <view class="item_name">{{item.company_name}}</view>
  44. <view class="hflex acenter jbetween" style="padding-top: 16rpx;">
  45. <view class="hflex acenter">
  46. <image class="item_avatar" :src="item.user.avatar"></image>
  47. <view class="user_name">{{item.user.position}}·{{item.user.name}}</view>
  48. </view>
  49. <view class="user_right">{{item.user.city}}·{{item.user.area}}</view>
  50. </view>
  51. </view>
  52. </block>
  53. </view>
  54. <view class="list" v-if="tab_active == 1">
  55. <block v-for="(item,index) in pageList" :key="index">
  56. <view class="list_item hflex jbetween">
  57. <view class="hflex">
  58. <image class="item_avatar1" :src="item.avatar"></image>
  59. <view class="item_right1 vflex">
  60. <u--text class="item_title" mode="name" :text="item.name" format="encrypt"></u--text>
  61. <view class="hflex acenter">
  62. <view class="text_style1">{{item.city}}</view>
  63. <view style="padding: 0 8rpx;">|</view>
  64. <view class="text_style1">{{item.age}}</view>
  65. <view style="padding: 0 8rpx;">|</view>
  66. <view class="text_style1">{{item.year}}</view>
  67. <view style="padding: 0 8rpx;">|</view>
  68. <view class="text_style1">{{item.education}}</view>
  69. </view>
  70. <view class="item_box1 hflex acenter">应聘岗位<view style="padding: 0 8rpx;">|</view>{{item.postion}}</view>
  71. </view>
  72. </view>
  73. <view class="item_btn1">打招呼</view>
  74. </view>
  75. </block>
  76. </view>
  77. </view>
  78. <u-popup :show="show" mode="bottom" :round="20" :closeable="true" @close="close" @open="open">
  79. <view class="popup">
  80. <view class="popup_title">筛选</view>
  81. <view class="popup_label">薪资待遇<span class="subtitle">(单选)</span></view>
  82. <view class="hflex acenter fwrap">
  83. <block v-for="(item,index) in salaryList" :key="index">
  84. <view class="popup_box" :class="index == salary_active ? 'box_active' : ''" @click="changgeSalary(index)">{{item.value}}</view>
  85. </block>
  86. </view>
  87. <view class="popup_label">学历要求</view>
  88. <view class="hflex acenter fwrap">
  89. <block v-for="(item,index) in educationList" :key="index">
  90. <view class="popup_box" :class="item.id == education_active ? 'box_active' : ''" @click="changgeEdu(item.id)">{{item.value}}</view>
  91. </block>
  92. </view>
  93. <view class="popup_bottom hflex acenter jbetween">
  94. <view class="reset_btn" @click="reset">重置</view>
  95. <view class="reset_btn confirm_btn" @click="confirm">确认</view>
  96. </view>
  97. </view>
  98. </u-popup>
  99. <u-modal :show="first_show" :closeOnClickOverlay="true" :showConfirmButton="false">
  100. <view class="popup1">
  101. <view class="popup1_title">Hello</view>
  102. <view class="popup1_subtitle">欢迎进入此页</view>
  103. <view class="popup1_line"></view>
  104. <view class="popup1_text">此项内容<span style="color: #516EFF;">{{is_free}}</span>使用</view>
  105. <view class="popup1_btn" @click="close">我知道了</view>
  106. </view>
  107. </u-modal>
  108. </view>
  109. </template>
  110. <script>
  111. import $api from '@/static/js/api.js'
  112. var that = ''
  113. export default {
  114. data() {
  115. return {
  116. serach_value: '',
  117. tabs: [
  118. {
  119. url: '/page_index/pages/demand/publish',
  120. src: '/static/images/index/demand/tab1.png',
  121. text: '发布应聘',
  122. },
  123. {
  124. url: '/page_index/pages/demand/delivery',
  125. src: '/static/images/index/demand/tab2.png',
  126. text: '投递记录',
  127. },
  128. {
  129. url: '/page_index/pages/demand/collect',
  130. src: '/static/images/index/demand/tab3.png',
  131. text: '我的收藏',
  132. }
  133. ],
  134. tabs2: [
  135. {
  136. id: 0,
  137. text: '招聘信息'
  138. },
  139. {
  140. id: 1,
  141. text: '应聘信息'
  142. }
  143. ],
  144. tab_active: 0,
  145. pageList: [
  146. {
  147. id: 0,
  148. title: '船舶设计师',
  149. salary: '13-15K',
  150. monthly: '13',
  151. city: '北京',
  152. education: '本科',
  153. experience: '经验不限',
  154. company_name: '北京文化旅游产业发展集团有限公司',
  155. user: {
  156. avatar: '/static/images/mine/avatar1.jpg',
  157. name: '江女士',
  158. position: '行政总监',
  159. city: '北京市',
  160. area: '东城区',
  161. },
  162. avatar: '/static/images/mine/avatar1.jpg',
  163. name: '张三',
  164. age: '27',
  165. year: '5年',
  166. postion: '船舶工程师',
  167. },
  168. {
  169. id: 1,
  170. title: '船舶设计师',
  171. salary: '13-15K',
  172. monthly: '13',
  173. city: '北京',
  174. education: '本科',
  175. experience: '经验不限',
  176. company_name: '北京文化旅游产业发展集团有限公司',
  177. user: {
  178. avatar: '/static/images/mine/avatar2.jpg',
  179. name: '江女士',
  180. position: '行政总监',
  181. city: '北京市',
  182. area: '东城区',
  183. },
  184. avatar: '/static/images/mine/avatar2.jpg',
  185. name: '李四',
  186. age: '27',
  187. year: '5年',
  188. postion: '船舶工程师',
  189. }
  190. ],
  191. salaryList: [
  192. {
  193. id: 0,
  194. value: '不限'
  195. },
  196. {
  197. id: 1,
  198. value: '4k以下'
  199. },
  200. {
  201. id: 2,
  202. value: '4k-6k'
  203. },
  204. {
  205. id: 3,
  206. value: '6k-8k'
  207. },
  208. {
  209. id: 4,
  210. value: '8k-12k'
  211. },
  212. {
  213. id: 5,
  214. value: '12k以上'
  215. }
  216. ],
  217. educationList: [
  218. {
  219. id: 0,
  220. value: '不限'
  221. },
  222. {
  223. id: 1,
  224. value: '初中及以下'
  225. },
  226. {
  227. id: 2,
  228. value: '中专/中技'
  229. },
  230. {
  231. id: 3,
  232. value: '高中'
  233. },
  234. {
  235. id: 4,
  236. value: '大专'
  237. },
  238. {
  239. id: 5,
  240. value: '本科'
  241. },
  242. {
  243. id: 6,
  244. value: '硕士'
  245. },
  246. {
  247. id: 7,
  248. value: '博士'
  249. }
  250. ],
  251. show: false,
  252. salary_active: -1,
  253. education_active: -1,
  254. is_first: false,
  255. first_show: false,
  256. is_free: '免费'
  257. }
  258. },
  259. onLoad() {
  260. that = this
  261. if(that.is_first) {
  262. that.first_show = true
  263. }
  264. },
  265. methods: {
  266. // 点击tabs
  267. toTab(url) {
  268. $api.jump(url)
  269. },
  270. // 切换tabs
  271. changeTab(id) {
  272. that.tab_active = id
  273. },
  274. // 打开弹出层
  275. open() {
  276. that.show = true
  277. },
  278. // 关闭弹出层
  279. close() {
  280. that.first_show = false
  281. that.show = false
  282. },
  283. // 选择薪资待遇
  284. changgeSalary(index) {
  285. console.log(index);
  286. that.salary_active = index
  287. },
  288. // 选择学历要求
  289. changgeEdu(id) {
  290. that.education_active = id
  291. },
  292. // 重置按钮
  293. reset() {
  294. that.salary_active = -1
  295. that.education_active = -1
  296. },
  297. // 确认按钮
  298. confirm() {
  299. that.close()
  300. }
  301. },
  302. }
  303. </script>
  304. <style lang="scss" scoped>
  305. .content::v-deep {
  306. position: relative;
  307. background: #EEF1F8;
  308. padding: 0 30rpx;
  309. .search {
  310. width: 100%;
  311. height: 88rpx;
  312. box-sizing: border-box;
  313. padding: 12rpx 30rpx;
  314. .u-input {
  315. background-color: #fff;
  316. height: 64rpx;
  317. padding: 0 0 0 18rpx !important;
  318. border: 1rpx solid #506Dff;
  319. margin-bottom: 12rpx;
  320. }
  321. .u-input__content__subfix-icon {
  322. width: 128rpx;
  323. height: 64rpx;
  324. background-color: #506Dff;
  325. border-radius: 32rpx;
  326. color: #fff;
  327. font-size: 28rpx;
  328. text-align: center;
  329. line-height: 64rpx;
  330. }
  331. }
  332. .box {
  333. width: 100%;
  334. background: #FFFFFF;
  335. border-radius: 20rpx;
  336. box-sizing: border-box;
  337. padding: 16rpx 60rpx 30rpx;
  338. margin-top: 24rpx;
  339. .tab_img {
  340. width: 84rpx;
  341. height: 84rpx;
  342. margin-bottom: 8rpx;
  343. }
  344. .tab_text {
  345. font-size: 24rpx;
  346. font-weight: 400;
  347. color: #444444;
  348. }
  349. }
  350. .box1 {
  351. width: 100%;
  352. background: #FFFFFF;
  353. border-radius: 20rpx;
  354. box-sizing: border-box;
  355. padding: 28rpx 20rpx;
  356. margin-top: 24rpx;
  357. .box1_top {
  358. width: 100%;
  359. padding-bottom: 12rpx;
  360. // border-bottom: 1rpx solid #F4F4F4;
  361. .tabs_item {
  362. font-size: 32rpx;
  363. font-weight: 400;
  364. color: #666666;
  365. margin-right: 52rpx;
  366. }
  367. .tabs_active {
  368. font-size: 32rpx;
  369. font-weight: 500;
  370. color: #222222;
  371. position: relative;
  372. }
  373. .tabs_active::before {
  374. content: '';
  375. position: absolute;
  376. width: 88rpx;
  377. height: 16rpx;
  378. background: linear-gradient(270deg, #FFFFFF 0%, #506DFF 100%);
  379. border-radius: 10rpx;
  380. bottom: 1rpx;
  381. left: 1rpx;
  382. opacity: 0.8;
  383. }
  384. .screen {
  385. width: 92rpx;
  386. height: 40rpx;
  387. background: #F3F3F3;
  388. border-radius: 4rpx;
  389. .screen_text {
  390. font-size: 24rpx;
  391. color: #666666;
  392. margin-right: 8rpx;
  393. }
  394. }
  395. }
  396. .list {
  397. width: 100%;
  398. .list_item {
  399. width: 100%;
  400. padding: 28rpx 0 20rpx;
  401. border-top: 1rpx solid #F4F4F4;
  402. .item_title {
  403. font-size: 32rpx;
  404. font-weight: 600;
  405. color: #222222;
  406. }
  407. .item_blue {
  408. font-size: 32rpx;
  409. font-weight: bold;
  410. color: #506DFF;
  411. }
  412. .item_box {
  413. height: 40rpx;
  414. background: #F0F2F6;
  415. border-radius: 2px;
  416. box-sizing: border-box;
  417. padding: 4rpx 18rpx;
  418. font-size: 22rpx;
  419. font-weight: 400;
  420. color: #444444;
  421. margin-right: 20rpx;
  422. }
  423. .item_name {
  424. font-size: 24rpx;
  425. font-weight: 400;
  426. color: #666666;
  427. }
  428. .item_avatar {
  429. width: 40rpx;
  430. height: 40rpx;
  431. border-radius: 50%;
  432. margin-right: 12rpx;
  433. }
  434. .item_avatar1 {
  435. width: 88rpx;
  436. height: 88rpx;
  437. border-radius: 50%;
  438. margin-right: 20rpx;
  439. }
  440. .item_right1 {
  441. }
  442. .text_style1 {
  443. font-size: 22rpx;
  444. font-weight: 400;
  445. color: #666666;
  446. padding: 12rpx 0;
  447. }
  448. .item_box1 {
  449. margin-top: 8rpx;
  450. background: #EDF0FF;
  451. border-radius: 8rpx;
  452. box-sizing: border-box;
  453. padding: 4rpx 16rpx;
  454. font-size: 24rpx;
  455. font-weight: 400;
  456. color: #506DFF;
  457. }
  458. .item_btn1 {
  459. width: 140rpx;
  460. height: 52rpx;
  461. background: #F1F3FF;
  462. border-radius: 28rpx;
  463. font-size: 26rpx;
  464. font-weight: 500;
  465. color: #506DFF;
  466. line-height: 52rpx;
  467. text-align: center;
  468. }
  469. .user_name {
  470. font-size: 20rpx;
  471. font-weight: 400;
  472. color: #333333;
  473. }
  474. .user_right {
  475. font-size: 20rpx;
  476. font-weight: 400;
  477. color: #A1A1A1;
  478. }
  479. }
  480. }
  481. }
  482. .popup {
  483. width: 100%;
  484. background: #FFFFFF;
  485. box-sizing: border-box;
  486. padding: 40rpx;
  487. .popup_title {
  488. width: 100%;
  489. text-align: center;
  490. font-size: 36rpx;
  491. font-weight: 500;
  492. color: #222222;
  493. }
  494. .popup_label {
  495. font-size: 32rpx;
  496. font-weight: 500;
  497. color: #222222;
  498. margin: 36rpx 0 28rpx;
  499. }
  500. .subtitle {
  501. font-size: 24rpx;
  502. font-weight: 400;
  503. color: #919191;
  504. }
  505. .popup_box {
  506. width: 208rpx;
  507. height: 76rpx;
  508. background: #F2F2F2;
  509. border-radius: 4rpx;
  510. text-align: center;
  511. font-size: 26rpx;
  512. font-weight: 400;
  513. color: #222222;
  514. line-height: 76rpx;
  515. margin: 0 24rpx 20rpx 0;
  516. }
  517. .popup_box:nth-child(3n) {
  518. margin: 0 0 20rpx;
  519. }
  520. .box_active {
  521. background: #F1F6FF;
  522. color: #506DFF;
  523. }
  524. .popup_bottom {
  525. margin: 82rpx 0 10rpx;
  526. width: 100%;
  527. .reset_btn {
  528. width: 240rpx;
  529. height: 76rpx;
  530. background: #F1F6FF;
  531. border-radius: 42rpx;
  532. font-size: 32rpx;
  533. font-weight: 500;
  534. color: #506DFF;
  535. text-align: center;
  536. line-height: 76rpx;
  537. }
  538. .confirm_btn {
  539. width: 400rpx;
  540. background: #506DFF;
  541. color: #FFFFFF;
  542. }
  543. }
  544. }
  545. .popup1 {
  546. width: 530rpx;
  547. height: 520rpx;
  548. border-radius: 40rpx;
  549. box-sizing: border-box;
  550. padding: 40rpx;
  551. .popup1_title {
  552. font-size: 48rpx;
  553. font-weight: 400;
  554. color: #222222;
  555. }
  556. .popup1_subtitle {
  557. font-size: 36rpx;
  558. font-weight: 500;
  559. color: #222222;
  560. margin: 8rpx 0 60rpx;
  561. }
  562. .popup1_line {
  563. width: 52rpx;
  564. height: 12rpx;
  565. background: #5572FF;
  566. border-radius: 6rpx;
  567. }
  568. .popup1_text {
  569. width: 100%;
  570. text-align: center;
  571. font-size: 40rpx;
  572. font-weight: 500;
  573. color: #222222;
  574. margin: 28rpx 0 52rpx;
  575. }
  576. .popup1_btn {
  577. margin: 0 auto;
  578. width: 310rpx;
  579. height: 84rpx;
  580. background: linear-gradient(90deg, #506DFF 0%, #88A6FF 100%);
  581. box-shadow: 0px 4rpx 24rpx 0px rgba(90,119,255,0.36);
  582. border-radius: 42rpx;
  583. text-align: center;
  584. line-height: 84rpx;
  585. font-size: 32rpx;
  586. font-weight: 500;
  587. color: #FFFFFF;
  588. }
  589. }
  590. .u-modal__content {
  591. padding: 0 !important;
  592. }
  593. .u-modal {
  594. width: 530rpx !important;
  595. background: url('/static/images/comment/eject.png') no-repeat;
  596. background-size: 100%;
  597. }
  598. }
  599. </style>