userinfo.vue 18 KB

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