index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <template>
  2. <view class="index-page">
  3. <view class="index-navbar">
  4. <view style="position: relative;height: 352rpx;">
  5. <image class="index-bg" src="../../static/images/index-header.png" mode=""></image>
  6. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true">
  7. <view id="height" class="index-header u-flex u-row-between" slot="left"
  8. style="position: relative;">
  9. <view class="" style="margin-left: -11rpx;">
  10. <u-tabs :current="tab1" :list="list4" lineWidth="28" lineHeight="5" :lineColor="bgImage"
  11. :activeStyle="{
  12. color: '#303133',
  13. fontWeight: 'bold',
  14. }" :inactiveStyle="{
  15. color: '#606266',
  16. }" itemStyle=" padding-right: 15px; height: 34px;" @click="TabsTop">
  17. </u-tabs>
  18. </view>
  19. <view class="" style="" @click="toindexsearch">
  20. <view class="index-search u-flex" slot="center">
  21. <u-icon name="search" color="#444444" size="28"></u-icon>
  22. <input type="text" class="text1" placeholder="搜索职位" :disabled="true">
  23. </view>
  24. </view>
  25. </view>
  26. </u-navbar>
  27. <view v-if="tab1 == 1" class="">
  28. <view v-if="is_auth == 0" class="unverified">
  29. <image style="width: 380rpx;height: 254rpx;" src="/static/images/unverified.png" mode="">
  30. </image>
  31. <text>您的账号未完成学校认证 无法查看校企招聘信息</text>
  32. <button>前往认证</button>
  33. </view>
  34. <view v-if="is_auth == 1" class="" style="padding:0rpx 24rpx;">
  35. <hx-school></hx-school>
  36. </view>
  37. </view>
  38. <view v-if="tab1 == 0" class="header-down ">
  39. <view class="u-flex u-row-between u-row-center" @click="changehangye">
  40. <view class="font">
  41. {{category_industry_name}}
  42. </view>
  43. <view class="font" style="font-size: 50rpx;">
  44. +
  45. </view>
  46. </view>
  47. <view class="u-flex u-row-between" style="margin-left: -11rpx;margin-top: 14rpx;">
  48. <view class="down-left u-flex u-row-center" @click="showpaixu = true">
  49. <u-tabs :current="tab2" :list="list1" @click="click"></u-tabs>
  50. </view>
  51. <view class="u-flex">
  52. <view :style="{background:city.name!=''?'#EDF2F8':'#f3f3f3'}"
  53. class="right-item u-flex u-row-center" @click="opencity1">
  54. <text :style="{color:city.name!=''?'#0C66C2':'#666666'}"
  55. class="text">{{city.name || '北京'}}</text>
  56. <u-icon v-if="city.name !='' " color="#0C66C2" name="arrow-down-fill"
  57. size="16"></u-icon>
  58. <u-icon v-if="city.name ==''" name="arrow-down-fill" size="16"></u-icon>
  59. </view>
  60. <view :style="{background:Object.keys(search_data).length!=0?'#EDF2F8':'#f3f3f3'}"
  61. class="right-item u-flex u-row-center" @click="openshaixuan">
  62. <text :style="{color:Object.keys(search_data).length!=0?'#0C66C2':'#666666'}"
  63. class="text">筛选</text>
  64. <u-icon v-if="Object.keys(search_data).length!=0 " color="#0C66C2"
  65. name="arrow-down-fill" size="16"></u-icon>
  66. <u-icon v-if="Object.keys(search_data).length==0" name="arrow-down-fill"
  67. size="16"></u-icon>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. <view v-if="tab1 == 0" class="" style="padding:0rpx 24rpx;background-color: #F3F3F3 ;height: 100%;">
  74. <view class="content" @click="todetails(item.id)" v-for="(item,index) in positionlist"
  75. :key="item.manager_id">
  76. <view class="u-flex u-row-between">
  77. <view class="u-flex">
  78. <view class="font">{{item.job_name}}</view>
  79. <view class="back" v-if="item.is_urgent == 1">急聘</view>
  80. </view>
  81. <view class="money">{{item.salary_min}}-{{item.salary_max}}K
  82. <text v-if="item.salary_structure">·{{item.salary_structure}}</text>
  83. </view>
  84. </view>
  85. <view class="u-flex" style="margin: 16rpx 0 14rpx 0;">
  86. <text class="introduce">{{item.companys.name}}</text>
  87. <text class="introduce">{{item.companys.company_stage.name}}</text>
  88. <text class="introduce">{{item.companys.company_scale.name}}</text>
  89. </view>
  90. <view class="u-flex" style="margin-bottom: 24rpx;">
  91. <view class="tabs">
  92. {{item.education_name}}
  93. </view>
  94. <view class="tabs">
  95. {{item.experience_name}}
  96. </view>
  97. </view>
  98. <view class="u-flex u-row-between u-col-center">
  99. <view class=" u-flex u-col-center">
  100. <image :src="item.usermanager.avatar" mode=""
  101. style="width: 50rpx;height: 50rpx;border-radius: 50%;">
  102. </image>
  103. <view class="" style="margin-left: 16rpx;">
  104. <text>{{item.usermanager.name}}</text>·
  105. <text>{{item.usermanager.job_text}}</text>
  106. </view>
  107. </view>
  108. <view class="u-flex u-col-center ">
  109. <view class="address" style="margin -right: 10rpx;">{{item.work_province.slice(0,-1)}}
  110. </view>
  111. <view class="address">{{item.work_city}}</view>
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </view>
  117. <u-popup border-radius="28" :show="opencity" mode="bottom">
  118. <view class="change-city-popup u-flex-col">
  119. <view class="change-city-header u-flex u-row-between">
  120. <u-icon name="close" size="22" color="#222" @click="opencity = false"></u-icon>
  121. <text class="text">选择城市</text>
  122. <u-icon name="close" size="22" color="#fff"></u-icon>
  123. </view>
  124. <view class="u-flex-1 u-flex change-city-scroll">
  125. <scroll-view scroll-y="true" class="change-scroll-left">
  126. <view class="scroll-left-sheng" v-for="(item,index) in citylist" :key="index"
  127. :class="{shengactive:cityleftindex == index}" @click="changeleftcity(index)">{{item.name}}
  128. </view>
  129. </scroll-view>
  130. <scroll-view scroll-y="true" class="change-scroll-right u-flex-1">
  131. <view class="scroll-left-shi" v-for="(item,index) in rightcity" :key="index"
  132. :class="{shiactive:cityrightindex == index}" @click="changerightcity(index,item)">
  133. {{item.name}}
  134. </view>
  135. </scroll-view>
  136. </view>
  137. <view class="change-city-down u-flex u-row-between">
  138. <text @click="chongzhi">重置</text>
  139. <text @click="changecity">确定</text>
  140. </view>
  141. </view>
  142. </u-popup>
  143. <zhao-shaixuan ref="shaixuan" @tosearch="shaixuan"></zhao-shaixuan>
  144. </view>
  145. </template>
  146. <script>
  147. import {
  148. getList,
  149. getareacity,
  150. is_auth,
  151. resumeDetail
  152. } from "../../units/inquire.js"
  153. export default {
  154. data() {
  155. return {
  156. category_industry_id: "",
  157. category_industry_name: '',
  158. opencity: false,
  159. citylist: [],
  160. total: 0,
  161. height: "",
  162. list1: [{
  163. name: "相关"
  164. },
  165. {
  166. name: "推荐"
  167. },
  168. {
  169. name: "最新"
  170. },
  171. ],
  172. list4: [{
  173. name: "职位"
  174. },
  175. {
  176. name: "校招"
  177. }
  178. ],
  179. page: 1,
  180. tab1: 0,
  181. tab2: 0,
  182. positionlist: [], //职位列表
  183. is_auth: "", //是否认证
  184. rightcity: [],
  185. cityrightindex: "",
  186. cityleftindex: "",
  187. city: {},
  188. search_data: {}
  189. }
  190. },
  191. onLoad() {
  192. this.category_industry_id = uni.getStorageSync("category_industry_id")
  193. this.getlist()
  194. this.getcity()
  195. this.auth()
  196. this.resumeDetail()
  197. this.city = {
  198. name: '',
  199. id: ''
  200. }
  201. this.search_data = {}
  202. },
  203. onReachBottom() {
  204. if (this.positionlist.length != this.total) {
  205. this.page++
  206. this.getlist()
  207. }
  208. },
  209. computed: {
  210. bgImage() {
  211. return `url(${require('../../static/images/juxing.png')}) 100% 100%`
  212. }
  213. },
  214. methods: {
  215. resumeDetail(){
  216. resumeDetail().then(res=>{
  217. console.log(res);
  218. })
  219. },
  220. toindexsearch(){
  221. uni.navigateTo({
  222. url:"/pagesA/index-search"
  223. })
  224. },
  225. changehangye() {
  226. uni.navigateTo({
  227. url: "/pagesA/change-hangye1",
  228. events: {
  229. changehangye: (res) => {
  230. this.category_industry_id = res[1].id
  231. this.category_industry_name = res[1].name
  232. uni.setStorageSync("category_industry_name", this.category_industry_name)
  233. uni.setStorageSync("category_industry_id", this.category_industry_id)
  234. this.tosearch()
  235. }
  236. }
  237. })
  238. },
  239. auth() {
  240. is_auth().then(res => {
  241. this.is_auth = res.data.is_auth
  242. })
  243. },
  244. opencity1() {
  245. this.opencity = true
  246. this.city = {
  247. name: '',
  248. id: ''
  249. }
  250. },
  251. shaixuan(e) {
  252. this.search_data = e
  253. this.tosearch()
  254. },
  255. chongzhi() {
  256. this.city = {
  257. name: '',
  258. id: ''
  259. }
  260. this.opencity = false
  261. this.tosearch()
  262. },
  263. changecity() {
  264. if (this.cityrightindex == -1) {
  265. this.$u.toast("请选择城市")
  266. return
  267. }
  268. this.city = {
  269. name: this.citylist[this.cityleftindex].childlist[this.cityrightindex].name,
  270. id: this.citylist[this.cityleftindex].childlist[this.cityrightindex].id
  271. }
  272. console.log(this.city);
  273. this.opencity = false
  274. this.tosearch()
  275. },
  276. changerightcity(index, item) {
  277. this.cityrightindex = index
  278. },
  279. changeleftcity(index) {
  280. this.cityleftindex = index
  281. this.cityrightindex = -1
  282. this.rightcity = this.citylist[this.cityleftindex].childlist
  283. },
  284. getcity() {
  285. getareacity().then(res => {
  286. console.log(res);
  287. this.citylist = res.data
  288. this.rightcity = res.data[0].childlist
  289. })
  290. },
  291. tosearch() {
  292. this.page = 1
  293. this.positionlist = []
  294. this.getlist()
  295. },
  296. openshaixuan() {
  297. this.$refs.shaixuan.openshaixuan = true
  298. },
  299. click(item) {
  300. this.tab2 = item.index
  301. console.log(this.tab2);
  302. this.getlist()
  303. // console.log('item', item);
  304. },
  305. TabsTop(item) {
  306. if (uni.getStorageSync('token') == "" && this.tab1 == 0) {
  307. uni.reLaunch({
  308. url: "/pages/login/login"
  309. })
  310. }
  311. this.tab1 = item.index
  312. // console.log(this.tab1);
  313. },
  314. //获取职位列表
  315. getlist() {
  316. getList({
  317. page: this.page,
  318. type: this.tab2,
  319. search_field: "",
  320. search: "",
  321. search_data: {
  322. ...this.search_data,
  323. city_id: this.city.id,
  324. category_industry_id: this.category_industry_id
  325. }
  326. }).then(res => {
  327. if (this.page == 1) {
  328. this.positionlist = res.data.data
  329. } else {
  330. this.positionlist = this.positionlist.concat(res.data.data)
  331. }
  332. this.total = res.data.total
  333. })
  334. },
  335. todetails(id) {
  336. uni.navigateTo({
  337. url: '../../pagesB/details?id=' + id
  338. })
  339. }
  340. }
  341. }
  342. </script>
  343. <style lang="scss">
  344. page {
  345. background-color: #F3F3F3;
  346. }
  347. .change-city-popup {
  348. height: calc(100vh - 144rpx);
  349. .change-city-scroll {
  350. min-height: 1rpx;
  351. .change-scroll-right {
  352. height: 100%;
  353. .scroll-left-shi {
  354. line-height: 100rpx;
  355. text-align: center;
  356. font-size: 32rpx;
  357. font-family: PingFangSC-Regular, PingFang SC;
  358. font-weight: 400;
  359. color: #333333;
  360. padding: 0 32rpx;
  361. }
  362. .shiactive {
  363. color: #0C66C2;
  364. }
  365. }
  366. .change-scroll-left {
  367. width: 304rpx;
  368. height: 100%;
  369. background-color: #F5F5F5;
  370. .scroll-left-sheng {
  371. text-align: center;
  372. font-size: 32rpx;
  373. font-family: PingFangSC-Regular, PingFang SC;
  374. font-weight: 400;
  375. color: #333333;
  376. padding: 28rpx 32rpx;
  377. }
  378. .shengactive {
  379. background-color: #fff;
  380. color: #0C66C2;
  381. }
  382. }
  383. }
  384. .change-city-down {
  385. padding: 12rpx 32rpx;
  386. text:first-child {
  387. width: 208rpx;
  388. line-height: 84rpx;
  389. background: #F3F3F3;
  390. border-radius: 10rpx;
  391. text-align: center;
  392. font-size: 32rpx;
  393. font-family: PingFangSC-Medium, PingFang SC;
  394. font-weight: 500;
  395. color: #555555;
  396. }
  397. text:last-child {
  398. width: 454rpx;
  399. line-height: 84rpx;
  400. background: #0C66C2;
  401. border-radius: 10rpx;
  402. text-align: center;
  403. font-size: 32rpx;
  404. font-family: PingFangSC-Medium, PingFang SC;
  405. font-weight: 500;
  406. color: #FFFFFF;
  407. }
  408. }
  409. .change-city-header {
  410. height: 120rpx;
  411. padding: 0 32rpx;
  412. .text {
  413. font-size: 36rpx;
  414. font-family: PingFangSC-Medium, PingFang SC;
  415. font-weight: 500;
  416. color: #222222;
  417. }
  418. }
  419. }
  420. .unverified {
  421. display: flex;
  422. flex-direction: column;
  423. justify-content: center;
  424. background-color: #fff;
  425. background-image: linear-gradient(to bottom, #fff 20%, #f3f3f3 50%);
  426. align-items: center;
  427. width: 750rpx;
  428. height: 70vh;
  429. margin-top: 180rpx;
  430. text {
  431. width: 312rpx;
  432. height: 84rpx;
  433. margin-top: 34rpx;
  434. display: block;
  435. }
  436. button {
  437. width: 264rpx;
  438. height: 100rpx;
  439. background: #0C66C2;
  440. border-radius: 12rpx;
  441. font-size: 36rpx;
  442. font-family: PingFangSC-Regular, PingFang SC;
  443. font-weight: 400;
  444. color: #FFFFFF;
  445. margin-top: 90rpx;
  446. line-height: 100rpx;
  447. }
  448. }
  449. .index-page {
  450. .address {
  451. font-size: 24rpx;
  452. font-family: PingFangSC-Regular, PingFang SC;
  453. font-weight: 400;
  454. color: #979797;
  455. line-height: 34rpx;
  456. }
  457. .content {
  458. padding: 24rpx 20rpx;
  459. margin-top: 20rpx;
  460. background-color: #fff;
  461. border-radius: 16rpx;
  462. .font {
  463. font-size: 32rpx;
  464. font-family: PingFangSC-Medium, PingFang SC;
  465. font-weight: 500;
  466. color: #222222;
  467. line-height: 44rpx;
  468. max-width: 326rpx;
  469. overflow: hidden; //超出隐藏
  470. white-space: nowrap; //不换行,同一行展示
  471. text-overflow: ellipsis; //设置超出部分以省略号展示
  472. }
  473. .back {
  474. width: 58rpx;
  475. height: 32rpx;
  476. background: #FF5335;
  477. border-radius: 6rpx;
  478. font-size: 22rpx;
  479. font-family: PingFangSC-Regular, PingFang SC;
  480. font-weight: 400;
  481. color: #FFFFFF;
  482. line-height: 32rpx;
  483. text-align: center;
  484. margin-left: 16rpx;
  485. }
  486. .money {
  487. font-size: 32rpx;
  488. font-family: JDZhengHT-Regular, JDZhengHT;
  489. font-weight: 400;
  490. color: #0C66C2;
  491. }
  492. .introduce {
  493. height: 40rpx;
  494. font-size: 28rpx;
  495. font-family: PingFangSC-Regular, PingFang SC;
  496. font-weight: 400;
  497. color: #555555;
  498. line-height: 40rpx;
  499. margin-right: 16rpx;
  500. }
  501. .tabs {
  502. background: #F3F3F3;
  503. border-radius: 4rpx;
  504. padding: 6rpx 14rpx;
  505. margin-right: 16rpx;
  506. font-size: 24rpx;
  507. font-family: PingFangSC-Regular, PingFang SC;
  508. font-weight: 400;
  509. color: #5F5F5F;
  510. height: 34rpx;
  511. line-height: 34rpx;
  512. }
  513. }
  514. .index-item {
  515. // width: 702rpx;
  516. // background: #FFFFFF;
  517. // border-radius: 20rpx;
  518. // margin: 20rpx auto;
  519. // padding: 0 20rpx 24rpx 10rpx;
  520. .item-down {
  521. text:first-child {
  522. font-size: 22rpx;
  523. font-family: SFPro-Regular, SFPro;
  524. font-weight: 400;
  525. color: #666666;
  526. }
  527. text:last-child {
  528. font-size: 22rpx;
  529. font-family: PingFangSC-Regular, PingFang SC;
  530. font-weight: 400;
  531. color: #666666;
  532. }
  533. }
  534. .item-gongsi {
  535. margin-bottom: 16rpx;
  536. .text2 {
  537. font-size: 24rpx;
  538. font-family: SFPro-Regular, SFPro;
  539. font-weight: 400;
  540. color: #666666;
  541. }
  542. .logo {
  543. width: 42rpx;
  544. height: 42rpx;
  545. border-radius: 10rpx;
  546. margin-right: 16rpx;
  547. }
  548. .text1 {
  549. max-width: 192rpx;
  550. font-size: 24rpx;
  551. font-family: PingFangSC-Regular, PingFang SC;
  552. font-weight: 400;
  553. color: #444444;
  554. margin-right: 12rpx;
  555. }
  556. }
  557. .item-label {
  558. margin-bottom: 20rpx;
  559. text {
  560. margin-right: 16rpx;
  561. line-height: 46rpx;
  562. background: #F7F7F7;
  563. border-radius: 4rpx;
  564. padding: 0 14rpx;
  565. font-size: 24rpx;
  566. font-family: PingFangSC-Regular, PingFang SC;
  567. font-weight: 400;
  568. color: #5F5F5F;
  569. }
  570. }
  571. .item-top {
  572. height: 88rpx;
  573. .text1 {
  574. font-size: 32rpx;
  575. font-family: PingFangSC-Medium, PingFang SC;
  576. font-weight: 500;
  577. color: #222222;
  578. margin-right: 16rpx;
  579. }
  580. .text2 {
  581. width: 50rpx;
  582. line-height: 32rpx;
  583. background: rgba(255, 83, 53, 0.1);
  584. border-radius: 4rpx;
  585. text-align: center;
  586. font-size: 20rpx;
  587. font-family: PingFangSC-Regular, PingFang SC;
  588. font-weight: 400;
  589. color: #FF5335;
  590. margin-right: 12rpx;
  591. }
  592. .text3 {
  593. width: 90rpx;
  594. line-height: 32rpx;
  595. background: #FFF2E8;
  596. border-radius: 4rpx;
  597. text-align: center;
  598. font-size: 20rpx;
  599. font-family: PingFangSC-Regular, PingFang SC;
  600. font-weight: 400;
  601. color: #FF8620;
  602. margin-right: 12rpx;
  603. }
  604. .text4 {
  605. line-height: 32rpx;
  606. background: #E6EFF8;
  607. border-radius: 4rpx;
  608. padding: 0 4rpx;
  609. text-align: center;
  610. font-size: 20rpx;
  611. font-family: SFPro-Regular, SFPro;
  612. font-weight: 400;
  613. color: #0C66C2;
  614. }
  615. .text5 {
  616. font-size: 32rpx;
  617. font-family: JDZhengHT-Regular, JDZhengHT;
  618. font-weight: 400;
  619. color: #0C66C2;
  620. }
  621. }
  622. }
  623. .index-navbar {
  624. position: sticky;
  625. top: 0;
  626. left: 0;
  627. width: 750rpx;
  628. z-index: 100;
  629. .header-down {
  630. height: 92rpx;
  631. padding: 20rpx 24rpx;
  632. box-sizing: border-box;
  633. .font {
  634. font-size: 40rpx;
  635. font-family: PingFangSC-Medium, PingFang SC;
  636. font-weight: 500;
  637. color: #222222;
  638. }
  639. .right-item {
  640. padding: 0 16rpx;
  641. height: 52rpx;
  642. background: #F3F3F3;
  643. border-radius: 4rpx;
  644. margin-left: 20rpx;
  645. .text {
  646. margin-right: 4rpx;
  647. font-size: 26rpx;
  648. font-family: PingFangSC-Regular, PingFang SC;
  649. font-weight: 400;
  650. color: #666666;
  651. }
  652. }
  653. .down-left {
  654. .text {
  655. margin-right: 4rpx;
  656. font-size: 26rpx;
  657. font-family: PingFangSC-Medium, PingFang SC;
  658. font-weight: 500;
  659. color: #222222;
  660. }
  661. }
  662. }
  663. .index-bg {
  664. position: absolute;
  665. top: 0;
  666. left: 0;
  667. z-index: -1;
  668. width: 750rpx;
  669. height: 352rpx;
  670. }
  671. }
  672. .index-header {
  673. flex: 1;
  674. padding: 0 32rpx;
  675. height: 50rpx;
  676. .index-search {
  677. width: 200rpx;
  678. height: 64rpx;
  679. background: #FFFFFF;
  680. border-radius: 20rpx;
  681. padding: 0 28rpx;
  682. .text1 {
  683. font-size: 24rpx;
  684. font-family: PingFangSC-Regular, PingFang SC;
  685. font-weight: 400;
  686. color: #999999;
  687. margin-left: 16rpx;
  688. }
  689. }
  690. .index-tabs {
  691. text:first-child {
  692. font-size: 36rpx;
  693. font-family: PingFangSC-Medium, PingFang SC;
  694. font-weight: 500;
  695. color: #222222;
  696. }
  697. text:last-child {
  698. width: 76rpx;
  699. height: 12rpx;
  700. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  701. margin-top: -20rpx;
  702. border-radius: 100rpx;
  703. }
  704. }
  705. }
  706. }
  707. ::v-deep .u-navbar__content__left {
  708. padding: 0 !important;
  709. }
  710. </style>