index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <template>
  2. <view class="index-page">
  3. <view class="index-navbar">
  4. <view style="position: relative;height: 352rpx;">
  5. <image class="index-bg" src="../../static/images/index-header.png" mode=""></image>
  6. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true">
  7. <view id="height" class="index-header u-flex u-row-between" slot="left"
  8. style="position: relative;">
  9. <view class="" style="margin-left: -11rpx;">
  10. <u-tabs :current="tab1" :list="list4" lineWidth="28" lineHeight="5"
  11. :lineColor="bgImage" :activeStyle="{
  12. color: '#303133',
  13. fontWeight: 'bold',
  14. }" :inactiveStyle="{
  15. color: '#606266',
  16. }" itemStyle=" padding-right: 15px; height: 34px;" @click="TabsTop">
  17. </u-tabs>
  18. </view>
  19. <view class="" style="">
  20. <view class="index-search u-flex" slot="center">
  21. <u-icon name="search" color="#444444" size="28"></u-icon>
  22. <input type="text" class="text1" placeholder="搜索职位" :disabled="true">
  23. </view>
  24. </view>
  25. </view>
  26. </u-navbar>
  27. <view v-if="tab1 == 1" class="" style="padding:0rpx 24rpx;">
  28. <hx-school></hx-school>
  29. </view>
  30. <view v-if="tab1 == 0" class="header-down ">
  31. <view class="u-flex u-row-between u-row-center">
  32. <view class="font">
  33. UX交互设计师
  34. </view>
  35. <view class="font" style="font-size: 42rpx;">
  36. +
  37. </view>
  38. </view>
  39. <view class="u-flex u-row-between" style="margin-left: -11rpx;margin-top: 14rpx;">
  40. <view class="down-left u-flex u-row-center" @click="showpaixu = true">
  41. <u-tabs :current="tab2" :list="list1" @click="click"></u-tabs>
  42. </view>
  43. <view class="u-flex">
  44. <view class="right-item u-flex u-row-center" @click="opencity = true">
  45. <text class="text">{{city.name || '北京'}}</text>
  46. <u-icon name="arrow-down-fill" size="20"></u-icon>
  47. </view>
  48. <view class="right-item u-flex u-row-center" @click="openshaixuan">
  49. <text class="text">筛选</text>
  50. <u-icon name="arrow-down-fill" size="20"></u-icon>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <view v-if="tab1 == 0" class="" style="padding:0rpx 24rpx;background-color: #F3F3F3 ;height: 100%;">
  57. <view class="content" @click="todetails(item.id)" v-for="(item,index) in positionlist" :key="item.manager_id">
  58. <view class="u-flex u-row-between">
  59. <view class="u-flex">
  60. <view class="font">{{item.job_name}}</view>
  61. <view class="back" v-if="item.is_urgent == 1">急聘</view>
  62. </view>
  63. <view class="money">{{item.salary_min}}-{{item.salary_max}}K
  64. <text v-if="item.salary_structure">·{{item.salary_structure}}薪</text>
  65. </view>
  66. </view>
  67. <view class="u-flex" style="margin: 16rpx 0 14rpx 0;">
  68. <text class="introduce">{{item.companys.name}}</text>
  69. <text class="introduce">{{item.company_stage.name}}</text>
  70. <text class="introduce">{{item.company_scale.name}}</text>
  71. </view>
  72. <view class="u-flex" style="margin-bottom: 24rpx;">
  73. <view class="tabs">
  74. {{item.education_name}}
  75. </view>
  76. <view class="tabs">
  77. {{item.experience_name}}
  78. </view>
  79. </view>
  80. <view class="u-flex u-row-between u-col-center">
  81. <view class=" u-flex u-col-center">
  82. <image :src="item.usermanager.avatar" mode="" style="width: 50rpx;height: 50rpx;border-radius: 50%;">
  83. </image>
  84. <view class="" style="margin-left: 16rpx;">
  85. <text>{{item.usermanager.name}}</text>·
  86. <text>{{item.usermanager.company_text}}</text>
  87. </view>
  88. </view>
  89. <view class="u-flex u-col-center ">
  90. <view class="address" style="margin-right: 10rpx;">{{item.work_province.slice(0,-1)}}</view>
  91. <view class="address">{{item.work_city}}</view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. </template>
  99. <script>
  100. import {
  101. getList
  102. } from "../../units/inquire.js"
  103. export default {
  104. data() {
  105. return {
  106. height: "",
  107. list1: [{
  108. name: "推荐"
  109. },
  110. {
  111. name: "附近"
  112. },
  113. {
  114. name: "最新"
  115. },
  116. ],
  117. list4: [{
  118. name: "职位"
  119. },
  120. {
  121. name: "校招"
  122. }
  123. ],
  124. page: 5,
  125. tab1:0,
  126. tab2:0,
  127. positionlist:[],//职位列表
  128. }
  129. },
  130. onLoad() {
  131. this.getlist()
  132. },
  133. onReachBottom() {
  134. },
  135. computed:{
  136. bgImage(){
  137. return `url(${require('../../static/images/juxing.png')}) 100% 100%`
  138. }
  139. },
  140. methods: {
  141. click(item) {
  142. this.tab2 = item.index
  143. console.log(this.tab2);
  144. this.getlist()
  145. // console.log('item', item);
  146. },
  147. TabsTop(item) {
  148. this.tab1 = item.index
  149. // console.log(this.tab1);
  150. },
  151. //获取职位列表
  152. getlist() {
  153. getList({
  154. page: this.page,
  155. type: this.tab2
  156. }).then(res => {
  157. console.log(res);
  158. this.positionlist = res.data.data
  159. })
  160. },
  161. todetails(id) {
  162. uni.navigateTo({
  163. url: '../../pagesB/details?id='+id
  164. })
  165. }
  166. }
  167. }
  168. </script>
  169. <style lang="scss">
  170. page {
  171. background-color: #F3F3F3;
  172. }
  173. .index-page {
  174. .address {
  175. font-size: 24rpx;
  176. font-family: PingFangSC-Regular, PingFang SC;
  177. font-weight: 400;
  178. color: #979797;
  179. line-height: 34rpx;
  180. }
  181. .content {
  182. padding: 24rpx 20rpx;
  183. margin-top: 20rpx;
  184. background-color: #fff;
  185. border-radius: 16rpx;
  186. .font {
  187. font-size: 32rpx;
  188. font-family: PingFangSC-Medium, PingFang SC;
  189. font-weight: 500;
  190. color: #222222;
  191. line-height: 44rpx;
  192. max-width: 326rpx;
  193. overflow: hidden; //超出隐藏
  194. white-space: nowrap; //不换行,同一行展示
  195. text-overflow: ellipsis; //设置超出部分以省略号展示
  196. }
  197. .back {
  198. width: 58rpx;
  199. height: 32rpx;
  200. background: #FF5335;
  201. border-radius: 6rpx;
  202. font-size: 22rpx;
  203. font-family: PingFangSC-Regular, PingFang SC;
  204. font-weight: 400;
  205. color: #FFFFFF;
  206. line-height: 32rpx;
  207. text-align: center;
  208. margin-left: 16rpx;
  209. }
  210. .money {
  211. font-size: 32rpx;
  212. font-family: JDZhengHT-Regular, JDZhengHT;
  213. font-weight: 400;
  214. color: #0C66C2;
  215. }
  216. .introduce {
  217. height: 40rpx;
  218. font-size: 28rpx;
  219. font-family: PingFangSC-Regular, PingFang SC;
  220. font-weight: 400;
  221. color: #555555;
  222. line-height: 40rpx;
  223. margin-right: 16rpx;
  224. }
  225. .tabs {
  226. background: #F3F3F3;
  227. border-radius: 4rpx;
  228. padding: 6rpx 14rpx;
  229. margin-right: 16rpx;
  230. font-size: 24rpx;
  231. font-family: PingFangSC-Regular, PingFang SC;
  232. font-weight: 400;
  233. color: #5F5F5F;
  234. height: 34rpx;
  235. line-height: 34rpx;
  236. }
  237. }
  238. .index-item {
  239. // width: 702rpx;
  240. // background: #FFFFFF;
  241. // border-radius: 20rpx;
  242. // margin: 20rpx auto;
  243. // padding: 0 20rpx 24rpx 10rpx;
  244. .item-down {
  245. text:first-child {
  246. font-size: 22rpx;
  247. font-family: SFPro-Regular, SFPro;
  248. font-weight: 400;
  249. color: #666666;
  250. }
  251. text:last-child {
  252. font-size: 22rpx;
  253. font-family: PingFangSC-Regular, PingFang SC;
  254. font-weight: 400;
  255. color: #666666;
  256. }
  257. }
  258. .item-gongsi {
  259. margin-bottom: 16rpx;
  260. .text2 {
  261. font-size: 24rpx;
  262. font-family: SFPro-Regular, SFPro;
  263. font-weight: 400;
  264. color: #666666;
  265. }
  266. .logo {
  267. width: 42rpx;
  268. height: 42rpx;
  269. border-radius: 10rpx;
  270. margin-right: 16rpx;
  271. }
  272. .text1 {
  273. max-width: 192rpx;
  274. font-size: 24rpx;
  275. font-family: PingFangSC-Regular, PingFang SC;
  276. font-weight: 400;
  277. color: #444444;
  278. margin-right: 12rpx;
  279. }
  280. }
  281. .item-label {
  282. margin-bottom: 20rpx;
  283. text {
  284. margin-right: 16rpx;
  285. line-height: 46rpx;
  286. background: #F7F7F7;
  287. border-radius: 4rpx;
  288. padding: 0 14rpx;
  289. font-size: 24rpx;
  290. font-family: PingFangSC-Regular, PingFang SC;
  291. font-weight: 400;
  292. color: #5F5F5F;
  293. }
  294. }
  295. .item-top {
  296. height: 88rpx;
  297. .text1 {
  298. font-size: 32rpx;
  299. font-family: PingFangSC-Medium, PingFang SC;
  300. font-weight: 500;
  301. color: #222222;
  302. margin-right: 16rpx;
  303. }
  304. .text2 {
  305. width: 50rpx;
  306. line-height: 32rpx;
  307. background: rgba(255, 83, 53, 0.1);
  308. border-radius: 4rpx;
  309. text-align: center;
  310. font-size: 20rpx;
  311. font-family: PingFangSC-Regular, PingFang SC;
  312. font-weight: 400;
  313. color: #FF5335;
  314. margin-right: 12rpx;
  315. }
  316. .text3 {
  317. width: 90rpx;
  318. line-height: 32rpx;
  319. background: #FFF2E8;
  320. border-radius: 4rpx;
  321. text-align: center;
  322. font-size: 20rpx;
  323. font-family: PingFangSC-Regular, PingFang SC;
  324. font-weight: 400;
  325. color: #FF8620;
  326. margin-right: 12rpx;
  327. }
  328. .text4 {
  329. line-height: 32rpx;
  330. background: #E6EFF8;
  331. border-radius: 4rpx;
  332. padding: 0 4rpx;
  333. text-align: center;
  334. font-size: 20rpx;
  335. font-family: SFPro-Regular, SFPro;
  336. font-weight: 400;
  337. color: #0C66C2;
  338. }
  339. .text5 {
  340. font-size: 32rpx;
  341. font-family: JDZhengHT-Regular, JDZhengHT;
  342. font-weight: 400;
  343. color: #0C66C2;
  344. }
  345. }
  346. }
  347. .index-navbar {
  348. position: sticky;
  349. top: 0;
  350. left: 0;
  351. width: 750rpx;
  352. z-index: 100;
  353. .header-down {
  354. height: 92rpx;
  355. padding: 20rpx 24rpx;
  356. box-sizing: border-box;
  357. .font {
  358. font-size: 40rpx;
  359. font-family: PingFangSC-Medium, PingFang SC;
  360. font-weight: 500;
  361. color: #222222;
  362. }
  363. .right-item {
  364. padding: 0 16rpx;
  365. height: 52rpx;
  366. background: #F3F3F3;
  367. border-radius: 4rpx;
  368. margin-left: 20rpx;
  369. .text {
  370. margin-right: 4rpx;
  371. font-size: 26rpx;
  372. font-family: PingFangSC-Regular, PingFang SC;
  373. font-weight: 400;
  374. color: #666666;
  375. }
  376. }
  377. .down-left {
  378. .text {
  379. margin-right: 4rpx;
  380. font-size: 26rpx;
  381. font-family: PingFangSC-Medium, PingFang SC;
  382. font-weight: 500;
  383. color: #222222;
  384. }
  385. }
  386. }
  387. .index-bg {
  388. position: absolute;
  389. top: 0;
  390. left: 0;
  391. z-index: -1;
  392. width: 750rpx;
  393. height: 352rpx;
  394. }
  395. }
  396. .index-header {
  397. flex: 1;
  398. padding: 0 32rpx;
  399. height: 50rpx;
  400. .index-search {
  401. width: 200rpx;
  402. height: 64rpx;
  403. background: #FFFFFF;
  404. border-radius: 20rpx;
  405. padding: 0 28rpx;
  406. .text1 {
  407. font-size: 24rpx;
  408. font-family: PingFangSC-Regular, PingFang SC;
  409. font-weight: 400;
  410. color: #999999;
  411. margin-left: 16rpx;
  412. }
  413. }
  414. .index-tabs {
  415. text:first-child {
  416. font-size: 36rpx;
  417. font-family: PingFangSC-Medium, PingFang SC;
  418. font-weight: 500;
  419. color: #222222;
  420. }
  421. text:last-child {
  422. width: 76rpx;
  423. height: 12rpx;
  424. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  425. margin-top: -20rpx;
  426. border-radius: 100rpx;
  427. }
  428. }
  429. }
  430. }
  431. ::v-deep .u-navbar__content__left {
  432. padding: 0 !important;
  433. }
  434. </style>