index.vue 18 KB

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