userinfo.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  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. <!-- <view id="height" class="index-header u-flex u-row-between "
  9. style="position: relative; " slot="left">
  10. <u-icon @click='return1' name="arrow-left" color="#fff" size="28"></u-icon>
  11. </view> -->
  12. </u-navbar>
  13. <view class="header-down " :style="{marginTop:height+'rpx'}"
  14. style="padding: 28rpx 0 0 32rpx;box-sizing: border-box;">
  15. <view class="mingpianfont">
  16. 邀请你完善基础求职名片
  17. </view>
  18. <view class="explain">
  19. <text>海量名企职位|</text>
  20. <text>优质猎头服务|</text>
  21. <text>全程隐私保护</text>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <!-- 个人信息 -->
  27. <view class="personal">
  28. <view class="body-input u-flex-col u-row-center ">
  29. <text class="input-title">姓名</text>
  30. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写您的真实姓名" border
  31. placeholderClass='input-style' v-model="name"></u--input>
  32. </view>
  33. <view class="body-input u-flex-col u-row-center" @click="sexShow = true">
  34. <text class="input-title">性别</text>
  35. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  36. placeholder="请选择您的性别" border placeholderClass='input-style' suffixIcon="arrow-right"
  37. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="sex"></u--input>
  38. </view>
  39. <view class="body-input u-flex-col u-row-center" @click="birthdayShow = true">
  40. <text class="input-title">出生年月</text>
  41. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  42. placeholder="请选择您的出生年月" border placeholderClass='input-style' suffixIcon="arrow-right"
  43. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="birthday"></u--input>
  44. </view>
  45. <view class="body-input u-flex-col u-row-center">
  46. <text class="input-title">当前求职状态</text>
  47. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  48. placeholder="请选择您当前求职状态" border placeholderClass='input-style' suffixIcon="arrow-right"
  49. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  50. v-model="job_status_id"></u--input>
  51. </view>
  52. <view class="body-input u-flex-col u-row-center">
  53. <text class="input-title">参加工作时间</text>
  54. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  55. placeholder="请选择您首次参加工作的时间" border placeholderClass='input-style' suffixIcon="arrow-right"
  56. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="job_time"></u--input>
  57. </view>
  58. <view class="body-input u-flex-col u-row-center">
  59. <text class="input-title">所在城市</text>
  60. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  61. placeholder="请选择您所在的城市" border placeholderClass='input-style' suffixIcon="arrow-right"
  62. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="job_role"></u--input>
  63. </view>
  64. <view class="button" @click="next">
  65. 下一步
  66. </view>
  67. </view>
  68. <!-- 选择器 -->
  69. <u-picker title="性别" :show="sexShow" @confirm="sexConfirm" :columns="sexdata" @cancel='close()'></u-picker>
  70. <u-datetime-picker title="出生日期" :minDate="minDate" @confirm="birthdayConfirm" :show="birthdayShow" mode="date"
  71. @cancel='close()'></u-datetime-picker>
  72. </view>
  73. </template>
  74. <script>
  75. import {
  76. } from "@/units/inquire.js"
  77. export default {
  78. data() {
  79. return {
  80. //选择器状态
  81. sexShow: false, //性别
  82. birthdayShow: false, //出生年月
  83. // 列表数据
  84. sex: "",
  85. sexvalue: "", //性别传的值
  86. birthday: "",
  87. minDate: "",
  88. height: '',
  89. list: ['学生', '职场人'],
  90. current: 0,
  91. sexdata: [
  92. ['男', '女', '保密']
  93. ],
  94. }
  95. },
  96. onLoad() {
  97. // this.getHeight()
  98. this.minDate = Number(new Date('1900-01-01'));
  99. },
  100. methods: {
  101. return1() {
  102. uni.navigateBack()
  103. },
  104. getHeight() {
  105. const query = uni.createSelectorQuery().in(this);
  106. query.select('#height').boundingClientRect(data => {
  107. this.height = (data.height ) * 2
  108. }).exec();
  109. },
  110. // 求职身份选择器
  111. sectionChange(index) {
  112. this.current = index;
  113. },
  114. //性别选择器确认
  115. sexConfirm(e) {
  116. if (e.value[0] == '男') {
  117. this.sex = "男",
  118. this.sexvalue = "male"
  119. } else if (e.value[0] == "女") {
  120. this.sex = "女",
  121. this.sexvalue = "female"
  122. } else {
  123. this.sex = "保密",
  124. this.sexvalue = "secret"
  125. }
  126. this.sexShow = false
  127. },
  128. //出生日期选择器
  129. async birthdayConfirm(e) {
  130. const timeFormat = uni.$u.timeFormat;
  131. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd');
  132. this.birthday = timeValue;
  133. this.birthdayShow = false
  134. },
  135. //关闭模态框
  136. close() {
  137. this.sexShow = false;
  138. this.birthdayShow = false
  139. },
  140. next(){
  141. uni.navigateTo({
  142. url:"../pagesA/work"
  143. })
  144. }
  145. }
  146. }
  147. </script>
  148. <style lang="scss">
  149. page {
  150. background-color: #F3F3F3;
  151. }
  152. .index-page {
  153. overflow: hidden;
  154. margin-bottom: 60rpx;
  155. .mingpianfont {
  156. height: 50rpx;
  157. font-size: 36rpx;
  158. font-family: PingFangSC-Medium, PingFang SC;
  159. font-weight: 500;
  160. color: #FFFFFF;
  161. line-height: 50rpx;
  162. }
  163. .explain {
  164. margin-top: 24rpx;
  165. width: 528rpx;
  166. height: 36rpx;
  167. font-size: 26rpx;
  168. font-family: PingFangSC-Regular, PingFang SC;
  169. font-weight: 400;
  170. color: #FFFFFF;
  171. line-height: 36rpx;
  172. }
  173. //个人信息
  174. .personal {
  175. width: 750rpx;
  176. background: #FFFFFF;
  177. border-radius: 28rpx 28rpx 0rpx 0rpx;
  178. margin-top: -40rpx;
  179. position: relative;
  180. z-index: 99;
  181. padding: 40rpx 32rpx 0;
  182. margin-bottom: 60rpx;
  183. box-sizing: border-box;
  184. .body-input {
  185. height: 170rpx;
  186. border-bottom: 2rpx solid #F4F4F4;
  187. .input-title {
  188. font-size: 26rpx;
  189. font-family: PingFangSC-Regular, PingFang SC;
  190. font-weight: 400;
  191. color: #888888;
  192. margin-bottom: 20rpx;
  193. margin-top: 30rpx;
  194. box-sizing: border-box;
  195. }
  196. .input-style {
  197. font-size: 32rpx;
  198. font-family: PingFangSC-Regular, PingFang SC;
  199. font-weight: 400;
  200. color: #CACACA;
  201. }
  202. }
  203. .button {
  204. width: 686rpx;
  205. height: 88rpx !important;
  206. background: #0C66C2;
  207. border-radius: 12rpx;
  208. font-size: 32rpx;
  209. font-family: PingFangSC-Medium, PingFang SC;
  210. font-weight: 500;
  211. color: #FFFFFF;
  212. line-height: 88rpx;
  213. margin: 88rpx 0 0rpx 0;
  214. display: flex;
  215. justify-content: center;
  216. }
  217. }
  218. .index-item {
  219. // width: 702rpx;
  220. // background: #FFFFFF;
  221. // border-radius: 20rpx;
  222. // margin: 20rpx auto;
  223. // padding: 0 20rpx 24rpx 10rpx;
  224. .item-down {
  225. text:first-child {
  226. font-size: 22rpx;
  227. font-family: SFPro-Regular, SFPro;
  228. font-weight: 400;
  229. color: #666666;
  230. }
  231. text:last-child {
  232. font-size: 22rpx;
  233. font-family: PingFangSC-Regular, PingFang SC;
  234. font-weight: 400;
  235. color: #666666;
  236. }
  237. }
  238. .item-gongsi {
  239. margin-bottom: 16rpx;
  240. .text2 {
  241. font-size: 24rpx;
  242. font-family: SFPro-Regular, SFPro;
  243. font-weight: 400;
  244. color: #666666;
  245. }
  246. .logo {
  247. width: 42rpx;
  248. height: 42rpx;
  249. border-radius: 10rpx;
  250. margin-right: 16rpx;
  251. }
  252. .text1 {
  253. max-width: 192rpx;
  254. font-size: 24rpx;
  255. font-family: PingFangSC-Regular, PingFang SC;
  256. font-weight: 400;
  257. color: #444444;
  258. margin-right: 12rpx;
  259. }
  260. }
  261. .item-label {
  262. margin-bottom: 20rpx;
  263. text {
  264. margin-right: 16rpx;
  265. line-height: 46rpx;
  266. background: #F7F7F7;
  267. border-radius: 4rpx;
  268. padding: 0 14rpx;
  269. font-size: 24rpx;
  270. font-family: PingFangSC-Regular, PingFang SC;
  271. font-weight: 400;
  272. color: #5F5F5F;
  273. }
  274. }
  275. .item-top {
  276. height: 88rpx;
  277. .text1 {
  278. font-size: 32rpx;
  279. font-family: PingFangSC-Medium, PingFang SC;
  280. font-weight: 500;
  281. color: #222222;
  282. margin-right: 16rpx;
  283. }
  284. .text2 {
  285. width: 50rpx;
  286. line-height: 32rpx;
  287. background: rgba(255, 83, 53, 0.1);
  288. border-radius: 4rpx;
  289. text-align: center;
  290. font-size: 20rpx;
  291. font-family: PingFangSC-Regular, PingFang SC;
  292. font-weight: 400;
  293. color: #FF5335;
  294. margin-right: 12rpx;
  295. }
  296. .text3 {
  297. width: 90rpx;
  298. line-height: 32rpx;
  299. background: #FFF2E8;
  300. border-radius: 4rpx;
  301. text-align: center;
  302. font-size: 20rpx;
  303. font-family: PingFangSC-Regular, PingFang SC;
  304. font-weight: 400;
  305. color: #FF8620;
  306. margin-right: 12rpx;
  307. }
  308. .text4 {
  309. line-height: 32rpx;
  310. background: #E6EFF8;
  311. border-radius: 4rpx;
  312. padding: 0 4rpx;
  313. text-align: center;
  314. font-size: 20rpx;
  315. font-family: SFPro-Regular, SFPro;
  316. font-weight: 400;
  317. color: #0C66C2;
  318. }
  319. .text5 {
  320. font-size: 32rpx;
  321. font-family: JDZhengHT-Regular, JDZhengHT;
  322. font-weight: 400;
  323. color: #0C66C2;
  324. }
  325. }
  326. }
  327. .index-navbar {
  328. position: sticky;
  329. top: 0;
  330. left: 0;
  331. width: 750rpx;
  332. z-index: 10;
  333. .header-down {
  334. height: 92rpx;
  335. padding: 20rpx 24rpx;
  336. box-sizing: border-box;
  337. .font {
  338. font-size: 40rpx;
  339. font-family: PingFangSC-Medium, PingFang SC;
  340. font-weight: 500;
  341. color: #222222;
  342. }
  343. .right-item {
  344. padding: 0 16rpx;
  345. height: 52rpx;
  346. background: #F3F3F3;
  347. border-radius: 4rpx;
  348. margin-left: 20rpx;
  349. .text {
  350. margin-right: 4rpx;
  351. font-size: 26rpx;
  352. font-family: PingFangSC-Regular, PingFang SC;
  353. font-weight: 400;
  354. color: #666666;
  355. }
  356. }
  357. .down-left {
  358. .text {
  359. margin-right: 4rpx;
  360. font-size: 26rpx;
  361. font-family: PingFangSC-Medium, PingFang SC;
  362. font-weight: 500;
  363. color: #222222;
  364. }
  365. }
  366. }
  367. .index-bg {
  368. position: absolute;
  369. top: 0;
  370. left: 0;
  371. z-index: -1;
  372. width: 750rpx;
  373. height: 392rpx;
  374. }
  375. }
  376. .index-header {
  377. flex: 1;
  378. padding: 0 32rpx;
  379. height: 50rpx;
  380. .index-search {
  381. width: 200rpx;
  382. height: 64rpx;
  383. background: #FFFFFF;
  384. border-radius: 20rpx;
  385. padding: 0 28rpx;
  386. .text1 {
  387. font-size: 24rpx;
  388. font-family: PingFangSC-Regular, PingFang SC;
  389. font-weight: 400;
  390. color: #999999;
  391. margin-left: 16rpx;
  392. }
  393. }
  394. .index-tabs {
  395. text:first-child {
  396. font-size: 36rpx;
  397. font-family: PingFangSC-Medium, PingFang SC;
  398. font-weight: 500;
  399. color: #222222;
  400. }
  401. text:last-child {
  402. width: 76rpx;
  403. height: 12rpx;
  404. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  405. margin-top: -20rpx;
  406. border-radius: 100rpx;
  407. }
  408. }
  409. }
  410. }
  411. ::v-deep .u-navbar__content__left {
  412. padding: 0 !important;
  413. }
  414. ::v-deep .u-subsection {
  415. width: 312rpx !important;
  416. }
  417. </style>