parkingFee.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188
  1. <template>
  2. <div :class="[theme, 'paekingFeeClass']">
  3. <scroll-view :class="['scroll-Y' ,'color-scroll-Y']">
  4. <div class="wrap">
  5. <div class="parkingFee">
  6. <!-- <wx-points-commit ref='wxPointsCommit'></wx-points-commit> -->
  7. <!-- KIP菜单 -->
  8. <div
  9. v-if="source === 'KIP'"
  10. :class="{
  11. top_menu: true,
  12. blue_top_menu: custTypeId === 1,
  13. green_top_menu: custTypeId === 2,
  14. }"
  15. >
  16. <div class="menu_item" @click="menuToPage('PAYMENT_RECORDS')">
  17. <img :src="`${require(`@/pages/parkingFee/static/images/icon-order.png`)}`" />
  18. <span>缴费记录</span>
  19. </div>
  20. <div class="menu_item" @click="menuToPage('PARKING_INVOICE')">
  21. <img :src="`${require(`@/pages/parkingFee/static/images/icon-ticket.png`)}`" />
  22. <span>停车开票</span>
  23. </div>
  24. <div class="menu_item" @click="menuToPage('VEHICLE_MANAGE')">
  25. <img :src="`${require(`@/pages/parkingFee/static/images/icon-car.png`)}`" />
  26. <span>车辆管理</span>
  27. </div>
  28. </div>
  29. <!-- 菜单 -->
  30. <div
  31. :class="{
  32. top_menu: true,
  33. blue_top_menu: custTypeId === 1,
  34. green_top_menu: custTypeId === 2,
  35. }"
  36. v-if="custTypeId >= 0 && (portalsByLbsList.length < 5 || portalsByLbsList.length === 5) && source !== 'KIP'"
  37. >
  38. <div class="menu_item" @click="menuToPage('PAYMENT_RECORDS')" v-if="portalsByLbsList.indexOf('PAYMENT_RECORDS') > -1">
  39. <img :src="`${require(`@/pages/parkingFee/static/images/icon-order.png`)}`" />
  40. <span>缴费记录</span>
  41. </div>
  42. <div class="menu_item" @click="menuToPage('COUPON_EXCHANGE')" v-if="portalsByLbsList.indexOf('COUPON_EXCHANGE') > -1">
  43. <img :src="`${require(`@/pages/parkingFee/static/images/icon-coupon.png`)}`" />
  44. <span>停车券兑换</span>
  45. </div>
  46. <div class="menu_item" @click="menuToPage('PARKING_INVOICE')" v-if="portalsByLbsList.indexOf('PARKING_INVOICE') > -1">
  47. <img :src="`${require(`@/pages/parkingFee/static/images/icon-ticket.png`)}`" />
  48. <span>停车开票</span>
  49. </div>
  50. <div class="menu_item" @click="menuToPage('VEHICLE_MANAGE')" v-if="portalsByLbsList.indexOf('VEHICLE_MANAGE') > -1">
  51. <img :src="`${require(`@/pages/parkingFee/static/images/icon-car.png`)}`" />
  52. <span>车辆管理</span>
  53. </div>
  54. <div class="menu_item" @click="menuToPage('PARKING_BENEFITS')" v-if="portalsByLbsList.indexOf('PARKING_BENEFITS') > -1">
  55. <img :src="`${require(`@/pages/parkingFee/static/images/parkingRights.svg`)}`" />
  56. <span>停车权益</span>
  57. </div>
  58. <div class="menu_item" @click="menuToPage('FIND_CAR')" v-if="portalsByLbsList.indexOf('FIND_CAR') > -1" >
  59. <img :src="`${require(`@/pages/parkingFee/static/images/find_car.png`)}`"/>
  60. <span>反向寻车</span>
  61. </div>
  62. </div>
  63. <!-- 菜单2 -->
  64. <div v-else-if="custTypeId >= 0 && portalsByLbsList.length > 5 && source !== 'KIP'">
  65. <div
  66. :class="{
  67. top_menu2: true,
  68. blue_top_menu: custTypeId === 1,
  69. green_top_menu: custTypeId === 2,
  70. }"
  71. >
  72. <div class="menu_item" @click="menuToPage('PAYMENT_RECORDS')" v-if="portalsByLbsList.indexOf('PAYMENT_RECORDS') > -1">
  73. <img :src="`${require(`@/pages/parkingFee/static/images/icon-order.png`)}`" />
  74. <span>缴费记录</span>
  75. </div>
  76. <div class="menu_item" @click="menuToPage('COUPON_EXCHANGE')" v-if="portalsByLbsList.indexOf('COUPON_EXCHANGE') > -1">
  77. <img :src="`${require(`@/pages/parkingFee/static/images/icon-coupon.png`)}`" />
  78. <span>停车券兑换</span>
  79. </div>
  80. <div class="menu_item" @click="menuToPage('PARKING_INVOICE')" v-if="portalsByLbsList.indexOf('PARKING_INVOICE') > -1">
  81. <img :src="`${require(`@/pages/parkingFee/static/images/icon-ticket.png`)}`" />
  82. <span>停车开票</span>
  83. </div>
  84. </div>
  85. <!-- 菜单3 -->
  86. <div
  87. :class="{
  88. top_menu: true,
  89. blue_top_menu: custTypeId === 1,
  90. green_top_menu: custTypeId === 2,
  91. }"
  92. >
  93. <div class="menu_item" @click="menuToPage('FIND_CAR')" v-if="portalsByLbsList.indexOf('FIND_CAR') > -1">
  94. <img :src="`${require(`@/pages/parkingFee/static/images/find_car.png`)}`"/>
  95. <span>反向寻车</span>
  96. </div>
  97. <div class="menu_item" @click="menuToPage('VEHICLE_MANAGE')">
  98. <img :src="`${require(`@/pages/parkingFee/static/images/icon-car.png`)}`" v-if="portalsByLbsList.indexOf('VEHICLE_MANAGE') > -1" />
  99. <span>车辆管理</span>
  100. </div>
  101. <div class="menu_item" @click="menuToPage('PARKING_BENEFITS')" v-if="portalsByLbsList.indexOf('PARKING_BENEFITS') > -1">
  102. <img :src="`${require(`@/pages/parkingFee/static/images/parkingRights.svg`)}`" />
  103. <span>停车权益</span>
  104. </div>
  105. </div>
  106. </div>
  107. <!-- 中控 -->
  108. <div class="parkingFee-bottom">
  109. <div style="height: 40px; background-color: #FBFCFF;" v-if="source === 'KIP'"></div>
  110. <div v-if="supportUnlicensed && source !== 'KIP'" :class="['parkingFee-tab', tabbarActive === 'paymentForUnregisteredVehicle' && 'unlicensed-box-bottom']">
  111. <div :class="['bar', tabbarActive === 'manualPayment' && 'active']" @click="tabbarActiveEvent('manualPayment')">手动缴费</div>
  112. <div :class="['bar', tabbarActive === 'paymentForUnregisteredVehicle' && 'active']" @click="tabbarActiveEvent('paymentForUnregisteredVehicle')">无牌缴费</div>
  113. </div>
  114. <!-- 无牌缴费 -->
  115. <div class="unlicensed-box" v-if="tabbarActive === 'paymentForUnregisteredVehicle'">
  116. <!-- 无牌车 -->
  117. <div class="no-car-unlicensed-box" v-if="!unlicensedCar">
  118. <img :src="`${require(`@/pages/parkingFee/static/images/unlicensed-1.png`)}`" />
  119. <div class="no-car-unlicensed-info">未查询到无牌车信息</div>
  120. <div class="search-btn no-car-unlicensed-btn" @click="scanCarCode">
  121. <!-- <van-icon name="scan" />扫描进场二维码领取无牌车号牌 -->
  122. <img class="unlicensed-scan" :src="`${require(`@/pages/parkingFee/static/images/unlicensed-scan.png`)}`" /><span class="text">扫描进场二维码领取无牌车号牌</span>
  123. </div>
  124. </div>
  125. <!-- 有无牌车 -->
  126. <div class="in-car" v-if="unlicensedCar">
  127. <div class="car-number-box">
  128. <img :src="`${require(`@/pages/parkingFee/static/images/unlicensed-0.png`)}`" />
  129. <div class="car-number">
  130. <div class="number">{{ unlicensedCar }}</div>
  131. <div class="tips">车辆类型:无牌车辆</div>
  132. </div>
  133. </div>
  134. <div class="search-btn" @click="unlicensedToPay">去支付</div>
  135. </div>
  136. </div>
  137. <!-- 手动缴费: v-show="tabbarActive === 'manualPayment'" -->
  138. <div class="manual-box" v-else>
  139. <div class="parkingFee-search">
  140. <div class="search_tip_1" :style="{paddingTop: supportUnlicensed? '0': '32px'}">
  141. <div class="title">车辆类型</div>
  142. <!-- <k-tab ref="k-tab" type="fill" @change="toggleType" :tabs="['燃油车牌', '新能源', '特殊车牌']" />-->
  143. <k-tab ref="k-tab" type="fill" @change="toggleType" :tabs="['燃油车牌', '新能源', '特殊车牌']" />
  144. </div>
  145. <!-- <div class="search_tip">
  146. <div class="title">车辆类型</div>
  147. <div class="search_tip_pt">
  148. <div :class="carType == 0 ? 'search_tip_pt_index' : ''" @click="toggleType(0)">燃油车牌</div>
  149. <div :class="carType == 1 ? 'search_tip_pt_index' : ''" @click="toggleType(1)">新能源</div>
  150. <div :class="carType == 2 ? 'search_tip_pt_index' : ''" @click="toggleType(2)">特殊车牌</div>
  151. </div>
  152. </div> -->
  153. <div class="input-box">
  154. <!-- <div v-for="i in carType === 1 ? 8 : 7" class="li" :key="`numArr${i}`" @click="clickShowKeyboard(i)" :class="[active === i ? 'active' : '']">
  155. {{ numArr[i] }}
  156. </div> -->
  157. <div class="van-hairline--surround li" @click="clickShowKeyboard(0)" :class="[active === 0 ? 'active' : '']">
  158. {{ numArr[0] }}
  159. </div>
  160. <div class="van-hairline--surround li" @click="clickShowKeyboard(1)" :class="[active === 1 ? 'active' : '']">
  161. {{ numArr[1] }}
  162. </div>
  163. <div class="input_box_dian">·</div>
  164. <div class="van-hairline--surround li" @click="clickShowKeyboard(2)" :class="[active === 2 ? 'active' : '']">
  165. {{ numArr[2] }}
  166. </div>
  167. <div class="van-hairline--surround li" @click="clickShowKeyboard(3)" :class="[active === 3 ? 'active' : '']">
  168. {{ numArr[3] }}
  169. </div>
  170. <div class="van-hairline--surround li" @click="clickShowKeyboard(4)" :class="[active === 4 ? 'active' : '']">
  171. {{ numArr[4] }}
  172. </div>
  173. <div class="van-hairline--surround li" @click="clickShowKeyboard(5)" :class="[active === 5 ? 'active' : '']">
  174. {{ numArr[5] }}
  175. </div>
  176. <div :class="['van-hairline--surround li', active === 6 ? 'active' : '']" @click="clickShowKeyboard(6)">
  177. {{ numArr[6] }}
  178. </div>
  179. <div class="li dashed green-active" @click="clickShowKeyboard(7)" :class="[active === 7 ? 'active' : '']" >
  180. <span v-if="carType === 1">{{ numArr[7] }}</span>
  181. <img v-else :src="require('@/pages/parkingFee/static/images/unlicensed/leaf.svg')">
  182. </div>
  183. </div>
  184. <k-button title="查询缴费" style="margin-top: 46px;margin-bottom: 43px;" :disabled="disabledBtn" disabledColor="#D1D2D9" @click="preHandleSearch" />
  185. <!-- <div type="primary" class="search-btn" :class="disabledBtn ? 'disabled-btn' : ''" :disabled="disabledBtn" @click="preHandleSearch">查询缴费</div> -->
  186. </div>
  187. </div>
  188. </div>
  189. <div class="parkingFee-top">
  190. <div class="top_content ql-snow">
  191. <div class="title_box">
  192. <span class="btn">缴费说明</span>
  193. </div>
  194. <div class="info" :class="[!init_ch ? 'info_show' : '', 'ql-editor']">
  195. <div v-html="description"></div>
  196. </div>
  197. </div>
  198. <div v-if="!init_ch && description && description.length > 60" class="top_down_filter"></div>
  199. <div class="top_down" @click="top_display" v-if="!init_ch && description && description.length > 60"><van-icon name="arrow-down" /></div>
  200. <div class="top_down" @click="top_display" v-else><van-icon name="arrow-up" /></div>
  201. </div>
  202. </div>
  203. </div>
  204. </scroll-view>
  205. <wx-points-auth ref="wxPointsAuth"></wx-points-auth>
  206. <plate-number ref="plateKeyboard" :noDisBtn="[32, 33, 34,35, 36, 37]" :carType="carType" :active="active" :ind="ind" :numArr="numArr" @carnoArr="updateCarno"></plate-number>
  207. <checkCarPopup ref="checkCarPopup"></checkCarPopup>
  208. </div>
  209. </template>
  210. <script>
  211. import parkingFeeJs from './mixins/parkingFee';
  212. import baseMixins from './mixins/base'
  213. export default {
  214. mixins: [baseMixins, parkingFeeJs],
  215. name: 'parkingFeeCom',
  216. };
  217. </script>
  218. <style lang="less" scoped>
  219. .scroll-Y {
  220. width: 100%;
  221. height: 100vh;
  222. }
  223. .paekingFeeClass {
  224. position:relative;
  225. }
  226. .color-scroll-Y {
  227. background: #f4f7ff;
  228. // background: red;
  229. }
  230. .wrap {
  231. display: flex;
  232. flex-direction: column;
  233. width: 100%;
  234. .parkingFee {
  235. display: flex;
  236. flex-direction: column;
  237. .top_menu2 {
  238. background: #FBFCFF;
  239. box-sizing: border-box;
  240. display: flex;
  241. justify-content: space-between;
  242. padding-top: 34px;
  243. .menu_item {
  244. display: flex;
  245. flex-direction: column;
  246. align-items: center;
  247. width: 33.3%;
  248. img {
  249. width: 100px;
  250. height: 100px;
  251. margin-bottom: 3px;
  252. }
  253. span {
  254. // font-size: 30px;
  255. margin-top: 10px;
  256. // color: #333333;
  257. // font-size: 28px;
  258. font-family: 'Inter';
  259. font-style: normal;
  260. font-weight: 400;
  261. font-size: 28px;
  262. line-height: 34px;
  263. color: #333333;
  264. }
  265. }
  266. .menu_item_2 {
  267. align-items: center;
  268. width: 33.3%;
  269. img {
  270. width: 100px;
  271. height: 100px;
  272. margin-bottom: 3px;
  273. }
  274. span {
  275. // font-size: 30px;
  276. margin-top: 10px;
  277. // color: #333333;
  278. // font-size: 28px;
  279. font-family: 'Inter';
  280. font-style: normal;
  281. font-weight: 400;
  282. font-size: 28px;
  283. line-height: 34px;
  284. color: #333333;
  285. }
  286. }
  287. .menu_item_3 {
  288. display: flex;
  289. flex-direction: column;
  290. }
  291. }
  292. .top_menu {
  293. background: #FBFCFF;
  294. box-sizing: border-box;
  295. display: flex;
  296. justify-content: space-between;
  297. padding-top: 34px;
  298. margin-bottom: 20px;
  299. padding-bottom: 30px;
  300. .menu_item {
  301. display: flex;
  302. flex-direction: column;
  303. align-items: center;
  304. width: 33.3%;
  305. img {
  306. width: 100px;
  307. height: 100px;
  308. margin-bottom: 3px;
  309. }
  310. span {
  311. // font-size: 30px;
  312. margin-top: 10px;
  313. // color: #333333;
  314. // font-size: 28px;
  315. font-family: 'Inter';
  316. font-style: normal;
  317. font-weight: 400;
  318. font-size: 28px;
  319. line-height: 34px;
  320. color: #333333;
  321. }
  322. }
  323. .menu_item_2 {
  324. align-items: center;
  325. width: 33.3%;
  326. img {
  327. width: 100px;
  328. height: 100px;
  329. margin-bottom: 3px;
  330. }
  331. span {
  332. // font-size: 30px;
  333. margin-top: 10px;
  334. // color: #333333;
  335. // font-size: 28px;
  336. font-family: 'Inter';
  337. font-style: normal;
  338. font-weight: 400;
  339. font-size: 28px;
  340. line-height: 34px;
  341. color: #333333;
  342. }
  343. }
  344. .menu_item_3 {
  345. display: flex;
  346. flex-direction: column;
  347. }
  348. }
  349. .parkingFee-bottom {
  350. width: 100%;
  351. display: flex;
  352. flex-direction: column;
  353. box-sizing: border-box;
  354. // tabber 切换
  355. .parkingFee-tab {
  356. padding-top: 46px;
  357. padding-left: 27px;
  358. padding-bottom: 50px;
  359. background-color: #FBFCFF;
  360. display: flex;
  361. align-items: flex-end;
  362. &.unlicensed-box-bottom {
  363. padding-bottom: 120px;
  364. }
  365. .bar {
  366. color: #666666;
  367. // font-size: 32px;
  368. // font-weight: 500;
  369. font-family: 'PingFang SC';
  370. font-style: normal;
  371. font-weight: 500;
  372. font-size: 32px;
  373. line-height: 30px;
  374. /* identical to box height, or 94% */
  375. color: #666666;
  376. &:nth-child(1) {
  377. margin-right: 24px;
  378. }
  379. &.active {
  380. font-size: 38px;
  381. color: #333333;
  382. font-family: 'PingFang SC';
  383. font-style: normal;
  384. font-weight: 500;
  385. font-size: 38px;
  386. line-height: 38px;
  387. color: #333333;
  388. }
  389. }
  390. }
  391. // 车牌号查询
  392. .parkingFee-search {
  393. width: 100%;
  394. display: flex;
  395. flex-direction: column;
  396. background: #FBFCFF;
  397. box-sizing: border-box;
  398. .search_tip {
  399. width: 100%;
  400. margin-left: -1px;
  401. display: flex;
  402. justify-content: flex-start;
  403. align-items: center;
  404. padding-right: 30px;
  405. margin-bottom: 40px;
  406. .title {
  407. font-size: 30px;
  408. color: #333333;
  409. padding-left: 27px;
  410. margin-right: 33px;
  411. }
  412. .search_tip_pt {
  413. font-size: 28px;
  414. margin-right: 30px;
  415. flex: 1;
  416. display: flex;
  417. justify-content: space-around;
  418. align-items: center;
  419. border: 1px solid #999999;
  420. height: 60px;
  421. color: #999999;
  422. overflow: hidden;
  423. border-radius: 90px;
  424. div {
  425. height: 100%;
  426. width: 100%;
  427. border-radius: 90px;
  428. line-height: 62px;
  429. text-align: center;
  430. }
  431. .search_tip_pt_index {
  432. color: #fff;
  433. //background-image: linear-gradient(to right, #7e4fa1, #433c7f);
  434. background-color: #644a79;
  435. }
  436. }
  437. }
  438. .search_tip_1 {
  439. padding: 0 27px 40px;
  440. display: flex;
  441. align-items: center;
  442. .title {
  443. // font-size: 30px;
  444. margin-right: 33px;
  445. font-family: 'PingFang SC';
  446. font-style: normal;
  447. font-weight: 500;
  448. font-size: 30px;
  449. line-height: 36px;
  450. color: #333333;
  451. }
  452. .k-tab-group-fill {
  453. flex: 1;
  454. }
  455. }
  456. // 车牌号 & 虚拟键盘
  457. .input-box {
  458. width: 100%;
  459. flex: 1;
  460. display: flex;
  461. padding-bottom: 46px;
  462. padding: 0 17px;
  463. justify-content: center;
  464. box-sizing: border-box;
  465. .li {
  466. width: 100%;
  467. //border: 1px solid #d9dbe0;
  468. box-sizing: border-box;
  469. height: 90px;
  470. display: flex;
  471. align-items: center;
  472. justify-content: center;
  473. color: #333333;
  474. background-color: #f4f7ff;
  475. border-radius: 4px;
  476. font-size: 40px;
  477. margin: 0 3px;
  478. &.dashed {
  479. background-color: #fafbff;
  480. border: 1px dashed #fafbff;
  481. }
  482. &.van-hairline--surround {
  483. &::after{
  484. border-radius: 7px;
  485. border-color: #D9DBE0;
  486. }
  487. }
  488. &.active {
  489. &::after{
  490. border-color: var(--k-color-primary-01, #064c8a);
  491. }
  492. }
  493. &.green-active {
  494. background: #F8FFED;
  495. border-color: #7DB124;
  496. color: #7DB124;
  497. img{
  498. width: 41px;
  499. height: 39px;
  500. }
  501. }
  502. }
  503. .input_box_dian {
  504. display: flex;
  505. justify-content: center;
  506. align-items: center;
  507. font-size: 120px;
  508. height: 70px;
  509. color: var(--k-color-primary);
  510. }
  511. }
  512. .search-btn {
  513. color: #fff;
  514. margin: 0 auto;
  515. height: 90px;
  516. width: calc(100% - 60px);
  517. line-height: 90px;
  518. border-radius: 80px;
  519. font-size: 36px;
  520. text-align: center;
  521. //background-image: linear-gradient(to right, #7e4fa1, #433c7f);
  522. // background-color: #644a79;
  523. background-color: var(--k-color-primary);
  524. margin-bottom: 43px;
  525. }
  526. .disabled-btn {
  527. background-color: #c1c1c1 !important;
  528. //background-image: none !important;
  529. }
  530. }
  531. /* 历史车牌 */
  532. .vehicleMgt-list {
  533. // margin-top: 43px;
  534. // padding-top: 43px;
  535. display: flex;
  536. flex-direction: column;
  537. // margin-bottom: 34px;
  538. padding-bottom: 34px;
  539. //margin-top: 20px;
  540. //padding-top: 20px;
  541. background-color: #FBFCFF;
  542. .vehicleMgt-title {
  543. //width: 91%;
  544. padding-left: 27px;
  545. display: flex;
  546. text-align: left;
  547. font-weight: 500;
  548. justify-content: space-between;
  549. //margin-left: 4%;
  550. // padding-left: 30px;
  551. //padding-top: 30px;
  552. height: 40px;
  553. line-height: 40px;
  554. box-sizing: border-box;
  555. margin-bottom: 24px;
  556. // border-top: 1px solid #f2f2f2;
  557. font-size: 30px;
  558. .vehicleMgt-title-img {
  559. width: 30px;
  560. height: 30px;
  561. }
  562. }
  563. .vehicleMgt-content {
  564. width: 94%;
  565. margin-left: 29px;
  566. display: flex;
  567. flex-wrap: wrap;
  568. // justify-content: space-around;
  569. border-radius: 15px;
  570. .item {
  571. width: 30%;
  572. height: 60px;
  573. box-sizing: content-box;
  574. //padding: 0 2px;
  575. // margin-top: 30px;
  576. // margin-left: 16px;
  577. margin-right: 15px;
  578. margin-bottom: 16px;
  579. text-align: center;
  580. box-sizing: border-box;
  581. border: 1px solid #d9dbe0;
  582. background-color: #f4f7ff;
  583. line-height: 60px;
  584. font-size: 28px;
  585. border-radius: 30px;
  586. color: #666666;
  587. }
  588. .vehicleMgt-content_cls {
  589. color: var(--k-color-primary-active);
  590. border: 2px solid var(--k-color-primary-active);
  591. }
  592. }
  593. }
  594. }
  595. /* 无牌车UI */
  596. .unlicensed-box {
  597. background-color: #FBFCFF;
  598. .no-car-unlicensed-box {
  599. box-sizing: border-box;
  600. img {
  601. width: 391px;
  602. display: block;
  603. margin: 0 auto;
  604. }
  605. .no-car-unlicensed-info {
  606. color: #919baa;
  607. font-size: 36px;
  608. line-height: 36px;
  609. text-align: center;
  610. margin-bottom: 70px;
  611. font-family: 'PingFang SC';
  612. font-style: normal;
  613. font-weight: 400;
  614. }
  615. .search-btn {
  616. font-size: 32px;
  617. height: 90px;
  618. color: #ffffff;
  619. line-height: 90px;
  620. background: var(--k-color-primary);
  621. text-align: center;
  622. margin: 0 30px;
  623. border-radius: 45px;
  624. margin-bottom: 58px;
  625. .unlicensed-scan {
  626. display: inline-block;
  627. width: 60px;
  628. height: 60px;
  629. position: relative;
  630. top: 17px;
  631. margin-right: 15px;
  632. }
  633. &.no-car-unlicensed-btn {
  634. .text{
  635. position: relative;
  636. top: -2px;
  637. }
  638. }
  639. }
  640. }
  641. .in-car {
  642. box-sizing: border-box;
  643. .car-number-box {
  644. height: 230px;
  645. //padding-top: 53px;
  646. padding-left: 18px;
  647. //padding-bottom: 34px;
  648. background: #fbfcff;
  649. border: 1px solid #d9dbe0;
  650. border-radius: 4px;
  651. margin: 0 24px;
  652. display: flex;
  653. margin-bottom: 40px;
  654. display: flex;
  655. align-items: center;
  656. img {
  657. width: 288px;
  658. height: 142px;
  659. }
  660. .car-number {
  661. .number {
  662. font-size: 50px;
  663. line-height: 56px;
  664. font-weight: 600;
  665. color: #333333;
  666. margin-bottom: 23px;
  667. }
  668. .tips {
  669. color: #999999;
  670. }
  671. }
  672. }
  673. .search-btn {
  674. background: var(--k-color-primary);
  675. border-radius: 45px;
  676. color: #ffffff;
  677. line-height: 90px;
  678. height: 90px;
  679. font-size: 36px;
  680. text-align: center;
  681. margin: 0 30px 40px;
  682. }
  683. }
  684. }
  685. /* 缴费说明 */
  686. .parkingFee-top {
  687. display: flex;
  688. flex-direction: column;
  689. background-size: 100% 30%;
  690. padding-left: 27px;
  691. padding-right: 27px;
  692. background-color: #FBFCFF;
  693. position: relative;
  694. .top_content {
  695. box-sizing: border-box;
  696. span {
  697. font-size: 24px;
  698. color: #898989;
  699. text-align: left;
  700. }
  701. .title_box {
  702. display: flex;
  703. align-items: center;
  704. justify-content: space-between;
  705. margin-bottom: 20px;
  706. .btn {
  707. box-sizing: border-box;
  708. border-radius: 20px;
  709. font-size: 30px;
  710. font-weight: 500;
  711. color: #333;
  712. text-align: left;
  713. }
  714. }
  715. .sub_title_box {
  716. margin-bottom: 5px;
  717. .btn{
  718. font-family: 'PingFang SC';
  719. font-style: normal;
  720. font-weight: 400;
  721. font-size: 26px;
  722. line-height: 40px;
  723. color: #333333;
  724. }
  725. }
  726. .info {
  727. padding-left: 2px;
  728. font-size: 27px;
  729. width: 95%;
  730. // color: #666;
  731. line-height: 45px;
  732. p {
  733. margin: 0;
  734. }
  735. }
  736. .ql-editor {
  737. width: 100%;
  738. padding-left: 2vw;
  739. }
  740. .info_show {
  741. height: 150px;
  742. overflow: hidden;
  743. }
  744. }
  745. .top_down_filter {
  746. height: 150px;
  747. margin-top: -150px;
  748. background-color: #FBFCFF;
  749. background: linear-gradient(to top, #FBFCFF, rgba(0, 123, 255, 0));
  750. }
  751. .top_down {
  752. width: 100%;
  753. text-align: center;
  754. color: #999999;
  755. padding-top: 25px;
  756. padding-bottom: 20px;
  757. }
  758. }
  759. }
  760. }
  761. // 缴费说明
  762. .payInstruct_wrap {
  763. width: 300px;
  764. margin: 0 auto;
  765. display: flex;
  766. flex-direction: column;
  767. background: #fff;
  768. border-radius: 20px;
  769. .scroll {
  770. height: 600px;
  771. display: flex;
  772. flex-direction: column;
  773. padding: 20px;
  774. box-sizing: border-box;
  775. .payInstruct_title {
  776. font-size: 30px;
  777. text-align: center;
  778. padding: 20px 0;
  779. box-sizing: border-box;
  780. border-bottom: 1px solid #f2f2f2;
  781. }
  782. .payInstruct_con {
  783. display: flex;
  784. width: 100%;
  785. padding: 20px 10px;
  786. box-sizing: border-box;
  787. span {
  788. font-size: 28px;
  789. color: #999;
  790. }
  791. }
  792. }
  793. }
  794. .class-plate-box {
  795. width: 100%;
  796. padding: 24px 0;
  797. box-sizing: border-box;
  798. position: relative;
  799. }
  800. .delBtn {
  801. color: #fff;
  802. height: 38px;
  803. line-height: 38px;
  804. font-size: 20px;
  805. width: 124px;
  806. border-radius: 7px;
  807. text-align: center;
  808. padding: 4px;
  809. background-color: #c69c6d;
  810. }
  811. .payThe {
  812. background-color: #fff;
  813. width: 100%;
  814. .pay_index {
  815. text-align: center;
  816. width: 200px;
  817. padding-top: 10px;
  818. margin: 0px auto;
  819. }
  820. .pay_title {
  821. width: 500px;
  822. display: flex;
  823. align-items: center;
  824. margin-top: 30px;
  825. }
  826. .pay_title1 {
  827. width: 100%;
  828. margin-top: 20px;
  829. display: flex;
  830. align-items: center;
  831. }
  832. .pay_title_yhj {
  833. margin-left: 60px;
  834. font-size: 20px;
  835. }
  836. .pay_title_yhj1 {
  837. margin-left: 35px;
  838. font-size: 20px;
  839. }
  840. .payjf {
  841. font-size: 20px;
  842. margin-left: 30px;
  843. }
  844. .paySelect {
  845. color: rgba(16, 16, 16, 100);
  846. font-size: 20px;
  847. font-family: Arial;
  848. border: 1px solid rgba(187, 187, 187, 100);
  849. border-radius: 10px;
  850. margin-left: 80px;
  851. width: 260px;
  852. height: 80px;
  853. }
  854. .paySelect1 {
  855. color: rgba(16, 16, 16, 100);
  856. font-size: 20px;
  857. font-family: Arial;
  858. border: 1px solid rgba(187, 187, 187, 100);
  859. border-radius: 10px;
  860. margin-left: 80px;
  861. width: 260px;
  862. height: 80px;
  863. display: flex;
  864. align-items: center;
  865. }
  866. .pay-se {
  867. width: 120px;
  868. height: 100%;
  869. background-color: #d8dce6;
  870. .pay-se-l {
  871. height: 48%;
  872. text-align: center;
  873. font-size: 50px;
  874. line-height: 68px;
  875. }
  876. .pay-se-l1 {
  877. border-left: 1px solid rgba(187, 187, 187, 100);
  878. border-bottom: 1px solid rgba(187, 187, 187, 100);
  879. }
  880. .pay-se-l2 {
  881. border-left: 1px solid rgba(187, 187, 187, 100);
  882. }
  883. }
  884. .payjfzk {
  885. font-size: 20px;
  886. color: #8b8c8b;
  887. margin-top: 10px;
  888. margin-left: 210px;
  889. }
  890. .pay_time {
  891. font-size: 28px;
  892. margin-left: 180px;
  893. padding-bottom: 40px;
  894. }
  895. .pay_time1 {
  896. margin-top: 26px;
  897. }
  898. }
  899. .pay_jiaof {
  900. width: 97%;
  901. height: 60px;
  902. line-height: 60px;
  903. margin-left: 10px;
  904. background-color: #c69c6d;
  905. text-align: center;
  906. color: rgba(255, 255, 255, 100);
  907. font-size: 28px;
  908. font-family: Microsoft Yahei;
  909. border-radius: 10px;
  910. margin-top: 20px;
  911. }
  912. .sq_content {
  913. width: 700px;
  914. background-color: #fff;
  915. position: fixed;
  916. bottom: 25px;
  917. left: 25px;
  918. height: 50px;
  919. display: flex;
  920. justify-content: space-between;
  921. align-items: center;
  922. border-radius: 15px;
  923. font-size: 16px;
  924. color: #c69c6d;
  925. padding: 0px 30px;
  926. box-sizing: border-box;
  927. }
  928. .sq_content .btn {
  929. width: 180px;
  930. height: 30px;
  931. line-height: 30px;
  932. text-align: center;
  933. color: #fff;
  934. background-color: #c69c6d;
  935. margin-top: -3px;
  936. border-radius: 25px;
  937. }
  938. // 停车券弹窗
  939. .ticketPopup {
  940. display: flex;
  941. flex-direction: column;
  942. background: #fff;
  943. border-radius: 20px 20px 0 0;
  944. z-index: 999;
  945. .popup-title {
  946. display: flex;
  947. justify-content: center;
  948. align-items: center;
  949. padding: 30px 42px;
  950. box-sizing: border-box;
  951. border-bottom: 1px solid #f2f2f2;
  952. position: relative;
  953. span {
  954. color: #999;
  955. font-size: 28px;
  956. }
  957. .useRule-text {
  958. position: absolute;
  959. right: 42px;
  960. color: rgb(58, 130, 248);
  961. }
  962. }
  963. .popup_scroll {
  964. height: 70vh;
  965. background: #f2f2f2;
  966. }
  967. .popup_content {
  968. width: 100%;
  969. height: 100%;
  970. display: flex;
  971. flex-direction: column;
  972. padding: 10px 20px;
  973. box-sizing: border-box;
  974. .item {
  975. display: flex;
  976. background: #fff;
  977. margin-bottom: 20px;
  978. border-radius: 10px;
  979. .item-left {
  980. flex: 1;
  981. display: flex;
  982. align-items: center;
  983. padding: 20px 0;
  984. box-sizing: border-box;
  985. position: relative;
  986. .item-type {
  987. position: absolute;
  988. top: 0;
  989. left: 0;
  990. background: #fff5f1;
  991. border-radius: 10px 0 10px 0;
  992. width: 205px;
  993. display: flex;
  994. justify-content: center;
  995. span {
  996. color: #999;
  997. font-size: 20px;
  998. text-align: center;
  999. line-height: 28px;
  1000. }
  1001. }
  1002. .item-value {
  1003. color: #c69c6d;
  1004. font-size: 40px;
  1005. padding: 10px 30px;
  1006. box-sizing: border-box;
  1007. width: 205px;
  1008. display: flex;
  1009. justify-content: center;
  1010. .b {
  1011. color: #c69c6d;
  1012. font-weight: 600;
  1013. font-size: 60px;
  1014. }
  1015. }
  1016. .color_disabled {
  1017. color: #999 !important;
  1018. }
  1019. }
  1020. .item-right {
  1021. display: flex;
  1022. align-items: center;
  1023. justify-content: center;
  1024. border-radius: 0 8px 8px 0;
  1025. position: relative;
  1026. span {
  1027. color: #c69c6d;
  1028. font-size: 24px;
  1029. padding: 0 20px;
  1030. box-sizing: border-box;
  1031. }
  1032. .color_disabled {
  1033. color: #999;
  1034. }
  1035. // 对勾
  1036. .dot {
  1037. position: absolute;
  1038. top: 0;
  1039. right: 0;
  1040. width: 2.25rem;
  1041. height: 2.375rem;
  1042. }
  1043. }
  1044. }
  1045. }
  1046. }
  1047. // 弹窗按钮
  1048. .popup_button {
  1049. width: 100%;
  1050. display: flex;
  1051. align-items: center;
  1052. justify-content: space-between;
  1053. padding: 10px 20px;
  1054. box-sizing: border-box;
  1055. span {
  1056. height: 110px;
  1057. line-height: 110px;
  1058. text-align: center;
  1059. }
  1060. .cancel_btn {
  1061. background: #fff;
  1062. color: #ed1c24 !important;
  1063. }
  1064. .ok_btn {
  1065. background: #c69c6d;
  1066. color: #fff !important;
  1067. width: 120px;
  1068. height: 40px;
  1069. line-height: 40px;
  1070. border-radius: 40px;
  1071. }
  1072. }
  1073. </style>