expectation.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. <template>
  2. <view class="index-page">
  3. <!-- 顶部 -->
  4. <view class="index-navbar">
  5. <view style="position: relative;height: 392rpx;">
  6. <image class="index-bg" src="@/static/images/bg.png" mode=""></image>
  7. <u-navbar bgColor='rgba(0,0,0,0)' placeholder @leftClick="return1">
  8. </u-navbar>
  9. <view class="header-down " :style="{marginTop:height+'rpx'}"
  10. style="padding: 28rpx 0 0 32rpx;box-sizing: border-box;">
  11. <view class="mingpianfont">
  12. 你的求职期望
  13. </view>
  14. <view class="explain">
  15. <text>我们会根据你的求职意向,为你推荐精准的职</text>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <!-- 个人信息 -->
  21. <view class="personal">
  22. <view class="body-input u-flex-col u-row-center ">
  23. <text class="input-title">期望职位</text>
  24. <view class="" @click="changefenlei">
  25. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  26. placeholder="请选择期望职位" border placeholderClass='input-style' suffixIcon="arrow-right"
  27. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  28. v-model="job_intention.category_job_name"></u--input>
  29. </view>
  30. </view>
  31. <view class="body-input u-flex-col u-row-center">
  32. <text class="input-title">期望城市</text>
  33. <view class="" @click="cityShow = true">
  34. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  35. placeholder="请选择您的期望城市" border placeholderClass='input-style' suffixIcon="arrow-right"
  36. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  37. v-model="job_intention.city_name"></u--input>
  38. </view>
  39. </view>
  40. <view class="body-input u-flex-col u-row-center">
  41. <text class="input-title">期望行业</text>
  42. <view class="" @click="changehangye">
  43. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  44. placeholder="请选择您的期望行业" border placeholderClass='input-style' suffixIcon="arrow-right"
  45. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  46. v-model="job_intention.category_industry_name"></u--input>
  47. </view>
  48. </view>
  49. <view class="body-input u-flex-col u-row-center">
  50. <text class="input-title">期望薪资</text>
  51. <view class="" @click="show = true">
  52. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  53. placeholder="请选择您的期望薪资" border placeholderClass='input-style' suffixIcon="arrow-right"
  54. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  55. v-model="job_intention.salary"></u--input>
  56. </view>
  57. </view>
  58. <view class="body-input u-flex-col u-row-center">
  59. <text class="input-title">优势亮点(选填)</text>
  60. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写" border
  61. placeholderClass='input-style' suffixIcon="arrow-right"
  62. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u--input>
  63. </view>
  64. <view class="button" @click="next">
  65. 开启求职之旅
  66. </view>
  67. </view>
  68. <!-- 选择器 -->
  69. <u-picker ref="uPicker" keyName="name" title="期待城市" :defaultIndex="indexs" :show="cityShow" :columns="cityList"
  70. @confirm="cityconfirm" @cancel="cityShow = false" @change="changeHandler"></u-picker>
  71. <u-picker keyName="name" title="期待薪资" :show="show" :columns="xinzilist" @confirm="confirm"
  72. @cancel="show = false"></u-picker>
  73. </view>
  74. </template>
  75. <script>
  76. import {
  77. getAllArea,
  78. create
  79. } from "@/units/inquire.js"
  80. export default {
  81. data() {
  82. return {
  83. cityShow: false,
  84. province: [], //省数据
  85. city: [], //市数据
  86. area: [], //区数据
  87. cityList: [], //城市列表
  88. show: false,
  89. from: {},
  90. addressData: {},
  91. job_experience: {},
  92. project_experience: {},
  93. education_experience: {},
  94. addressData: {
  95. id: "",
  96. province: "",
  97. city: "",
  98. area: "",
  99. detail: "",
  100. userName: "",
  101. phone: "",
  102. isDefault: false
  103. }, //地址数据
  104. job_intention: {
  105. city_name: "", //城市地点
  106. advantage: '', //优势亮点
  107. province_id: "", //期望省份ID
  108. city_id: "", //期望城市ID
  109. salary_type: "", //薪资类型: year = 年薪;month = 月薪
  110. salary: "", //薪水
  111. salary_month: "", //一年多少薪
  112. category_job_first: "", //职位分类一级ID
  113. category_job_second: "", //职位分类二级ID
  114. category_job_id: "", //职位分类三级ID
  115. category_job_name: "", //职业名称
  116. category_industry_first: "", //行业一级ID
  117. category_industry_id: "", //行业二级ID
  118. category_industry_name: "", //行业名称
  119. category_field_id: "", //领域ID
  120. },
  121. xinzilist: [{
  122. name: '5K以下',
  123. min: 0,
  124. max: 5
  125. }, {
  126. name: '5-10K',
  127. min: 5,
  128. max: 10
  129. }, {
  130. name: '10-15K',
  131. min: 10,
  132. max: 15
  133. }, {
  134. name: '15-20K',
  135. min: 15,
  136. max: 20
  137. }, {
  138. name: '20-30K',
  139. min: 20,
  140. max: 30
  141. }, {
  142. name: '30-50K',
  143. min: 30,
  144. max: 50
  145. }, {
  146. name: '50K以上',
  147. min: 50,
  148. max: 9999
  149. }]
  150. }
  151. },
  152. onLoad() {
  153. this.AllArea()
  154. this.from = uni.getStorageSync("from")
  155. this.addressData = uni.getStorageSync("addressData")
  156. this.job_experience = uni.getStorageSync("job_experience")
  157. this.project_experience = uni.getStorageSync("project_experience")
  158. this.education_experience = uni.getStorageSync("education_experience")
  159. },
  160. methods: {
  161. //户口地址
  162. confirm(e) {
  163. console.log(this.xinzilist);
  164. console.log(1111);
  165. console.log(e);
  166. this.show = false
  167. },
  168. cityconfirm(e) {
  169. let a = e.value[0].name + e.value[1].name + e.value[2].name
  170. // let ids = String(e.value[0].id) + String(e.value[1].id) + String(e.value[2].id)
  171. this.job_intention.city_id = e.value[1].id
  172. this.job_intention.province_id = e.value[0].id
  173. // this.city1 = e.value.join("")
  174. this.job_intention.city_name = a
  175. this.cityShow = false
  176. },
  177. jobConfirm(e) {
  178. this.job = e.value[0].name
  179. this.from.job_status_id = e.value[0].id
  180. this.jobShow = false
  181. }, //所有地区
  182. AllArea() {
  183. getAllArea().then((res) => {
  184. this.province = res.data.map(t => {
  185. return {
  186. name: t.name,
  187. id: t.id
  188. }
  189. })
  190. console.log("aaa", this.province);
  191. this.city = res.data.map(t => t.children.map(v => {
  192. return {
  193. name: v.name,
  194. id: v.id
  195. }
  196. }))
  197. this.area = res.data.map(t => t.children.map(v => v.children.map(i => {
  198. return {
  199. name: i.name,
  200. id: i.id
  201. }
  202. })))
  203. //默认显示数据
  204. // this.cityList = [
  205. // this.province.map(res => res.name),
  206. // this.city[0].map(res => res.name),
  207. // this.area[0][0].map(res => res.name)
  208. // ]
  209. let a = []
  210. let b = []
  211. let c = []
  212. this.province.map(res => {
  213. a.push({
  214. name: res.name,
  215. id: res.id,
  216. })
  217. })
  218. this.city[0].map(res => {
  219. b.push({
  220. name: res.name,
  221. id: res.id,
  222. })
  223. })
  224. this.area[0][0].map(res => {
  225. c.push({
  226. name: res.name,
  227. id: res.id,
  228. })
  229. })
  230. this.cityList = [a, b, c]
  231. console.log(33, this.cityList);
  232. if (this.addressData.province && this.addressData.city && this.addressData.area) {
  233. //省索引
  234. let pIdx = this.province.findIndex(v => v.name == this.addressData.province);
  235. //根据省索引设置默认市数据
  236. this.columns[1] = this.city[pIdx].map(res => res.name)
  237. //市索引
  238. let cIdx = this.city[pIdx].findIndex(v => v.name == this.addressData.city);
  239. //根据市索引设置默认区数据
  240. this.columns[2] = this.area[pIdx][cIdx].map(res => res.name)
  241. //区索引
  242. let aIdx = this.area[pIdx][cIdx].findIndex(v => v.name == this.addressData.area);
  243. this.indexs = [pIdx, cIdx, aIdx];
  244. // console.log(pIdx, cIdx, aIdx);
  245. console.log(this.indexs);
  246. }
  247. })
  248. },
  249. changeHandler(e) {
  250. const {
  251. columnIndex, //当前改变值的列下标
  252. value,
  253. values, // values为当前变化列的数组内容
  254. indexs, //当前地区值下标
  255. picker = this.$refs.uPicker
  256. } = e
  257. //columnIndex代表第几列,意思是下标为0的列发生变化
  258. if (columnIndex === 0) {
  259. picker.setColumnValues(1, this.city[indexs[0]].map(v => {
  260. return {
  261. name: v.name,
  262. id: v.id
  263. }
  264. }))
  265. picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
  266. return {
  267. name: v.name,
  268. id: v.id
  269. }
  270. }))
  271. }
  272. if (columnIndex === 1) {
  273. picker.setColumnValues(2, this.area[indexs[0]][indexs[1]].map(v => {
  274. return {
  275. name: v.name,
  276. id: v.id
  277. }
  278. }))
  279. }
  280. },
  281. changefenlei() {
  282. uni.navigateTo({
  283. url: "/pagesA/change-zhiwei",
  284. events: {
  285. changefenlei: (res) => {
  286. this.job_intention.category_job_first = res[0].id, //职位分类一级ID
  287. this.job_intention.category_job_second = res[1].id, //职位分类二级ID
  288. this.job_intention.category_job_id = res[2].id //职位分类三级ID
  289. this.job_intention.category_job_name = res[2].name //职位名称
  290. }
  291. }
  292. })
  293. },
  294. changehangye() {
  295. uni.navigateTo({
  296. url: "/pagesA/change-hangye1",
  297. events: {
  298. changehangye: (res) => {
  299. console.log(res);
  300. console.log(res[1].name);
  301. this.job_intention.category_industry_first = res[0].id, //行业一级ID
  302. this.job_intention.category_industry_id = res[1].id, //行业二级ID
  303. this.job_intention.category_industry_name = res[1].name //行业名称
  304. }
  305. }
  306. })
  307. },
  308. return1() {
  309. uni.navigateBack()
  310. },
  311. next() {
  312. let pre = "job_intention"
  313. let nObj = Object.keys(this.job_intention).reduce((a, c) => (a[`${pre}.${c}`] = this.job_intention[c],a), {});
  314. uni.setStorageSync("job_intention", nObj)
  315. create({
  316. ...this.from,
  317. ...this.addressData,
  318. ...this.job_experience,
  319. ...this.project_experience,
  320. ...this.education_experience,
  321. ...nObj
  322. }).then(res=>{
  323. if(res.c0de == 1){
  324. this.$u.toast(res.msg)
  325. uni.switchTab({
  326. url: '../pages/index/index'
  327. })
  328. }
  329. })
  330. uni.setStorageSync("category_industry_name", this.job_intention.category_industry_name)
  331. uni.setStorageSync("category_industry_id", this.job_intention.category_industry_id)
  332. }
  333. }
  334. }
  335. </script>
  336. <style lang="scss">
  337. page {
  338. background-color: #F3F3F3;
  339. }
  340. .index-page {
  341. overflow: hidden;
  342. height: 100vh;
  343. background: #fff;
  344. .mingpianfont {
  345. height: 50rpx;
  346. font-size: 36rpx;
  347. font-family: PingFangSC-Medium, PingFang SC;
  348. font-weight: 500;
  349. color: #FFFFFF;
  350. line-height: 50rpx;
  351. }
  352. .explain {
  353. margin-top: 24rpx;
  354. width: 528rpx;
  355. height: 36rpx;
  356. font-size: 26rpx;
  357. font-family: PingFangSC-Regular, PingFang SC;
  358. font-weight: 400;
  359. color: #FFFFFF;
  360. line-height: 36rpx;
  361. }
  362. //个人信息
  363. .personal {
  364. width: 750rpx;
  365. background: #FFFFFF;
  366. border-radius: 28rpx 28rpx 0rpx 0rpx;
  367. margin-top: -40rpx;
  368. position: relative;
  369. z-index: 99;
  370. padding: 40rpx 32rpx 0;
  371. box-sizing: border-box;
  372. height: 100%;
  373. margin-bottom: 60rpx !important;
  374. .body-input {
  375. height: 170rpx;
  376. border-bottom: 2rpx solid #F4F4F4;
  377. .input-title {
  378. font-size: 26rpx;
  379. font-family: PingFangSC-Regular, PingFang SC;
  380. font-weight: 400;
  381. color: #888888;
  382. margin-bottom: 20rpx;
  383. margin-top: 30rpx;
  384. box-sizing: border-box;
  385. }
  386. .input-style {
  387. font-size: 32rpx;
  388. font-family: PingFangSC-Regular, PingFang SC;
  389. font-weight: 400;
  390. color: #CACACA;
  391. }
  392. }
  393. .button {
  394. width: 686rpx;
  395. height: 88rpx !important;
  396. background: #0C66C2;
  397. border-radius: 12rpx;
  398. font-size: 32rpx;
  399. font-family: PingFangSC-Medium, PingFang SC;
  400. font-weight: 500;
  401. color: #FFFFFF;
  402. line-height: 88rpx;
  403. margin: 170rpx 0 0rpx 0;
  404. display: flex;
  405. justify-content: center;
  406. margin-bottom: 60rpx;
  407. // position: fixed;
  408. // bottom: 60rpx;
  409. }
  410. }
  411. .index-item {
  412. // width: 702rpx;
  413. // background: #FFFFFF;
  414. // border-radius: 20rpx;
  415. // margin: 20rpx auto;
  416. // padding: 0 20rpx 24rpx 10rpx;
  417. .item-down {
  418. text:first-child {
  419. font-size: 22rpx;
  420. font-family: SFPro-Regular, SFPro;
  421. font-weight: 400;
  422. color: #666666;
  423. }
  424. text:last-child {
  425. font-size: 22rpx;
  426. font-family: PingFangSC-Regular, PingFang SC;
  427. font-weight: 400;
  428. color: #666666;
  429. }
  430. }
  431. .item-gongsi {
  432. margin-bottom: 16rpx;
  433. .text2 {
  434. font-size: 24rpx;
  435. font-family: SFPro-Regular, SFPro;
  436. font-weight: 400;
  437. color: #666666;
  438. }
  439. .logo {
  440. width: 42rpx;
  441. height: 42rpx;
  442. border-radius: 10rpx;
  443. margin-right: 16rpx;
  444. }
  445. .text1 {
  446. max-width: 192rpx;
  447. font-size: 24rpx;
  448. font-family: PingFangSC-Regular, PingFang SC;
  449. font-weight: 400;
  450. color: #444444;
  451. margin-right: 12rpx;
  452. }
  453. }
  454. .item-label {
  455. margin-bottom: 20rpx;
  456. text {
  457. margin-right: 16rpx;
  458. line-height: 46rpx;
  459. background: #F7F7F7;
  460. border-radius: 4rpx;
  461. padding: 0 14rpx;
  462. font-size: 24rpx;
  463. font-family: PingFangSC-Regular, PingFang SC;
  464. font-weight: 400;
  465. color: #5F5F5F;
  466. }
  467. }
  468. .item-top {
  469. height: 88rpx;
  470. .text1 {
  471. font-size: 32rpx;
  472. font-family: PingFangSC-Medium, PingFang SC;
  473. font-weight: 500;
  474. color: #222222;
  475. margin-right: 16rpx;
  476. }
  477. .text2 {
  478. width: 50rpx;
  479. line-height: 32rpx;
  480. background: rgba(255, 83, 53, 0.1);
  481. border-radius: 4rpx;
  482. text-align: center;
  483. font-size: 20rpx;
  484. font-family: PingFangSC-Regular, PingFang SC;
  485. font-weight: 400;
  486. color: #FF5335;
  487. margin-right: 12rpx;
  488. }
  489. .text3 {
  490. width: 90rpx;
  491. line-height: 32rpx;
  492. background: #FFF2E8;
  493. border-radius: 4rpx;
  494. text-align: center;
  495. font-size: 20rpx;
  496. font-family: PingFangSC-Regular, PingFang SC;
  497. font-weight: 400;
  498. color: #FF8620;
  499. margin-right: 12rpx;
  500. }
  501. .text4 {
  502. line-height: 32rpx;
  503. background: #E6EFF8;
  504. border-radius: 4rpx;
  505. padding: 0 4rpx;
  506. text-align: center;
  507. font-size: 20rpx;
  508. font-family: SFPro-Regular, SFPro;
  509. font-weight: 400;
  510. color: #0C66C2;
  511. }
  512. .text5 {
  513. font-size: 32rpx;
  514. font-family: JDZhengHT-Regular, JDZhengHT;
  515. font-weight: 400;
  516. color: #0C66C2;
  517. }
  518. }
  519. }
  520. .index-navbar {
  521. position: sticky;
  522. top: 0;
  523. left: 0;
  524. width: 750rpx;
  525. z-index: 10;
  526. .header-down {
  527. height: 92rpx;
  528. padding: 20rpx 24rpx;
  529. box-sizing: border-box;
  530. .font {
  531. font-size: 40rpx;
  532. font-family: PingFangSC-Medium, PingFang SC;
  533. font-weight: 500;
  534. color: #222222;
  535. }
  536. .right-item {
  537. padding: 0 16rpx;
  538. height: 52rpx;
  539. background: #F3F3F3;
  540. border-radius: 4rpx;
  541. margin-left: 20rpx;
  542. .text {
  543. margin-right: 4rpx;
  544. font-size: 26rpx;
  545. font-family: PingFangSC-Regular, PingFang SC;
  546. font-weight: 400;
  547. color: #666666;
  548. }
  549. }
  550. .down-left {
  551. .text {
  552. margin-right: 4rpx;
  553. font-size: 26rpx;
  554. font-family: PingFangSC-Medium, PingFang SC;
  555. font-weight: 500;
  556. color: #222222;
  557. }
  558. }
  559. }
  560. .index-bg {
  561. position: absolute;
  562. top: 0;
  563. left: 0;
  564. z-index: -1;
  565. width: 750rpx;
  566. height: 392rpx;
  567. }
  568. }
  569. .index-header {
  570. flex: 1;
  571. padding: 0 32rpx;
  572. height: 50rpx;
  573. .index-search {
  574. width: 200rpx;
  575. height: 64rpx;
  576. background: #FFFFFF;
  577. border-radius: 20rpx;
  578. padding: 0 28rpx;
  579. .text1 {
  580. font-size: 24rpx;
  581. font-family: PingFangSC-Regular, PingFang SC;
  582. font-weight: 400;
  583. color: #999999;
  584. margin-left: 16rpx;
  585. }
  586. }
  587. .index-tabs {
  588. text:first-child {
  589. font-size: 36rpx;
  590. font-family: PingFangSC-Medium, PingFang SC;
  591. font-weight: 500;
  592. color: #222222;
  593. }
  594. text:last-child {
  595. width: 76rpx;
  596. height: 12rpx;
  597. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  598. margin-top: -20rpx;
  599. border-radius: 100rpx;
  600. }
  601. }
  602. }
  603. }
  604. ::v-deep .u-navbar__content__left {
  605. padding: 0 !important;
  606. }
  607. ::v-deep .u-subsection {
  608. width: 312rpx !important;
  609. }
  610. </style>