index-search.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. <template>
  2. <view class="index-search">
  3. <view class="search-header">
  4. <u-search placeholder="请输入" v-model="keyword1" :show-action="false" @search="tosearch(1)"></u-search>
  5. <view class="navbar-down">
  6. <view class="scroll-down u-flex u-row-between">
  7. <view class="u-flex down-left">
  8. <text class="text1" :class="{textactive:paixu == 1}" @click="changepaixu(1)">按职位</text>
  9. <text class="text1" :class="{textactive:paixu == 2}" @click="changepaixu(2)">搜公司</text>
  10. </view>
  11. <view class="u-flex down-right">
  12. <view :style="{background:city.name!=''?'#EDF2F8':'#f3f3f3'}"
  13. class="right-item u-flex u-row-center" @click="opencity1">
  14. <text :style="{color:city.name!=''?'#0C66C2':'#666666'}"
  15. class="text">{{city.name || '全国'}}</text>
  16. <u-icon v-if="city.name !='' " color="#0C66C2" name="arrow-down-fill" size="8"></u-icon>
  17. <u-icon v-if="city.name ==''" name="arrow-down-fill" size="8"></u-icon>
  18. </view>
  19. <view :style="{background:Object.keys(search_data).length!=0?'#EDF2F8':'#f3f3f3'}"
  20. class="right-item u-flex u-row-center" @click="openshaixuan">
  21. <text :style="{color:Object.keys(search_data).length!=0?'#0C66C2':'#666666'}"
  22. class="text">筛选</text>
  23. <u-icon v-if="Object.keys(search_data).length!=0 " color="#0C66C2" name="arrow-down-fill"
  24. size="8"></u-icon>
  25. <u-icon v-if="Object.keys(search_data).length==0" name="arrow-down-fill" size="8"></u-icon>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="" style="padding: 0 20rpx;">
  32. <view class="content" @click="todetails(item.id)" v-for="(item,index) in positionlist" :key="item.id">
  33. <view class="u-flex u-row-between">
  34. <view class="u-flex">
  35. <view class="font">{{item.job_name}}</view>
  36. <view class="back" v-if="item.is_urgent == 1">急聘</view>
  37. </view>
  38. <view class="money">{{item.salary_min}}-{{item.salary_max}}K
  39. <text v-if="item.salary_structure">·{{item.salary_structure}}</text>
  40. </view>
  41. </view>
  42. <view class="u-flex" style="margin: 16rpx 0 14rpx 0;">
  43. <text class="introduce">{{item.companys.name}}</text>
  44. <text class="introduce">{{item.companys.company_stage.name}}</text>
  45. <text class="introduce">{{item.companys.company_scale.name}}</text>
  46. </view>
  47. <view class="u-flex" style="margin-bottom: 24rpx;">
  48. <view class="tabs">
  49. {{item.education_name}}
  50. </view>
  51. <view class="tabs">
  52. {{item.experience_name}}
  53. </view>
  54. </view>
  55. <view class="u-flex u-row-between u-col-center">
  56. <view class=" u-flex u-col-center">
  57. <image :src="item.usermanager.avatar" mode=""
  58. style="width: 50rpx;height: 50rpx;border-radius: 50%;">
  59. </image>
  60. <view class="" style="margin-left: 16rpx;">
  61. <text>{{item.usermanager.name}}</text>·
  62. <text>{{item.usermanager.job_text}}</text>
  63. </view>
  64. </view>
  65. <view class="u-flex u-col-center ">
  66. <view class="address" style="margin -right: 10rpx;">{{item.work_province.slice(0,-1)}}
  67. </view>
  68. <view class="address">{{item.work_city}}</view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="safe-area-inset-bottom"></view>
  73. </view>
  74. <view style="height: 85vh;padding: 0 24rpx;background-color: #fff;" v-if="positionlist.length == 0">
  75. <view class="u-flex u-row-between">
  76. <view class="shar">历史搜索</view>
  77. <view class="" @click="clear">
  78. <u-icon name="trash" color="rgba(0,0,0,.7)" size="14"></u-icon>
  79. </view>
  80. </view>
  81. <view class="u-flex" style="flex-wrap: wrap;margin-top: 24rpx;">
  82. <view class="item" style="margin-right: 16rpx;" v-for="(item,index) in search" :key="index">
  83. {{item}}
  84. </view>
  85. </view>
  86. </view>
  87. <u-popup border-radius="28" :show="opencity" mode="bottom">
  88. <view class="change-city-popup u-flex-col">
  89. <view class="change-city-header u-flex u-row-between">
  90. <u-icon name="close" size="22" color="#222" @click="opencity = false"></u-icon>
  91. <text class="text">选择城市</text>
  92. <u-icon name="close" size="22" color="#fff"></u-icon>
  93. </view>
  94. <view class="u-flex-1 u-flex change-city-scroll">
  95. <scroll-view scroll-y="true" class="change-scroll-left">
  96. <view class="scroll-left-sheng" v-for="(item,index) in citylist" :key="index"
  97. :class="{shengactive:cityleftindex == index}" @click="changeleftcity(index)">{{item.name}}
  98. </view>
  99. </scroll-view>
  100. <scroll-view scroll-y="true" class="change-scroll-right u-flex-1">
  101. <view class="scroll-left-shi" v-for="(item,index) in rightcity" :key="index"
  102. :class="{shiactive:cityrightindex == index}" @click="changerightcity(index,item)">
  103. {{item.name}}
  104. </view>
  105. </scroll-view>
  106. </view>
  107. <view class="change-city-down u-flex u-row-between">
  108. <text @click="chongzhi">重置</text>
  109. <text @click="changecity">确定</text>
  110. </view>
  111. </view>
  112. </u-popup>
  113. <zhao-shaixuan ref="shaixuan" @tosearch="shaixuan"></zhao-shaixuan>
  114. </view>
  115. </template>
  116. <script>
  117. import {
  118. getList,
  119. getareacity
  120. } from "@/units/inquire.js"
  121. export default {
  122. data() {
  123. return {
  124. paixu: 1,
  125. keyword: "",
  126. keyword1: "",
  127. category_industry_id: "",
  128. category_industry_name: '',
  129. opencity: false,
  130. citylist: [],
  131. total: 0,
  132. height: "",
  133. list1: [{
  134. name: "相关"
  135. },
  136. {
  137. name: "推荐"
  138. },
  139. {
  140. name: "最新"
  141. },
  142. ],
  143. list4: [{
  144. name: "职位"
  145. },
  146. {
  147. name: "校招"
  148. }
  149. ],
  150. page: 1,
  151. tab1: 0,
  152. tab2: 0,
  153. positionlist: [], //职位列表
  154. is_auth: "", //是否认证
  155. rightcity: [],
  156. cityrightindex: "-1",
  157. cityleftindex: "0",
  158. city: {},
  159. search_data: {},
  160. job_intention: [],
  161. id: "",
  162. navheight: null,
  163. search: []
  164. }
  165. },
  166. onLoad() {
  167. if (uni.getStorageSync('searchdata')) {
  168. this.search = uni.getStorageSync('searchdata')
  169. }
  170. this.search_data = {}
  171. // this.getlist()
  172. this.getcity()
  173. this.city = {
  174. name: '',
  175. id: ''
  176. }
  177. },
  178. onReachBottom() {
  179. if (this.total != this.positionlist.length) {
  180. this.page++
  181. this.getlist()
  182. }
  183. },
  184. methods: {
  185. clear(){
  186. uni.removeStorageSync('searchdata')
  187. this.search = []
  188. },
  189. changepaixu(type) {
  190. this.paixu = type
  191. this.tosearch()
  192. },
  193. opencity1() {
  194. this.opencity = true
  195. this.city = {
  196. name: '',
  197. id: ''
  198. }
  199. },
  200. shaixuan(e) {
  201. this.search_data = e
  202. this.tosearch()
  203. },
  204. chongzhi() {
  205. this.city = {
  206. name: '',
  207. id: ''
  208. }
  209. this.opencity = false
  210. this.tosearch()
  211. },
  212. changecity() {
  213. if (this.cityrightindex == -1) {
  214. this.$u.toast("请选择城市")
  215. return
  216. }
  217. this.city = {
  218. name: this.citylist[this.cityleftindex].childlist[this.cityrightindex].name,
  219. id: this.citylist[this.cityleftindex].childlist[this.cityrightindex].id
  220. }
  221. console.log(this.city);
  222. this.opencity = false
  223. this.tosearch()
  224. },
  225. changerightcity(index, item) {
  226. this.cityrightindex = index
  227. },
  228. changeleftcity(index) {
  229. this.cityleftindex = index
  230. this.cityrightindex = -1
  231. this.rightcity = this.citylist[this.cityleftindex].childlist
  232. },
  233. getcity() {
  234. getareacity().then(res => {
  235. console.log(res);
  236. this.citylist = res.data
  237. this.rightcity = res.data[0].childlist
  238. })
  239. },
  240. tosearch(type) {
  241. this.positionlist = []
  242. if (type == 1) {
  243. this.keyword = this.keyword1
  244. }
  245. this.page = 1
  246. this.total = 0
  247. this.getlist()
  248. if(this.keyword1 != ''){
  249. this.search.push(this.keyword1)
  250. }
  251. uni.setStorageSync('searchdata', this.search)
  252. },
  253. openshaixuan() {
  254. this.$refs.shaixuan.openshaixuan = true
  255. },
  256. getlist() {
  257. getList({
  258. page: this.page,
  259. type: this.tab2,
  260. search_field: this.paixu == 1 ? 'job_name' : 'name',
  261. search: this.keyword,
  262. search_data: {
  263. ...this.search_data,
  264. city_id: this.city.id,
  265. category_industry_id: this.category_industry_id
  266. }
  267. }).then(res => {
  268. if (this.page == 1) {
  269. this.positionlist = res.data.data
  270. } else {
  271. this.positionlist = this.positionlist.concat(res.data.data)
  272. }
  273. this.total = res.data.total
  274. })
  275. },
  276. }
  277. }
  278. </script>
  279. <style lang="scss">
  280. .item {
  281. height: 54rpx;
  282. background: #F3F3F3;
  283. border-radius: 6rpx;
  284. line-height: 54rpx;
  285. text-align: center;
  286. font-size: 24rpx;
  287. font-family: PingFangSC, PingFang SC;
  288. font-weight: 400;
  289. color: #222222;
  290. padding: 0 18rpx;
  291. }
  292. .shar {
  293. font-size: 34rpx;
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 500;
  296. color: #222222;
  297. }
  298. page {
  299. background-color: #F3F3F3;
  300. }
  301. .content {
  302. padding: 24rpx 20rpx;
  303. margin-top: 20rpx;
  304. background-color: #fff;
  305. border-radius: 16rpx;
  306. .font {
  307. font-size: 32rpx;
  308. font-family: PingFangSC-Medium, PingFang SC;
  309. font-weight: 500;
  310. color: #222222;
  311. line-height: 44rpx;
  312. max-width: 326rpx;
  313. overflow: hidden; //超出隐藏
  314. white-space: nowrap; //不换行,同一行展示
  315. text-overflow: ellipsis; //设置超出部分以省略号展示
  316. }
  317. .back {
  318. width: 58rpx;
  319. height: 32rpx;
  320. background: #FF5335;
  321. border-radius: 6rpx;
  322. font-size: 22rpx;
  323. font-family: PingFangSC-Regular, PingFang SC;
  324. font-weight: 400;
  325. color: #FFFFFF;
  326. line-height: 32rpx;
  327. text-align: center;
  328. margin-left: 16rpx;
  329. }
  330. .money {
  331. font-size: 32rpx;
  332. font-family: JDZhengHT-Regular, JDZhengHT;
  333. font-weight: 400;
  334. color: #0C66C2;
  335. }
  336. .introduce {
  337. height: 40rpx;
  338. font-size: 28rpx;
  339. font-family: PingFangSC-Regular, PingFang SC;
  340. font-weight: 400;
  341. color: #555555;
  342. line-height: 40rpx;
  343. margin-right: 16rpx;
  344. }
  345. .tabs {
  346. background: #F3F3F3;
  347. border-radius: 4rpx;
  348. padding: 6rpx 14rpx;
  349. margin-right: 16rpx;
  350. font-size: 24rpx;
  351. font-family: PingFangSC-Regular, PingFang SC;
  352. font-weight: 400;
  353. color: #5F5F5F;
  354. height: 34rpx;
  355. line-height: 34rpx;
  356. }
  357. }
  358. .index-search {
  359. .change-city-popup {
  360. height: calc(100vh - 144rpx);
  361. .change-city-scroll {
  362. min-height: 1rpx;
  363. .change-scroll-right {
  364. height: 100%;
  365. .scroll-left-shi {
  366. line-height: 100rpx;
  367. text-align: center;
  368. font-size: 32rpx;
  369. font-family: PingFangSC-Regular, PingFang SC;
  370. font-weight: 400;
  371. color: #333333;
  372. padding: 0 32rpx;
  373. }
  374. .shiactive {
  375. color: #0C66C2;
  376. }
  377. }
  378. .change-scroll-left {
  379. width: 304rpx;
  380. height: 100%;
  381. background-color: #F5F5F5;
  382. .scroll-left-sheng {
  383. text-align: center;
  384. font-size: 32rpx;
  385. font-family: PingFangSC-Regular, PingFang SC;
  386. font-weight: 400;
  387. color: #333333;
  388. padding: 28rpx 32rpx;
  389. }
  390. .shengactive {
  391. background-color: #fff;
  392. color: #0C66C2;
  393. }
  394. }
  395. }
  396. .change-city-down {
  397. padding: 12rpx 32rpx;
  398. text:first-child {
  399. width: 208rpx;
  400. line-height: 84rpx;
  401. background: #F3F3F3;
  402. border-radius: 10rpx;
  403. text-align: center;
  404. font-size: 32rpx;
  405. font-family: PingFangSC-Medium, PingFang SC;
  406. font-weight: 500;
  407. color: #555555;
  408. }
  409. text:last-child {
  410. width: 454rpx;
  411. line-height: 84rpx;
  412. background: #0C66C2;
  413. border-radius: 10rpx;
  414. text-align: center;
  415. font-size: 32rpx;
  416. font-family: PingFangSC-Medium, PingFang SC;
  417. font-weight: 500;
  418. color: #FFFFFF;
  419. }
  420. }
  421. .change-city-header {
  422. height: 120rpx;
  423. padding: 0 32rpx;
  424. .text {
  425. font-size: 36rpx;
  426. font-family: PingFangSC-Medium, PingFang SC;
  427. font-weight: 500;
  428. color: #222222;
  429. }
  430. }
  431. }
  432. .index-item {
  433. width: 702rpx;
  434. background: #FFFFFF;
  435. border-radius: 20rpx;
  436. margin: 20rpx auto;
  437. padding: 0 20rpx 24rpx 20rpx;
  438. .item-down {
  439. text:first-child {
  440. font-size: 22rpx;
  441. font-family: SFPro-Regular, SFPro;
  442. font-weight: 400;
  443. color: #666666;
  444. }
  445. text:last-child {
  446. font-size: 22rpx;
  447. font-family: PingFangSC-Regular, PingFang SC;
  448. font-weight: 400;
  449. color: #666666;
  450. }
  451. }
  452. .item-gongsi {
  453. margin-bottom: 16rpx;
  454. .text2 {
  455. font-size: 24rpx;
  456. font-family: SFPro-Regular, SFPro;
  457. font-weight: 400;
  458. color: #666666;
  459. }
  460. .logo {
  461. width: 42rpx;
  462. height: 42rpx;
  463. border-radius: 10rpx;
  464. margin-right: 16rpx;
  465. }
  466. .text1 {
  467. max-width: 192rpx;
  468. font-size: 24rpx;
  469. font-family: PingFangSC-Regular, PingFang SC;
  470. font-weight: 400;
  471. color: #444444;
  472. margin-right: 12rpx;
  473. }
  474. }
  475. .item-label {
  476. margin-bottom: 20rpx;
  477. text {
  478. margin-right: 16rpx;
  479. line-height: 46rpx;
  480. background: #F7F7F7;
  481. border-radius: 4rpx;
  482. padding: 0 14rpx;
  483. font-size: 24rpx;
  484. font-family: PingFangSC-Regular, PingFang SC;
  485. font-weight: 400;
  486. color: #5F5F5F;
  487. }
  488. }
  489. .item-top {
  490. height: 88rpx;
  491. .text1 {
  492. font-size: 32rpx;
  493. font-family: PingFangSC-Medium, PingFang SC;
  494. font-weight: 500;
  495. color: #222222;
  496. margin-right: 16rpx;
  497. }
  498. .text2 {
  499. width: 50rpx;
  500. line-height: 32rpx;
  501. background: rgba(255, 83, 53, 0.1);
  502. border-radius: 4rpx;
  503. text-align: center;
  504. font-size: 20rpx;
  505. font-family: PingFangSC-Regular, PingFang SC;
  506. font-weight: 400;
  507. color: #FF5335;
  508. margin-right: 12rpx;
  509. }
  510. .text3 {
  511. width: 90rpx;
  512. line-height: 32rpx;
  513. background: #FFF2E8;
  514. border-radius: 4rpx;
  515. text-align: center;
  516. font-size: 20rpx;
  517. font-family: PingFangSC-Regular, PingFang SC;
  518. font-weight: 400;
  519. color: #FF8620;
  520. margin-right: 12rpx;
  521. }
  522. .text4 {
  523. line-height: 32rpx;
  524. background: #E6EFF8;
  525. border-radius: 4rpx;
  526. padding: 0 4rpx;
  527. text-align: center;
  528. font-size: 20rpx;
  529. font-family: SFPro-Regular, SFPro;
  530. font-weight: 400;
  531. color: #0C66C2;
  532. }
  533. .text5 {
  534. font-size: 32rpx;
  535. font-family: JDZhengHT-Regular, JDZhengHT;
  536. font-weight: 400;
  537. color: #0C66C2;
  538. }
  539. }
  540. }
  541. .search-header {
  542. position: sticky;
  543. top: 0;
  544. left: 0;
  545. z-index: 10;
  546. background-color: #fff;
  547. padding: 20rpx 24rpx;
  548. .navbar-down {
  549. padding-top: 20rpx;
  550. .scroll-down {
  551. .down-right {
  552. .right-item {
  553. // width: 100rpx;
  554. padding: 0 20rpx;
  555. height: 52rpx;
  556. background: #F3F3F3;
  557. border-radius: 4rpx;
  558. margin-left: 20rpx;
  559. .text {
  560. font-size: 26rpx;
  561. font-family: PingFangSC-Regular, PingFang SC;
  562. font-weight: 400;
  563. color: #666666;
  564. margin-right: 4rpx;
  565. }
  566. image {
  567. width: 16rpx;
  568. height: 16rpx;
  569. }
  570. }
  571. }
  572. .down-left {
  573. .text1 {
  574. font-size: 28rpx;
  575. font-family: PingFangSC-Regular, PingFang SC;
  576. font-weight: 400;
  577. color: #777;
  578. margin-right: 32rpx;
  579. }
  580. .textactive {
  581. color: #222222;
  582. }
  583. }
  584. }
  585. }
  586. }
  587. }
  588. </style>