index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  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 @click="torenzheng">前往认证</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">
  40. <view class="font" v-if="" @click="apply(2,id)">
  41. {{job_intention[0].category_industry_name||""}}
  42. </view>
  43. <view class="font" style="font-size: 50rpx;" @click="apply(1)">
  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: "-1",
  186. cityleftindex: "0",
  187. city: {},
  188. search_data: {},
  189. job_intention: [],
  190. id:""
  191. }
  192. },
  193. onLoad() {
  194. // this.getlist()
  195. this.getcity()
  196. this.auth()
  197. this.resumeDetail()
  198. this.city = {
  199. name: '',
  200. id: ''
  201. }
  202. this.search_data = {}
  203. this.getlist()
  204. },
  205. onReachBottom() {
  206. if (this.positionlist.length != this.total) {
  207. this.page++
  208. this.getlist()
  209. }
  210. },
  211. computed: {
  212. bgImage() {
  213. return `url(${require('../../static/images/juxing.png')}) 100% 100%`
  214. }
  215. },
  216. methods: {
  217. torenzheng(){
  218. uni.navigateTo({
  219. url:"/pagesD/renzheng"
  220. })
  221. },
  222. resumeDetail() {
  223. resumeDetail().then(res => {
  224. this.job_intention = res.data.job_intention
  225. this.category_industry_id = res.data.job_intention[0].category_industry_id
  226. this.id = res.data.job_intention[0].id
  227. this.getlist()
  228. })
  229. },
  230. toindexsearch() {
  231. uni.navigateTo({
  232. url: "/pagesA/index-search"
  233. })
  234. },
  235. apply(type,id) {
  236. uni.navigateTo({
  237. url: "/pagesD/apply?type="+type+"&id="+id,
  238. events:{
  239. refresh:(res)=>{
  240. this.resumeDetail()
  241. }
  242. }
  243. })
  244. },
  245. auth() {
  246. is_auth().then(res => {
  247. this.is_auth = res.data.is_auth
  248. })
  249. },
  250. opencity1() {
  251. this.opencity = true
  252. this.city = {
  253. name: '',
  254. id: ''
  255. }
  256. },
  257. shaixuan(e) {
  258. this.search_data = e
  259. this.tosearch()
  260. },
  261. chongzhi() {
  262. this.city = {
  263. name: '',
  264. id: ''
  265. }
  266. this.opencity = false
  267. this.tosearch()
  268. },
  269. changecity() {
  270. if (this.cityrightindex == -1) {
  271. this.$u.toast("请选择城市")
  272. return
  273. }
  274. this.city = {
  275. name: this.citylist[this.cityleftindex].childlist[this.cityrightindex].name,
  276. id: this.citylist[this.cityleftindex].childlist[this.cityrightindex].id
  277. }
  278. console.log(this.city);
  279. this.opencity = false
  280. this.tosearch()
  281. },
  282. changerightcity(index, item) {
  283. this.cityrightindex = index
  284. },
  285. changeleftcity(index) {
  286. this.cityleftindex = index
  287. this.cityrightindex = -1
  288. this.rightcity = this.citylist[this.cityleftindex].childlist
  289. },
  290. getcity() {
  291. getareacity().then(res => {
  292. console.log(res);
  293. this.citylist = res.data
  294. this.rightcity = res.data[0].childlist
  295. })
  296. },
  297. tosearch() {
  298. this.page = 1
  299. this.positionlist = []
  300. this.getlist()
  301. },
  302. openshaixuan() {
  303. this.$refs.shaixuan.openshaixuan = true
  304. },
  305. click(item) {
  306. this.tab2 = item.index
  307. console.log(this.tab2);
  308. this.getlist()
  309. // console.log('item', item);
  310. },
  311. TabsTop(item) {
  312. if (uni.getStorageSync('token') == "" && this.tab1 == 0) {
  313. uni.reLaunch({
  314. url: "/pages/login/login"
  315. })
  316. }
  317. this.tab1 = item.index
  318. // console.log(this.tab1);
  319. },
  320. //获取职位列表
  321. getlist() {
  322. getList({
  323. page: this.page,
  324. type: this.tab2,
  325. search_field: "",
  326. search: "",
  327. search_data: {
  328. ...this.search_data,
  329. city_id: this.city.id,
  330. category_industry_id: this.category_industry_id
  331. }
  332. }).then(res => {
  333. if (this.page == 1) {
  334. this.positionlist = res.data.data
  335. } else {
  336. this.positionlist = this.positionlist.concat(res.data.data)
  337. }
  338. this.total = res.data.total
  339. })
  340. },
  341. todetails(id) {
  342. uni.navigateTo({
  343. url: '../../pagesB/details?id=' + id
  344. })
  345. }
  346. }
  347. }
  348. </script>
  349. <style lang="scss">
  350. page {
  351. background-color: #F3F3F3;
  352. }
  353. .change-city-popup {
  354. height: calc(100vh - 144rpx);
  355. .change-city-scroll {
  356. min-height: 1rpx;
  357. .change-scroll-right {
  358. height: 100%;
  359. .scroll-left-shi {
  360. line-height: 100rpx;
  361. text-align: center;
  362. font-size: 32rpx;
  363. font-family: PingFangSC-Regular, PingFang SC;
  364. font-weight: 400;
  365. color: #333333;
  366. padding: 0 32rpx;
  367. }
  368. .shiactive {
  369. color: #0C66C2;
  370. }
  371. }
  372. .change-scroll-left {
  373. width: 304rpx;
  374. height: 100%;
  375. background-color: #F5F5F5;
  376. .scroll-left-sheng {
  377. text-align: center;
  378. font-size: 32rpx;
  379. font-family: PingFangSC-Regular, PingFang SC;
  380. font-weight: 400;
  381. color: #333333;
  382. padding: 28rpx 32rpx;
  383. }
  384. .shengactive {
  385. background-color: #fff;
  386. color: #0C66C2;
  387. }
  388. }
  389. }
  390. .change-city-down {
  391. padding: 12rpx 32rpx;
  392. text:first-child {
  393. width: 208rpx;
  394. line-height: 84rpx;
  395. background: #F3F3F3;
  396. border-radius: 10rpx;
  397. text-align: center;
  398. font-size: 32rpx;
  399. font-family: PingFangSC-Medium, PingFang SC;
  400. font-weight: 500;
  401. color: #555555;
  402. }
  403. text:last-child {
  404. width: 454rpx;
  405. line-height: 84rpx;
  406. background: #0C66C2;
  407. border-radius: 10rpx;
  408. text-align: center;
  409. font-size: 32rpx;
  410. font-family: PingFangSC-Medium, PingFang SC;
  411. font-weight: 500;
  412. color: #FFFFFF;
  413. }
  414. }
  415. .change-city-header {
  416. height: 120rpx;
  417. padding: 0 32rpx;
  418. .text {
  419. font-size: 36rpx;
  420. font-family: PingFangSC-Medium, PingFang SC;
  421. font-weight: 500;
  422. color: #222222;
  423. }
  424. }
  425. }
  426. .unverified {
  427. display: flex;
  428. flex-direction: column;
  429. justify-content: center;
  430. background-color: #fff;
  431. background-image: linear-gradient(to bottom, #fff 20%, #f3f3f3 50%);
  432. align-items: center;
  433. width: 750rpx;
  434. height: 70vh;
  435. margin-top: 180rpx;
  436. text {
  437. width: 312rpx;
  438. height: 84rpx;
  439. margin-top: 34rpx;
  440. display: block;
  441. }
  442. button {
  443. width: 264rpx;
  444. height: 100rpx;
  445. background: #0C66C2;
  446. border-radius: 12rpx;
  447. font-size: 36rpx;
  448. font-family: PingFangSC-Regular, PingFang SC;
  449. font-weight: 400;
  450. color: #FFFFFF;
  451. margin-top: 90rpx;
  452. line-height: 100rpx;
  453. }
  454. }
  455. .index-page {
  456. .address {
  457. font-size: 24rpx;
  458. font-family: PingFangSC-Regular, PingFang SC;
  459. font-weight: 400;
  460. color: #979797;
  461. line-height: 34rpx;
  462. }
  463. .content {
  464. padding: 24rpx 20rpx;
  465. margin-top: 20rpx;
  466. background-color: #fff;
  467. border-radius: 16rpx;
  468. .font {
  469. font-size: 32rpx;
  470. font-family: PingFangSC-Medium, PingFang SC;
  471. font-weight: 500;
  472. color: #222222;
  473. line-height: 44rpx;
  474. max-width: 326rpx;
  475. overflow: hidden; //超出隐藏
  476. white-space: nowrap; //不换行,同一行展示
  477. text-overflow: ellipsis; //设置超出部分以省略号展示
  478. }
  479. .back {
  480. width: 58rpx;
  481. height: 32rpx;
  482. background: #FF5335;
  483. border-radius: 6rpx;
  484. font-size: 22rpx;
  485. font-family: PingFangSC-Regular, PingFang SC;
  486. font-weight: 400;
  487. color: #FFFFFF;
  488. line-height: 32rpx;
  489. text-align: center;
  490. margin-left: 16rpx;
  491. }
  492. .money {
  493. font-size: 32rpx;
  494. font-family: JDZhengHT-Regular, JDZhengHT;
  495. font-weight: 400;
  496. color: #0C66C2;
  497. }
  498. .introduce {
  499. height: 40rpx;
  500. font-size: 28rpx;
  501. font-family: PingFangSC-Regular, PingFang SC;
  502. font-weight: 400;
  503. color: #555555;
  504. line-height: 40rpx;
  505. margin-right: 16rpx;
  506. }
  507. .tabs {
  508. background: #F3F3F3;
  509. border-radius: 4rpx;
  510. padding: 6rpx 14rpx;
  511. margin-right: 16rpx;
  512. font-size: 24rpx;
  513. font-family: PingFangSC-Regular, PingFang SC;
  514. font-weight: 400;
  515. color: #5F5F5F;
  516. height: 34rpx;
  517. line-height: 34rpx;
  518. }
  519. }
  520. .index-item {
  521. // width: 702rpx;
  522. // background: #FFFFFF;
  523. // border-radius: 20rpx;
  524. // margin: 20rpx auto;
  525. // padding: 0 20rpx 24rpx 10rpx;
  526. .item-down {
  527. text:first-child {
  528. font-size: 22rpx;
  529. font-family: SFPro-Regular, SFPro;
  530. font-weight: 400;
  531. color: #666666;
  532. }
  533. text:last-child {
  534. font-size: 22rpx;
  535. font-family: PingFangSC-Regular, PingFang SC;
  536. font-weight: 400;
  537. color: #666666;
  538. }
  539. }
  540. .item-gongsi {
  541. margin-bottom: 16rpx;
  542. .text2 {
  543. font-size: 24rpx;
  544. font-family: SFPro-Regular, SFPro;
  545. font-weight: 400;
  546. color: #666666;
  547. }
  548. .logo {
  549. width: 42rpx;
  550. height: 42rpx;
  551. border-radius: 10rpx;
  552. margin-right: 16rpx;
  553. }
  554. .text1 {
  555. max-width: 192rpx;
  556. font-size: 24rpx;
  557. font-family: PingFangSC-Regular, PingFang SC;
  558. font-weight: 400;
  559. color: #444444;
  560. margin-right: 12rpx;
  561. }
  562. }
  563. .item-label {
  564. margin-bottom: 20rpx;
  565. text {
  566. margin-right: 16rpx;
  567. line-height: 46rpx;
  568. background: #F7F7F7;
  569. border-radius: 4rpx;
  570. padding: 0 14rpx;
  571. font-size: 24rpx;
  572. font-family: PingFangSC-Regular, PingFang SC;
  573. font-weight: 400;
  574. color: #5F5F5F;
  575. }
  576. }
  577. .item-top {
  578. height: 88rpx;
  579. .text1 {
  580. font-size: 32rpx;
  581. font-family: PingFangSC-Medium, PingFang SC;
  582. font-weight: 500;
  583. color: #222222;
  584. margin-right: 16rpx;
  585. }
  586. .text2 {
  587. width: 50rpx;
  588. line-height: 32rpx;
  589. background: rgba(255, 83, 53, 0.1);
  590. border-radius: 4rpx;
  591. text-align: center;
  592. font-size: 20rpx;
  593. font-family: PingFangSC-Regular, PingFang SC;
  594. font-weight: 400;
  595. color: #FF5335;
  596. margin-right: 12rpx;
  597. }
  598. .text3 {
  599. width: 90rpx;
  600. line-height: 32rpx;
  601. background: #FFF2E8;
  602. border-radius: 4rpx;
  603. text-align: center;
  604. font-size: 20rpx;
  605. font-family: PingFangSC-Regular, PingFang SC;
  606. font-weight: 400;
  607. color: #FF8620;
  608. margin-right: 12rpx;
  609. }
  610. .text4 {
  611. line-height: 32rpx;
  612. background: #E6EFF8;
  613. border-radius: 4rpx;
  614. padding: 0 4rpx;
  615. text-align: center;
  616. font-size: 20rpx;
  617. font-family: SFPro-Regular, SFPro;
  618. font-weight: 400;
  619. color: #0C66C2;
  620. }
  621. .text5 {
  622. font-size: 32rpx;
  623. font-family: JDZhengHT-Regular, JDZhengHT;
  624. font-weight: 400;
  625. color: #0C66C2;
  626. }
  627. }
  628. }
  629. .index-navbar {
  630. position: sticky;
  631. top: 0;
  632. left: 0;
  633. width: 750rpx;
  634. z-index: 100;
  635. .header-down {
  636. height: 92rpx;
  637. padding: 20rpx 24rpx;
  638. box-sizing: border-box;
  639. .font {
  640. font-size: 40rpx;
  641. font-family: PingFangSC-Medium, PingFang SC;
  642. font-weight: 500;
  643. color: #222222;
  644. }
  645. .right-item {
  646. padding: 0 16rpx;
  647. height: 52rpx;
  648. background: #F3F3F3;
  649. border-radius: 4rpx;
  650. margin-left: 20rpx;
  651. .text {
  652. margin-right: 4rpx;
  653. font-size: 26rpx;
  654. font-family: PingFangSC-Regular, PingFang SC;
  655. font-weight: 400;
  656. color: #666666;
  657. }
  658. }
  659. .down-left {
  660. .text {
  661. margin-right: 4rpx;
  662. font-size: 26rpx;
  663. font-family: PingFangSC-Medium, PingFang SC;
  664. font-weight: 500;
  665. color: #222222;
  666. }
  667. }
  668. }
  669. .index-bg {
  670. position: absolute;
  671. top: 0;
  672. left: 0;
  673. z-index: -1;
  674. width: 750rpx;
  675. height: 352rpx;
  676. }
  677. }
  678. .index-header {
  679. flex: 1;
  680. padding: 0 32rpx;
  681. height: 50rpx;
  682. .index-search {
  683. width: 200rpx;
  684. height: 64rpx;
  685. background: #FFFFFF;
  686. border-radius: 20rpx;
  687. padding: 0 28rpx;
  688. .text1 {
  689. font-size: 24rpx;
  690. font-family: PingFangSC-Regular, PingFang SC;
  691. font-weight: 400;
  692. color: #999999;
  693. margin-left: 16rpx;
  694. }
  695. }
  696. .index-tabs {
  697. text:first-child {
  698. font-size: 36rpx;
  699. font-family: PingFangSC-Medium, PingFang SC;
  700. font-weight: 500;
  701. color: #222222;
  702. }
  703. text:last-child {
  704. width: 76rpx;
  705. height: 12rpx;
  706. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  707. margin-top: -20rpx;
  708. border-radius: 100rpx;
  709. }
  710. }
  711. }
  712. }
  713. ::v-deep .u-navbar__content__left {
  714. padding: 0 !important;
  715. }
  716. </style>