jianli.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  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 :safeAreaInsetTop="true" @leftClick="return1">
  8. </u-navbar>
  9. <view class="header-down " style="padding: 28rpx 0 0 32rpx;box-sizing: border-box;">
  10. <view class="mingpianfont">
  11. 邀请你完善基础求职名片
  12. </view>
  13. <view class="explain">
  14. <text>海量名企职位|</text>
  15. <text>优质猎头服务|</text>
  16. <text>全程隐私保护</text>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- 个人信息 -->
  22. <view class="personal">
  23. <view class="body-input u-flex-col u-row-center ">
  24. <text class="input-title">姓名</text>
  25. <u-input customStyle="padding:0 !important" type="text" placeholder="请填写您的真实姓名" border
  26. placeholderClass='input-style' v-model="user.name"></u-input>
  27. </view>
  28. <view class="body-input u-flex-col u-row-center" @click="sexShow = true">
  29. <text class="input-title">性别</text>
  30. <u-input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  31. placeholder="请选择您的性别" border placeholderClass='input-style' suffixIcon="arrow-right"
  32. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  33. v-model="user.sexvalue"></u-input>
  34. </view>
  35. <view class="body-input u-flex-col u-row-center" @click="birthdayBtn">
  36. <text class="input-title">出生年月</text>
  37. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  38. placeholder="请选择您的出生年月" border placeholderClass='input-style' suffixIcon="arrow-right"
  39. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  40. v-model="user.birthday"></u--input>
  41. </view>
  42. <view class="body-input u-flex-col u-row-center" style="height: 128rpx;">
  43. <view class="u-flex u-row-between ">
  44. <view class="">
  45. <text class="input-title">求职身份</text>
  46. </view>
  47. <u-subsection :list="list" :current="current" @change="sectionChange"
  48. v-model="user.job_role"></u-subsection>
  49. </view>
  50. </view>
  51. <view class="body-input u-flex-col u-row-center" @click="cityShow = true">
  52. <text class="input-title">户口所在地</text>
  53. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  54. placeholder="请选择您的户口所在地" border placeholderClass='input-style' suffixIcon="arrow-right"
  55. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="user.city1"></u--input>
  56. </view>
  57. <view class="body-input u-flex-col u-row-center" @click="jobShow = true">
  58. <text class="input-title">当前求职状态</text>
  59. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  60. placeholder="请选择您当前求职状态" border placeholderClass='input-style' suffixIcon="arrow-right"
  61. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="user.job"></u--input>
  62. </view>
  63. <view class="body-input u-flex-col u-row-center" @click="workBtn">
  64. <text class="input-title">参加工作时间</text>
  65. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  66. placeholder="请选择您参加工作的时间" border placeholderClass='input-style' suffixIcon="arrow-right"
  67. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  68. v-model="user.job_time"></u--input>
  69. </view>
  70. <view class="body-input u-flex-col u-row-center">
  71. <text class="input-title">邮箱</text>
  72. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写(选填)" border
  73. placeholderClass='input-style' v-model="user.email"></u--input>
  74. </view>
  75. <view class="body-input u-flex-col u-row-center">
  76. <text class="input-title">手机号</text>
  77. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写" border
  78. placeholderClass='input-style' v-model="user.mobile"></u--input>
  79. </view>
  80. <view class="body-input u-flex-col u-row-center" @click="maritalShow = true">
  81. <text class="input-title">婚姻状态</text>
  82. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  83. placeholder="请选择(选填)" border placeholderClass='input-style' suffixIcon="arrow-right"
  84. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  85. v-model="user.status"></u--input>
  86. </view>
  87. <view class="body-input u-flex-col u-row-center" @click="politicsShow = true">
  88. <text class="input-title">政治面貌</text>
  89. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  90. placeholder="请选择(选填)" border placeholderClass='input-style' suffixIcon="arrow-right"
  91. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  92. v-model="user.politics"></u--input>
  93. </view>
  94. <view class="button" @click="next">
  95. 下一步
  96. </view>
  97. </view>
  98. <!-- 选择器 -->
  99. <u-picker title="性别" :show="sexShow" @confirm="sexConfirm" :columns="sexdata" @cancel='close()'></u-picker>
  100. <u-picker title="政治面貌" keyName="name" :show="politicsShow" @confirm="politicsConfirm" :columns="politicslist"
  101. @cancel='close()'></u-picker>
  102. <u-picker title="婚姻状态" keyName="name" :show="maritalShow" @confirm="maritalConfirm" :columns="maritallist"
  103. @cancel='close()'>
  104. </u-picker><u-picker title="求职状态" keyName="name" :show="jobShow" @confirm="jobConfirm" :columns="joblist"
  105. @cancel='close()'></u-picker>
  106. <u-datetime-picker ref="picker" title="出生日期" :minDate="minDate" @confirm="birthdayConfirm" :show="birthdayShow"
  107. mode="date" @cancel='close()'></u-datetime-picker>
  108. <u-datetime-picker ref="pickers" title="参加工作时间" :minDate="minDate1" @confirm="workConfirm" :show="workShow"
  109. mode="date" @cancel='close()'></u-datetime-picker>
  110. <u-picker ref="uPicker" keyName="name" title="户口所在地" :defaultIndex="indexs" :show="cityShow" :columns="cityList"
  111. @confirm="cityconfirm" @cancel="cityShow = false" @change="changeHandler"></u-picker>
  112. </view>
  113. </template>
  114. <script>
  115. import {
  116. politics,
  117. marital,
  118. getAllArea,
  119. getjob,
  120. profile
  121. } from "@/units/inquire.js"
  122. export default {
  123. data() {
  124. return {
  125. addressData: {
  126. id: "",
  127. province: "",
  128. city: "",
  129. area: "",
  130. detail: "",
  131. userName: "",
  132. phone: "",
  133. isDefault: false
  134. }, //地址数据
  135. province: [], //省数据
  136. city: [], //市数据
  137. area: [], //区数据
  138. provinceid: "", //省数据
  139. cityid: "", //市数据
  140. areaid: "", //区数据
  141. indexs: [], //默认地区下标
  142. //选择器状态
  143. sexShow: false, //性别
  144. birthdayShow: false, //出生年月
  145. politicsShow: false, //政治面貌
  146. maritalShow: false, //婚姻状态
  147. workShow: false, //工作时间
  148. cityShow: false, //户口所在地
  149. jobShow: false, //工作显示
  150. user: {
  151. name: "",
  152. sex: "",
  153. birthday: "",
  154. job_name: "",
  155. industry_id: "", //行业id
  156. province_id: "", //省份id
  157. city_id: "", //城市id
  158. invitation_code: "", //邀请码
  159. avatar: "", //头像
  160. job_role: "student", //求职身份
  161. job_time: "", //参加工作时间
  162. mobile: "", //手机号
  163. domicile_province_id: "", //户籍省份
  164. domicile_city_id: "", //市
  165. political_status_id: "", //政治面貌
  166. marital_status_id: "", //婚姻状态
  167. job_status_id: "", //求职
  168. email: "", //邮箱
  169. sexvalue: "",
  170. city1: "",
  171. politics: "",
  172. status: "",
  173. job: "",
  174. },
  175. minDate: "",
  176. minDate1: "",
  177. height: '',
  178. list: ['学生', '职场人'],
  179. current: 0,
  180. sexdata: [
  181. ['男', '女', '保密']
  182. ],
  183. politicslist: [
  184. []
  185. ],
  186. maritallist: [
  187. []
  188. ],
  189. cityList: [], //数据地址
  190. cityids: [], //数据地址
  191. joblist: [],
  192. radiovalue1: "",
  193. nowork: 0
  194. }
  195. },
  196. onLoad(options) {
  197. if (uni.getStorageSync("from1")) {
  198. this.user = uni.getStorageSync("from1")
  199. }
  200. if (options.nowork) {
  201. this.nowork = options.nowork
  202. }
  203. this.radiovalue1 = options.radiovalue1
  204. this.minDate = Number(new Date('1900-01-01'));
  205. this.minDate1 = Number(new Date('1980-01-01'));
  206. this.getpolitics()
  207. this.getmarital()
  208. this.AllArea()
  209. this.getJob()
  210. if (uni.getStorageSync('from')) {
  211. this.user = uni.getStorageSync("from")
  212. if (this.user.job == "student") {
  213. this.current = 0
  214. } else {
  215. this.current = 1
  216. }
  217. }
  218. console.log(this.user);
  219. },
  220. methods: {
  221. workBtn() {
  222. this.workShow = true
  223. this.$refs.pickers.innerValue = new Date(1672502400000).getTime()
  224. },
  225. // 获取政治面貌
  226. getpolitics() {
  227. politics().then((res) => {
  228. this.politicslist[0] = res.data
  229. })
  230. },
  231. //婚姻状态
  232. getmarital() {
  233. marital().then((res) => {
  234. this.maritallist[0] = res.data
  235. })
  236. },
  237. //获取求职状态
  238. getJob() {
  239. getjob().then((res) => {
  240. this.joblist[0] = res.data
  241. })
  242. },
  243. //所有地区
  244. AllArea() {
  245. getAllArea().then((res) => {
  246. this.province = res.data.map(t => {
  247. return {
  248. name: t.name,
  249. id: t.id
  250. }
  251. })
  252. this.city = res.data.map(t => t.children.map(v => {
  253. return {
  254. name: v.name,
  255. id: v.id
  256. }
  257. }))
  258. this.area = res.data.map(t => t.children.map(v => v.children.map(i => {
  259. return {
  260. name: i.name,
  261. id: i.id
  262. }
  263. })))
  264. //默认显示数据
  265. // this.cityList = [
  266. // this.province.map(res => res.name),
  267. // this.city[0].map(res => res.name),
  268. // this.area[0][0].map(res => res.name)
  269. // ]
  270. let a = []
  271. let b = []
  272. let c = []
  273. this.province.map(res => {
  274. a.push({
  275. name: res.name,
  276. id: res.id,
  277. })
  278. })
  279. this.city[0].map(res => {
  280. b.push({
  281. name: res.name,
  282. id: res.id,
  283. })
  284. })
  285. this.area[0][0].map(res => {
  286. c.push({
  287. name: res.name,
  288. id: res.id,
  289. })
  290. })
  291. this.cityList = [a, b, c]
  292. if (this.addressData.province && this.addressData.city && this.addressData.area) {
  293. //省索引
  294. let pIdx = this.province.findIndex(v => v.name == this.addressData.province);
  295. //根据省索引设置默认市数据
  296. this.columns[1] = this.city[pIdx].map(res => res.name)
  297. //市索引
  298. let cIdx = this.city[pIdx].findIndex(v => v.name == this.addressData.city);
  299. //根据市索引设置默认区数据
  300. this.columns[2] = this.area[pIdx][cIdx].map(res => res.name)
  301. //区索引
  302. let aIdx = this.area[pIdx][cIdx].findIndex(v => v.name == this.addressData.area);
  303. this.indexs = [pIdx, cIdx, aIdx];
  304. // console.log(pIdx, cIdx, aIdx);
  305. console.log(this.indexs);
  306. }
  307. })
  308. },
  309. changeHandler(e) {
  310. const {
  311. columnIndex, //当前改变值的列下标
  312. value,
  313. values, // values为当前变化列的数组内容
  314. indexs, //当前地区值下标
  315. picker = this.$refs.uPicker
  316. } = e
  317. //columnIndex代表第几列,意思是下标为0的列发生变化
  318. if (columnIndex === 0) {
  319. picker.setColumnValues(1, this.city[indexs[0]].map(v => {
  320. return {
  321. name: v.name,
  322. id: v.id
  323. }
  324. }))
  325. picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
  326. return {
  327. name: v.name,
  328. id: v.id
  329. }
  330. }))
  331. }
  332. if (columnIndex === 1) {
  333. picker.setColumnValues(2, this.area[indexs[0]][indexs[1]].map(v => {
  334. return {
  335. name: v.name,
  336. id: v.id
  337. }
  338. }))
  339. }
  340. },
  341. // 选择器
  342. // 求职身份选择器
  343. sectionChange(index) {
  344. console.log(index);
  345. this.current = index;
  346. if (index == 0) {
  347. this.user.job_role = "student"
  348. } else {
  349. this.user.job_role = "employee"
  350. }
  351. },
  352. //性别选择器确认
  353. sexConfirm(e) {
  354. console.log(e);
  355. if (e.value[0] == '男') {
  356. this.user.sexvalue = "男",
  357. this.user.sex = "male"
  358. } else if (e.value[0] == "女") {
  359. this.user.sexvalue = "女",
  360. this.user.sex = "female"
  361. } else {
  362. this.user.sexvalue = "保密",
  363. this.user.sex = "secret"
  364. }
  365. this.sexShow = false
  366. },
  367. //点击显示时间选择器
  368. birthdayBtn() {
  369. this.birthdayShow = true
  370. //new Date(this.endDate).getTime()为你需要在选择器上显示的时间戳
  371. this.$refs.picker.innerValue = new Date(946656000000).getTime()
  372. },
  373. //出生日期选择器
  374. async birthdayConfirm(e) {
  375. const timeFormat = uni.$u.timeFormat;
  376. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd');
  377. this.user.birthday = timeValue;
  378. this.birthdayShow = false
  379. },
  380. //政治面貌
  381. politicsConfirm(e) {
  382. this.user.political_status_id = e.value[0].id
  383. this.user.politics = e.value[0].name
  384. this.politicsShow = false;
  385. },
  386. //婚姻状态
  387. maritalConfirm(e) {
  388. this.user.marital_status_id = e.value[0].id
  389. this.user.status = e.value[0].name
  390. this.maritalShow = false
  391. },
  392. //参加工作时间
  393. async workConfirm(e) {
  394. const timeFormat = uni.$u.timeFormat;
  395. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd');
  396. this.user.job_time = timeValue;
  397. this.workShow = false
  398. },
  399. //户口地址
  400. cityconfirm(e) {
  401. let a = e.value[0].name + e.value[1].name + e.value[2].name
  402. let ids = String(e.value[0].id) + String(e.value[1].id) + String(e.value[2].id)
  403. this.user.domicile_city_id = e.value[1].id
  404. this.user.domicile_province_id = e.value[0].id
  405. // this.city1 = e.value.join("")
  406. this.user.city1 = a
  407. this.cityShow = false
  408. },
  409. jobConfirm(e) {
  410. this.user.job = e.value[0].name
  411. this.user.job_status_id = e.value[0].id
  412. this.jobShow = false
  413. },
  414. //关闭模态框
  415. close() {
  416. this.sexShow = false;
  417. this.birthdayShow = false;
  418. this.politicsShow = false;
  419. this.maritalShow = false
  420. this.workShow = false
  421. this.cityShow = false
  422. this.jobShow = false
  423. },
  424. next() {
  425. if (!this.user.name) {
  426. this.$u.toast("请填写姓名")
  427. return
  428. }
  429. if (!this.user.sexvalue) {
  430. this.$u.toast("请选择性别")
  431. return
  432. }
  433. uni.setStorageSync("from", this.user)
  434. if (this.nowork == 1) {
  435. uni.switchTab({
  436. url: "/pages/index/index"
  437. })
  438. } else {
  439. uni.navigateTo({
  440. url: '../pagesA/work'
  441. })
  442. }
  443. // if (this.radiovalue1 == 1) {
  444. // uni.navigateTo({
  445. // url: '../pagesA/userinfo'
  446. // })
  447. // } else {
  448. // uni.navigateTo({
  449. // url: '/pagesA/upload'
  450. // })
  451. // }
  452. },
  453. return1() {
  454. uni.navigateBack()
  455. },
  456. getHeight() {
  457. const query = uni.createSelectorQuery().in(this);
  458. query.select('#height').boundingClientRect(data => {
  459. this.height = (data.height) * 2
  460. }).exec();
  461. }
  462. }
  463. }
  464. </script>
  465. <style lang="scss">
  466. page {
  467. background-color: #F3F3F3;
  468. }
  469. .index-page {
  470. overflow: hidden;
  471. margin-bottom: 60rpx;
  472. .mingpianfont {
  473. height: 50rpx;
  474. font-size: 36rpx;
  475. font-family: PingFangSC-Medium, PingFang SC;
  476. font-weight: 500;
  477. color: #FFFFFF;
  478. line-height: 50rpx;
  479. }
  480. .explain {
  481. margin-top: 24rpx;
  482. width: 528rpx;
  483. height: 36rpx;
  484. font-size: 26rpx;
  485. font-family: PingFangSC-Regular, PingFang SC;
  486. font-weight: 400;
  487. color: #FFFFFF;
  488. line-height: 36rpx;
  489. }
  490. //个人信息
  491. .personal {
  492. width: 750rpx;
  493. background: #FFFFFF;
  494. border-radius: 28rpx 28rpx 0rpx 0rpx;
  495. margin-top: -40rpx;
  496. position: relative;
  497. z-index: 99;
  498. padding: 40rpx 32rpx 0;
  499. margin-bottom: 60rpx;
  500. box-sizing: border-box;
  501. .body-input {
  502. height: 170rpx;
  503. border-bottom: 2rpx solid #F4F4F4;
  504. .input-title {
  505. font-size: 26rpx;
  506. font-family: PingFangSC-Regular, PingFang SC;
  507. font-weight: 400;
  508. color: #888888;
  509. margin-bottom: 20rpx;
  510. margin-top: 30rpx;
  511. box-sizing: border-box;
  512. }
  513. .input-style {
  514. font-size: 32rpx;
  515. font-family: PingFangSC-Regular, PingFang SC;
  516. font-weight: 400;
  517. color: #CACACA;
  518. }
  519. }
  520. .button {
  521. width: 686rpx;
  522. height: 88rpx !important;
  523. background: #0C66C2;
  524. border-radius: 12rpx;
  525. font-size: 32rpx;
  526. font-family: PingFangSC-Medium, PingFang SC;
  527. font-weight: 500;
  528. color: #FFFFFF;
  529. line-height: 88rpx;
  530. margin: 10rpx 0 0rpx 0;
  531. display: flex;
  532. justify-content: center;
  533. }
  534. }
  535. .index-item {
  536. // width: 702rpx;
  537. // background: #FFFFFF;
  538. // border-radius: 20rpx;
  539. // margin: 20rpx auto;
  540. // padding: 0 20rpx 24rpx 10rpx;
  541. .item-down {
  542. text:first-child {
  543. font-size: 22rpx;
  544. font-family: SFPro-Regular, SFPro;
  545. font-weight: 400;
  546. color: #666666;
  547. }
  548. text:last-child {
  549. font-size: 22rpx;
  550. font-family: PingFangSC-Regular, PingFang SC;
  551. font-weight: 400;
  552. color: #666666;
  553. }
  554. }
  555. .item-gongsi {
  556. margin-bottom: 16rpx;
  557. .text2 {
  558. font-size: 24rpx;
  559. font-family: SFPro-Regular, SFPro;
  560. font-weight: 400;
  561. color: #666666;
  562. }
  563. .logo {
  564. width: 42rpx;
  565. height: 42rpx;
  566. border-radius: 10rpx;
  567. margin-right: 16rpx;
  568. }
  569. .text1 {
  570. max-width: 192rpx;
  571. font-size: 24rpx;
  572. font-family: PingFangSC-Regular, PingFang SC;
  573. font-weight: 400;
  574. color: #444444;
  575. margin-right: 12rpx;
  576. }
  577. }
  578. .item-label {
  579. margin-bottom: 20rpx;
  580. text {
  581. margin-right: 16rpx;
  582. line-height: 46rpx;
  583. background: #F7F7F7;
  584. border-radius: 4rpx;
  585. padding: 0 14rpx;
  586. font-size: 24rpx;
  587. font-family: PingFangSC-Regular, PingFang SC;
  588. font-weight: 400;
  589. color: #5F5F5F;
  590. }
  591. }
  592. .item-top {
  593. height: 88rpx;
  594. .text1 {
  595. font-size: 32rpx;
  596. font-family: PingFangSC-Medium, PingFang SC;
  597. font-weight: 500;
  598. color: #222222;
  599. margin-right: 16rpx;
  600. }
  601. .text2 {
  602. width: 50rpx;
  603. line-height: 32rpx;
  604. background: rgba(255, 83, 53, 0.1);
  605. border-radius: 4rpx;
  606. text-align: center;
  607. font-size: 20rpx;
  608. font-family: PingFangSC-Regular, PingFang SC;
  609. font-weight: 400;
  610. color: #FF5335;
  611. margin-right: 12rpx;
  612. }
  613. .text3 {
  614. width: 90rpx;
  615. line-height: 32rpx;
  616. background: #FFF2E8;
  617. border-radius: 4rpx;
  618. text-align: center;
  619. font-size: 20rpx;
  620. font-family: PingFangSC-Regular, PingFang SC;
  621. font-weight: 400;
  622. color: #FF8620;
  623. margin-right: 12rpx;
  624. }
  625. .text4 {
  626. line-height: 32rpx;
  627. background: #E6EFF8;
  628. border-radius: 4rpx;
  629. padding: 0 4rpx;
  630. text-align: center;
  631. font-size: 20rpx;
  632. font-family: SFPro-Regular, SFPro;
  633. font-weight: 400;
  634. color: #0C66C2;
  635. }
  636. .text5 {
  637. font-size: 32rpx;
  638. font-family: JDZhengHT-Regular, JDZhengHT;
  639. font-weight: 400;
  640. color: #0C66C2;
  641. }
  642. }
  643. }
  644. .index-navbar {
  645. position: sticky;
  646. top: 0;
  647. left: 0;
  648. width: 750rpx;
  649. z-index: 10;
  650. .header-down {
  651. height: 92rpx;
  652. padding: 20rpx 24rpx;
  653. box-sizing: border-box;
  654. .font {
  655. font-size: 40rpx;
  656. font-family: PingFangSC-Medium, PingFang SC;
  657. font-weight: 500;
  658. color: #222222;
  659. }
  660. .right-item {
  661. padding: 0 16rpx;
  662. height: 52rpx;
  663. background: #F3F3F3;
  664. border-radius: 4rpx;
  665. margin-left: 20rpx;
  666. .text {
  667. margin-right: 4rpx;
  668. font-size: 26rpx;
  669. font-family: PingFangSC-Regular, PingFang SC;
  670. font-weight: 400;
  671. color: #666666;
  672. }
  673. }
  674. .down-left {
  675. .text {
  676. margin-right: 4rpx;
  677. font-size: 26rpx;
  678. font-family: PingFangSC-Medium, PingFang SC;
  679. font-weight: 500;
  680. color: #222222;
  681. }
  682. }
  683. }
  684. .index-bg {
  685. position: absolute;
  686. top: 0;
  687. left: 0;
  688. z-index: -1;
  689. width: 750rpx;
  690. height: 392rpx;
  691. }
  692. }
  693. .index-header {
  694. flex: 1;
  695. padding: 0 32rpx;
  696. height: 50rpx;
  697. .index-search {
  698. width: 200rpx;
  699. height: 64rpx;
  700. background: #FFFFFF;
  701. border-radius: 20rpx;
  702. padding: 0 28rpx;
  703. .text1 {
  704. font-size: 24rpx;
  705. font-family: PingFangSC-Regular, PingFang SC;
  706. font-weight: 400;
  707. color: #999999;
  708. margin-left: 16rpx;
  709. }
  710. }
  711. .index-tabs {
  712. text:first-child {
  713. font-size: 36rpx;
  714. font-family: PingFangSC-Medium, PingFang SC;
  715. font-weight: 500;
  716. color: #222222;
  717. }
  718. text:last-child {
  719. width: 76rpx;
  720. height: 12rpx;
  721. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  722. margin-top: -20rpx;
  723. border-radius: 100rpx;
  724. }
  725. }
  726. }
  727. }
  728. ::v-deep .u-navbar__content__left {
  729. padding: 0 !important;
  730. }
  731. ::v-deep .u-subsection {
  732. width: 312rpx !important;
  733. }
  734. </style>