expectation.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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>
  8. <view id="height" class="index-header u-flex u-row-between "
  9. style="position: relative; " slot="left">
  10. <u-icon 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. </view>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 个人信息 -->
  25. <view class="personal">
  26. <view class="body-input u-flex-col u-row-center ">
  27. <text class="input-title">期望职位</text>
  28. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  29. placeholder="请选择期望职位" border placeholderClass='input-style' suffixIcon="arrow-right"
  30. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" ></u--input>
  31. </view>
  32. <view class="body-input u-flex-col u-row-center" >
  33. <text class="input-title">期望城市</text>
  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;" ></u--input>
  37. </view>
  38. <view class="body-input u-flex-col u-row-center" >
  39. <text class="input-title">期望行业</text>
  40. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  41. placeholder="请选择您的期望行业" border placeholderClass='input-style' suffixIcon="arrow-right"
  42. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" ></u--input>
  43. </view>
  44. <view class="body-input u-flex-col u-row-center" >
  45. <text class="input-title">期望薪资</text>
  46. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  47. placeholder="请选择您的期望薪资" border placeholderClass='input-style' suffixIcon="arrow-right"
  48. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" ></u--input>
  49. </view>
  50. <view class="body-input u-flex-col u-row-center" >
  51. <text class="input-title">优势亮点(选填)</text>
  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;" ></u--input>
  55. </view>
  56. <view class="button" @click="next">
  57. 开启求职之旅
  58. </view>
  59. </view>
  60. <!-- 选择器 -->
  61. <u-picker title="性别" :show="sexShow" @confirm="sexConfirm" :columns="sexdata" @cancel='close()'></u-picker>
  62. <u-datetime-picker title="教育时间" :minDate="minDate" @confirm="birthdayConfirm" :show="birthdayShow" mode="date"
  63. @cancel='close()'></u-datetime-picker>
  64. </view>
  65. </template>
  66. <script>
  67. import {
  68. } from "@/units/inquire.js"
  69. export default {
  70. data() {
  71. return {
  72. height:''
  73. }
  74. },
  75. onLoad() {
  76. this.getHeight()
  77. this.minDate = Number(new Date('1900-01-01'));
  78. },
  79. methods: {
  80. getHeight() {
  81. const query = uni.createSelectorQuery().in(this);
  82. query.select('#height').boundingClientRect(data => {
  83. this.height = (data.height) * 2
  84. }).exec();
  85. },
  86. next(){
  87. uni.switchTab({
  88. url:'../pages/index/index'
  89. })
  90. }
  91. }
  92. }
  93. </script>
  94. <style lang="scss">
  95. page {
  96. background-color: #F3F3F3;
  97. }
  98. .index-page {
  99. overflow: hidden;
  100. // height: 100vh;
  101. background: #fff;
  102. margin-bottom: 60rpx;
  103. .mingpianfont {
  104. height: 50rpx;
  105. font-size: 36rpx;
  106. font-family: PingFangSC-Medium, PingFang SC;
  107. font-weight: 500;
  108. color: #FFFFFF;
  109. line-height: 50rpx;
  110. }
  111. .explain {
  112. margin-top: 24rpx;
  113. width: 528rpx;
  114. height: 36rpx;
  115. font-size: 26rpx;
  116. font-family: PingFangSC-Regular, PingFang SC;
  117. font-weight: 400;
  118. color: #FFFFFF;
  119. line-height: 36rpx;
  120. }
  121. //个人信息
  122. .personal {
  123. width: 750rpx;
  124. background: #FFFFFF;
  125. border-radius: 28rpx 28rpx 0rpx 0rpx;
  126. margin-top: -40rpx;
  127. position: relative;
  128. z-index: 99;
  129. padding: 40rpx 32rpx 0;
  130. box-sizing: border-box;
  131. height: 100%;
  132. margin-bottom: 60rpx !important;
  133. .body-input {
  134. height: 170rpx;
  135. border-bottom: 2rpx solid #F4F4F4;
  136. .input-title {
  137. font-size: 26rpx;
  138. font-family: PingFangSC-Regular, PingFang SC;
  139. font-weight: 400;
  140. color: #888888;
  141. margin-bottom: 20rpx;
  142. margin-top: 30rpx;
  143. box-sizing: border-box;
  144. }
  145. .input-style {
  146. font-size: 32rpx;
  147. font-family: PingFangSC-Regular, PingFang SC;
  148. font-weight: 400;
  149. color: #CACACA;
  150. }
  151. }
  152. .button {
  153. width: 686rpx;
  154. height: 88rpx !important;
  155. background: #0C66C2;
  156. border-radius: 12rpx;
  157. font-size: 32rpx;
  158. font-family: PingFangSC-Medium, PingFang SC;
  159. font-weight: 500;
  160. color: #FFFFFF;
  161. line-height: 88rpx;
  162. margin: 170rpx 0 0rpx 0;
  163. display: flex;
  164. justify-content: center;
  165. // position: fixed;
  166. // bottom: 60rpx;
  167. }
  168. }
  169. .index-item {
  170. // width: 702rpx;
  171. // background: #FFFFFF;
  172. // border-radius: 20rpx;
  173. // margin: 20rpx auto;
  174. // padding: 0 20rpx 24rpx 10rpx;
  175. .item-down {
  176. text:first-child {
  177. font-size: 22rpx;
  178. font-family: SFPro-Regular, SFPro;
  179. font-weight: 400;
  180. color: #666666;
  181. }
  182. text:last-child {
  183. font-size: 22rpx;
  184. font-family: PingFangSC-Regular, PingFang SC;
  185. font-weight: 400;
  186. color: #666666;
  187. }
  188. }
  189. .item-gongsi {
  190. margin-bottom: 16rpx;
  191. .text2 {
  192. font-size: 24rpx;
  193. font-family: SFPro-Regular, SFPro;
  194. font-weight: 400;
  195. color: #666666;
  196. }
  197. .logo {
  198. width: 42rpx;
  199. height: 42rpx;
  200. border-radius: 10rpx;
  201. margin-right: 16rpx;
  202. }
  203. .text1 {
  204. max-width: 192rpx;
  205. font-size: 24rpx;
  206. font-family: PingFangSC-Regular, PingFang SC;
  207. font-weight: 400;
  208. color: #444444;
  209. margin-right: 12rpx;
  210. }
  211. }
  212. .item-label {
  213. margin-bottom: 20rpx;
  214. text {
  215. margin-right: 16rpx;
  216. line-height: 46rpx;
  217. background: #F7F7F7;
  218. border-radius: 4rpx;
  219. padding: 0 14rpx;
  220. font-size: 24rpx;
  221. font-family: PingFangSC-Regular, PingFang SC;
  222. font-weight: 400;
  223. color: #5F5F5F;
  224. }
  225. }
  226. .item-top {
  227. height: 88rpx;
  228. .text1 {
  229. font-size: 32rpx;
  230. font-family: PingFangSC-Medium, PingFang SC;
  231. font-weight: 500;
  232. color: #222222;
  233. margin-right: 16rpx;
  234. }
  235. .text2 {
  236. width: 50rpx;
  237. line-height: 32rpx;
  238. background: rgba(255, 83, 53, 0.1);
  239. border-radius: 4rpx;
  240. text-align: center;
  241. font-size: 20rpx;
  242. font-family: PingFangSC-Regular, PingFang SC;
  243. font-weight: 400;
  244. color: #FF5335;
  245. margin-right: 12rpx;
  246. }
  247. .text3 {
  248. width: 90rpx;
  249. line-height: 32rpx;
  250. background: #FFF2E8;
  251. border-radius: 4rpx;
  252. text-align: center;
  253. font-size: 20rpx;
  254. font-family: PingFangSC-Regular, PingFang SC;
  255. font-weight: 400;
  256. color: #FF8620;
  257. margin-right: 12rpx;
  258. }
  259. .text4 {
  260. line-height: 32rpx;
  261. background: #E6EFF8;
  262. border-radius: 4rpx;
  263. padding: 0 4rpx;
  264. text-align: center;
  265. font-size: 20rpx;
  266. font-family: SFPro-Regular, SFPro;
  267. font-weight: 400;
  268. color: #0C66C2;
  269. }
  270. .text5 {
  271. font-size: 32rpx;
  272. font-family: JDZhengHT-Regular, JDZhengHT;
  273. font-weight: 400;
  274. color: #0C66C2;
  275. }
  276. }
  277. }
  278. .index-navbar {
  279. position: sticky;
  280. top: 0;
  281. left: 0;
  282. width: 750rpx;
  283. z-index: 10;
  284. .header-down {
  285. height: 92rpx;
  286. padding: 20rpx 24rpx;
  287. box-sizing: border-box;
  288. .font {
  289. font-size: 40rpx;
  290. font-family: PingFangSC-Medium, PingFang SC;
  291. font-weight: 500;
  292. color: #222222;
  293. }
  294. .right-item {
  295. padding: 0 16rpx;
  296. height: 52rpx;
  297. background: #F3F3F3;
  298. border-radius: 4rpx;
  299. margin-left: 20rpx;
  300. .text {
  301. margin-right: 4rpx;
  302. font-size: 26rpx;
  303. font-family: PingFangSC-Regular, PingFang SC;
  304. font-weight: 400;
  305. color: #666666;
  306. }
  307. }
  308. .down-left {
  309. .text {
  310. margin-right: 4rpx;
  311. font-size: 26rpx;
  312. font-family: PingFangSC-Medium, PingFang SC;
  313. font-weight: 500;
  314. color: #222222;
  315. }
  316. }
  317. }
  318. .index-bg {
  319. position: absolute;
  320. top: 0;
  321. left: 0;
  322. z-index: -1;
  323. width: 750rpx;
  324. height: 392rpx;
  325. }
  326. }
  327. .index-header {
  328. flex: 1;
  329. padding: 0 32rpx;
  330. height: 50rpx;
  331. .index-search {
  332. width: 200rpx;
  333. height: 64rpx;
  334. background: #FFFFFF;
  335. border-radius: 20rpx;
  336. padding: 0 28rpx;
  337. .text1 {
  338. font-size: 24rpx;
  339. font-family: PingFangSC-Regular, PingFang SC;
  340. font-weight: 400;
  341. color: #999999;
  342. margin-left: 16rpx;
  343. }
  344. }
  345. .index-tabs {
  346. text:first-child {
  347. font-size: 36rpx;
  348. font-family: PingFangSC-Medium, PingFang SC;
  349. font-weight: 500;
  350. color: #222222;
  351. }
  352. text:last-child {
  353. width: 76rpx;
  354. height: 12rpx;
  355. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  356. margin-top: -20rpx;
  357. border-radius: 100rpx;
  358. }
  359. }
  360. }
  361. }
  362. ::v-deep .u-navbar__content__left {
  363. padding: 0 !important;
  364. }
  365. ::v-deep .u-subsection {
  366. width: 312rpx !important;
  367. }
  368. </style>