1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234 |
- <template>
- <div v-if="orderDetail && orderDetail.parkingRecord && orderDetail.parkingRecord.vehicleNo" :class="theme">
- <div class="scroll-Y">
- <div
- class="vehicleNo"
- >
- {{ orderDetail.parkingRecord.vehicleNo | formatCarno }}
- <!-- {{ $route.query.carno | formatCarno }} -->
- </div>
- <div class="info-box mb--20">
- <div class="info-item-box">
- <div class="label">停车场</div>
- <div class="value">{{ orderDetail.parkInfo.parkName }}</div>
- </div>
- <div class="info-item-box">
- <div class="label">入场时间</div>
- <div class="value">{{ orderDetail.parkingRecord.enterTime }}</div>
- </div>
- <div class="info-item-box">
- <div class="label">已停车时长</div>
- <div class="value">{{ orderDetail.parkingRecord.serviceMin | parkingTime }}</div>
- </div>
- <div class="van-hairline--bottom hr"></div>
- <div class="info-item-box npb">
- <div class="label pb--27">应缴</div>
- <div class="value bold-fz">
- {{ ( orderDetail.parkingRecord.totalFeeInYuan ) | currency }}
- </div>
- </div>
- </div>
- <div class="info-box mb--30">
- <div class="info-item-box" v-if="enableConsume || memberLevelDiscount">
- <div class="label">停车优惠</div>
- <div @click="discounts" :class="['value',discountDesc === '暂无可用优惠' ? '' : 'text-red']">{{ discountDesc }}
- <van-icon name="arrow"/>
- </div>
- </div>
- <div class="info-item-box" v-if="enablePoints">
- <div class="label">积分减免</div>
- <div :class="['value']" @click="showPointsMathPopup('bottom')">
- <span :class="[integralDesc === '今日已达上限' ? 'text-disable' : 'text-red']">{{ integralDesc }}</span>
- <van-icon name="arrow"/>
- </div>
- </div>
- <div class="info-item-box" v-if="enableCoupon">
- <div class="label">优惠劵</div>
- <div :class="['value',]" @click="coupon">
- <span :class="[ coupons.length > 0 ? 'text-red': 'text-disable']">{{ couponDesc }}</span>
- <van-icon name="arrow"/>
- </div>
- </div>
- <div class="info-item-box" v-if="enablePaperCoupons">
- <div class="label">纸质优惠劵</div>
- <div :class="['value', 'text-red']" @click="paperCoupon">扫描纸质优惠劵二维码
- <van-icon name="arrow"/>
- </div>
- </div>
- <div class="info-item-box">
- <div class="label">优惠金额:</div>
- <div :class="['value']">-{{ usingTotalDiscount | currency }}</div>
- </div>
- <div class="van-hairline--bottom hr"></div>
- <div class="info-item-box npb">
- <div class="label pb--27">应付金额</div>
- <div :class="['value', 'bold-fz', usingTotalDiscount === 0 && 'text-red']">
- {{ actualPayFee | currency }}
- </div>
- </div>
- </div>
- <div class="description-box">
- <div class="title_box">
- <span class="title">缴费说明</span>
- </div>
- <!-- <div class="sub_title_box">-->
- <!-- <span class="title">计费基础规则:</span>-->
- <!-- </div>-->
- <div class="info" v-html="setDescription()"></div>
- </div>
- <!-- <div style="height: 50px;"></div>-->
- <!-- 开启底部安全区适配 -->
- <van-number-keyboard safe-area-inset-bottom />
- </div>
- <div class="flewx">
- <div class="control-box">
- <div class="flewx-content">
- <div class="fee-box">
- <div>合计:</div>
- <div class="actualPayFee">{{
- actualPayFee | currency
- }}
- </div>
- <div :class="['van-hairline--surround','usingTotalDiscount', usingTotalDiscount > 0 && 'usingTotalDiscount-red']"
- >已优惠{{ usingTotalDiscount | currency }}元
- </div
- >
- <!-- <van-count-down :time="3 * 60 * 1000" /> -->
- </div>
- <div class="count-down-box">
- <van-count-down
- v-if="orderDetail.parkingRecord.vehicleNo"
- format="mm:ss"
- ref="countDown"
- :time="refreshTime * 1000"
- @finish="resetCountDown()"
- >
- <!-- -->
- </van-count-down>
- <span class="desc">后同步最新费用</span>
- </div>
- </div>
- <div class="btn-box">
- <k-button :disabled="btnLoading" style="width: 100%;max-width: 240px" title="支付" disabledColor="#D1D2D9" @click="toPay">
- <template v-slot:left>
- <van-loading v-if="btnLoading" size="20" color="#fff" style="margin-right: 10px"/>
- </template>
- </k-button>
- </div>
- </div>
- <!-- 开启底部安全区适配 -->
- <van-number-keyboard safe-area-inset-bottom />
- </div>
- <van-popup
- v-model="popup"
- position="bottom"
- :animation="false"
- :maskClick="false"
- :close-on-click-overlay="false"
- >
- <div class="popue_box" v-if="orderDetail && orderDetail.discountInfo">
- <div class="popue_box_index1">积分减免</div>
- <div class="popue_box_index">
- <div>减免规则</div>
- <div style="color: #989898">{{ pointsPerHour }}积分抵扣{{ orderDetail.parkInfo.parkMallCode === 5 ? unitAmount + '元' : '1小时' }}</div>
- </div>
- <div class="popue_box_index">
- <div>可用积分</div>
- <div style="color: #999999">{{ available }}分</div>
- </div>
- <div class="popue_box_index">
- <div>抵扣{{ orderDetail.parkInfo.parkMallCode === 5 ? '金额' : '时长' }}</div>
- <div class="popue_box_index" style="width: 335px">
- <div class="popue_box_index4_xs van-hairline--surround">
- <div class="popue_box_index4_xs_index1" @click="$store.dispatch('order/pointsMath',{type: 'minus', callback: pointsMathCallback})">
- -
- </div>
- <div class="popue_box_index4_xs_index2">{{ pointsTime }}</div>
- <div class="popue_box_index4_xs_index3" @click="$store.dispatch('order/pointsMath',{type: 'add', callback: pointsMathCallback})">
- +
- </div>
- </div>
- <div style="color: #808080">
- {{ orderDetail.parkInfo.parkMallCode === 5 ? '元' : '小时' }}
- </div>
- </div>
- </div>
- <div class="popue_box_index5">
- <div
- :class="{
- popue_box_index4_by: true,
- }"
- @click="cancelPointsMathPopup()"
- >
- 取消
- </div>
- <div
- :class="{
- popue_box_index4_by1: true,
- }"
- @click="savePointsMathPopup()"
- >
- 确定
- </div>
- </div>
- <van-number-keyboard safe-area-inset-bottom/>
- </div>
- </van-popup>
- </div>
- </template>
- <script>
- import parkingFeeDetailJs from './mixins/parkingFeeDetail'
- import baseMixins from './mixins/base'
- export default {
- mixins: [baseMixins, parkingFeeDetailJs]
- }
- </script>
- <style lang="less" scoped>
- .text-red {
- color: #F24439!important;
- }
- .scroll-Y {
- width: 100%;
- //display: flex;
- //flex-direction: column;
- background: #F5F7FE;
- padding-bottom: 250px;
- height: 100vh;
- overflow-y: scroll;
- //padding-bottom: 20px;
- padding-top: 24px;
- }
- /*车牌号*/
- .vehicleNo {
- width: 666px;
- height: 109.5px;
- line-height: 109.5px;
- margin-left: 24px;
- background-color: #FAFBFF;
- border-radius: 4px;
- margin-bottom: 20px;
- font-style: normal;
- font-weight: 600;
- font-size: 36px;
- padding-left: 36px;
- color: #333333;
- }
- .pb--27 {
- padding-bottom: 27px;
- }
- .mb--20 {
- margin-bottom: 20px;
- }
- .mb--30 {
- margin-bottom: 30px;
- }
- .info-box {
- background: #FAFBFF;
- padding-top: 30px;
- width: 702px;
- margin-left: 24px;
- .info-item-box {
- display: flex;
- justify-content: space-between;
- padding-bottom: 30px;
- &.npb{
- padding-bottom: 0;
- }
- .label {
- padding-left: 36px;
- //padding-bottom: 39px;
- text-align: left;
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 30px;
- color: #999999;
- }
- .value {
- text-align: right;
- padding-right: 36px;
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 30px;
- color: #333333;
- .van-icon {
- color: #999999;
- }
- &.bold-fz {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 500;
- font-size: 34px;
- color: #333333;
- }
- }
- }
- .hr {
- margin-bottom: 23px;
- }
- }
- .description-box {
- padding-left: 30px;
- .title_box {
- padding-bottom: 10px;
- .title {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 500;
- font-size: 30px;
- color: #333333;
- }
- }
- .sub_title_box {
- padding-bottom: 5px;
- .title {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 26px;
- color: #333333;
- }
- }
- .info {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 26px;
- line-height: 40px;
- /* or 154% */
- color: #999999;
- }
- }
- /*积分*/
- .popue_box {
- height: 695px;
- background-color: #fff;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- .popue_box_index {
- width: 92%;
- margin-left: 4%;
- height: 117px;
- border-bottom: 1px solid #f5f5f5;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 34px;
- text-align: right;
- color: #333333;
- }
- .popue_box_index1 {
- width: 92%;
- font-size: 34px;
- margin-left: 4%;
- font-weight: 700;
- height: 117px;
- line-height: 117px;
- border-bottom: 1px solid #f5f5f5;
- text-align: center;
- }
- .popue_box_index4_xs {
- width: 260px;
- height: 72px;
- border: 2px solid #D8DAE0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-radius: 10px;
- .popue_box_index4_xs_index1 {
- width: 72px;
- height: 72px;
- background-color: #FAFBFF;
- text-align: center;
- line-height: 72px;
- border-right: 1px solid #e5e6ec;
- }
- .popue_box_index4_xs_index2 {
- width: 116px;
- height: 72px;
- line-height: 72px;
- text-align: center;
- background-color: #FFFFFF;
- }
- .popue_box_index4_xs_index3 {
- width: 72px;
- height: 72px;
- background-color: #f5f8fb;
- text-align: center;
- line-height: 72px;
- border-left: 1px solid #e5e6ec;
- }
- }
- .popue_box_index5 {
- font-size: 30px;
- width: 92%;
- margin-left: 4%;
- font-weight: 700;
- height: 214px;
- line-height: 90px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .popue_box_index4_by {
- width: 320px;
- height: 90px;
- line-height: 90px;
- color: #fff;
- border-radius: 60px;
- text-align: center;
- color: var(--k-color-primary-01, #064c8a);
- font-weight: 700;
- border: 1px solid var(--k-color-primary-01, #064c8a);
- }
- .blue_popue_box_index4_by {
- .color_popue_box_index4_by('blue');
- }
- .green_popue_box_index4_by {
- .color_popue_box_index4_by('green');
- }
- .color_popue_box_index4_by(@value) {
- @color: 'color-@{value}';
- color: @@color;
- border: 1px solid @@color;
- }
- .popue_box_index4_by1 {
- width: 320px;
- height: 90px;
- line-height: 90px;
- color: #fff;
- border-radius: 60px;
- text-align: center;
- // background-image: linear-gradient(to right, #7e4fa1, #433c7f);
- background-color: var(--k-color-primary-01, #064c8a);
- border: 1px solid var(--k-color-primary-01, #064c8a);
- }
- }
- /*页面底部操作区*/
- .flewx {
- position: fixed;
- bottom: 0;
- right: 0;
- left: 0;
- box-shadow: 0 0 2px 0 hsla(0, 6%, 58%, 0.6);
- background-color: #fff;
- .control-box {
- width: 100%;
- box-sizing: border-box;
- display: flex;
- align-content: flex-start;
- align-items: center;
- //padding-bottom: constant(safe-area-inset-bottom);
- //padding-bottom: env(safe-area-inset-bottom);
- padding: 30px 24px 50px 30px;
- justify-content: space-between;
- .flewx-content {
- font-size: 28px;
- .fee-box {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .actualPayFee {
- color: #333;
- font-size: 40px;
- }
- .usingTotalDiscount {
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 22px;
- //height: 22px;
- //line-height: 22px;
- margin-left: 7px;
- //border: 1px solid var(--k-color-red-01);
- background-color: #F4F7FF;
- border-radius: 2px;
- &::after {
- border-color: #999999;
- }
- color: #999999;
- padding: 1px 3px;
- &.usingTotalDiscount-red {
- color: var(--k-color-red-01);
- background-color: var(--k-color-red-06);
- &::after {
- border-color: var(--k-color-red-01);
- }
- }
- }
- .count-down-box {
- display: flex;
- font-weight: 400;
- align-items: center;
- color: var(--k-color-red-01);
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 26px;
- margin-top: 5px;
- .van-count-down {
- font-size: 30px;
- color: var(--k-color-red-01);
- }
- .desc {
- font-size: 30px;
- }
- }
- }
- .btn-box {
- display: flex;
- justify-content: flex-end;
- margin-left: 35px;
- flex: 1;
- max-width: 240px;
- }
- }
- .flewx_index3 {
- width: 150px;
- height: 70px;
- border-radius: 45px;
- text-align: center;
- font-size: 34px;
- line-height: 70px;
- color: #fff;
- // background-image: linear-gradient(to right, #7e4fa1, #433c7f);
- background: var(--k-color-primary-01, #064c8a);
- box-shadow: 2px 3px 5px #888888;
- //position: absolute;
- //right: 16px;
- }
- }
- .wrap {
- display: flex;
- flex-direction: column;
- width: 100%;
- .parkingFee {
- display: flex;
- flex-direction: column;
- .parkingFee-top {
- display: flex;
- flex-direction: column;
- background: #c69c6d;
- .top_content {
- padding: 30px 30px;
- margin-bottom: constant(safe-area-inset-bottom); // 兼容 IOS<11.2
- margin-bottom: env(safe-area-inset-bottom); // 兼容 IOS>=11.2
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- //width: 750px;
- //height: 280px;
- background: #fafbff;
- border: 1px solid #d8dae0;
- span {
- font-size: 24px;
- color: #898989;
- text-align: left;
- }
- .title_box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- // margin-bottom: 20px;
- .title {
- // padding: 0px 14px;
- box-sizing: border-box;
- border-radius: 20px;
- font-size: 36px;
- color: #000;
- font-weight: 500;
- text-align: left;
- line-height: 50px;
- }
- }
- .info {
- // padding-left: 18px;
- font-size: 30px;
- width: 100%;
- color: #999999;
- line-height: 45px;
- }
- .info_show {
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .top_down {
- margin-top: 20px;
- width: 100%;
- // font-size: 20PX;
- line-height: 20px;
- text-align: center;
- color: #999999;
- }
- }
- .top_menu {
- background: #fff;
- padding: 30px 0;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- border-radius: 15px 15px 0 0;
- .menu_item {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 33.3%;
- img {
- width: 102px;
- height: 102px;
- }
- span {
- font-size: 24px;
- margin-top: 24px;
- }
- }
- }
- }
- .parkingFee-bottom {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 14px 25px;
- box-sizing: border-box;
- // 车牌号查询
- .parkingFee-search {
- width: 100%;
- display: flex;
- flex-direction: column;
- background: #fff;
- border-radius: 24px;
- padding: 26px 25px 20px;
- box-sizing: border-box;
- .search_tip {
- color: #999;
- font-size: 24px;
- text-align: center;
- }
- .searchPrice {
- margin: 0 auto;
- width: 40%;
- height: 60px;
- line-height: 60px;
- border-radius: 20px;
- }
- }
- .search-list {
- display: flex;
- flex-direction: column;
- background: #fff;
- padding: 0 30px;
- box-sizing: border-box;
- margin-top: 20px;
- border-radius: 24px;
- width: 100%;
- .list_item {
- padding: 38px 0;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #f2f2f2;
- span {
- font-size: 28px;
- }
- button {
- height: 60px;
- line-height: 60px;
- margin: 0;
- }
- }
- }
- }
- }
- }
- // 缴费说明
- .payInstruct_wrap {
- width: 300px;
- margin: 0 auto;
- display: flex;
- flex-direction: column;
- background: #fff;
- border-radius: 20px;
- .scroll {
- height: 600px;
- display: flex;
- flex-direction: column;
- padding: 20px;
- box-sizing: border-box;
- .payInstruct_title {
- font-size: 30px;
- text-align: center;
- padding: 20px 0;
- box-sizing: border-box;
- border-bottom: 1px solid #f2f2f2;
- }
- .payInstruct_con {
- display: flex;
- width: 100%;
- padding: 20px 10px;
- box-sizing: border-box;
- span {
- font-size: 28px;
- color: #999;
- }
- }
- }
- }
- // 车牌号 & 虚拟键盘
- .input-box {
- width: 100%;
- height: 70px;
- margin: auto;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 6px 8px 0px rgba(96, 100, 112, 0.1);
- border-radius: 0.4rem;
- margin: 1rem auto;
- display: flex;
- justify-content: center;
- .li {
- flex: 1;
- border: 1px solid rgba(206, 208, 210, 1);
- box-sizing: border-box;
- margin: 0 2px;
- font-size: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #323233;
- img {
- width: 80%;
- height: 100%;
- }
- &.active {
- border-color: #3e67ff;
- }
- &:nth-child(2) {
- margin-right: 26px;
- }
- }
- }
- .class-van-button-small {
- min-width: 0;
- border-radius: 10px;
- margin: 10px 3px;
- box-shadow: 10px 10px 10px #aaa;
- }
- .class-plate-box {
- width: 100%;
- padding: 24px 0;
- box-sizing: border-box;
- position: relative;
- }
- .plate_number {
- width: 100%;
- display: flex;
- flex-direction: column;
- .plate_number_wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- background: #eaf1f9;
- padding: 0 0 10px;
- box-sizing: border-box;
- .close-box {
- width: 100%;
- font-size: 24px;
- color: #3e67ff;
- text-align: right;
- margin-right: 1.25rem;
- div {
- padding: 10px;
- }
- }
- .plate_chinese_box {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- button {
- width: 9%;
- height: 2.5rem;
- line-height: 2.5rem;
- text-align: center;
- padding: 0;
- font-size: 28px;
- .class-van-button-small;
- }
- }
- }
- }
- .allBoard {
- width: 100%;
- display: flex;
- flex-direction: column;
- .allBoard_wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- background: #eaf1f9;
- padding: 0 0 10px;
- box-sizing: border-box;
- }
- .close-box {
- padding-top: 22px;
- box-sizing: border-box;
- font-size: 24px;
- color: #3e67ff;
- text-align: right;
- margin-right: 1.25rem;
- }
- .plate_number_box {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- button {
- width: 9%;
- height: 2.5rem;
- line-height: 2.5rem;
- text-align: center;
- padding: 0;
- font-size: 28px;
- .class-van-button-small;
- }
- }
- }
- .vehicleMgt-list {
- display: flex;
- flex-direction: column;
- margin-bottom: 35px;
- .vehicleMgt-title {
- display: flex;
- padding: 30px;
- box-sizing: border-box;
- border-bottom: 1px solid #f2f2f2;
- span {
- font-size: 28px;
- }
- }
- .vehicleMgt-content {
- display: flex;
- flex-direction: column;
- background: #fff;
- .item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 15px 36px;
- box-sizing: border-box;
- border-bottom: 1px solid #f2f2f2;
- span {
- font-size: 28px;
- }
- }
- }
- }
- .delBtn {
- color: #c69c6d;
- height: 38px;
- line-height: 38px;
- font-size: 20px;
- width: 124px;
- border: 1px solid #c69c6d;
- border-radius: 19px;
- text-align: center;
- }
- .payThe {
- width: 100%;
- .pay_index {
- text-align: center;
- padding: 20px 0;
- font-size: 20px;
- margin-bottom: 5px;
- background-color: #fff;
- font-weight: 600;
- }
- .pay_title {
- display: flex;
- justify-content: space-between;
- background-color: #fff;
- border-bottom: 1px solid #eee;
- padding: 15px 30px;
- .title {
- font-size: 16px;
- }
- .dk_desc {
- font-size: 12px;
- color: #999;
- margin-top: 3px;
- }
- .value {
- font-size: 14px;
- color: #999;
- }
- }
- .payjf {
- font-size: 12px;
- color: #999;
- margin-right: 18px;
- margin-top: 12px;
- }
- .paySelect {
- color: rgba(16, 16, 16, 100);
- font-size: 20px;
- font-family: Arial;
- border: 1px solid rgba(187, 187, 187, 100);
- border-radius: 10px;
- margin-left: 80px;
- width: 260px;
- height: 80px;
- }
- .paySelect1 {
- color: rgba(16, 16, 16, 100);
- font-size: 20px;
- font-family: Arial;
- border: 1px solid rgba(187, 187, 187, 100);
- width: 200px;
- height: 50px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: #f2f2f2;
- margin-top: 5px;
- .pay-se-l {
- height: 50px;
- width: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 50px;
- background-color: #fff;
- }
- }
- .payjfzk {
- font-size: 20px;
- color: #8b8c8b;
- margin-top: 10px;
- margin-left: 210px;
- }
- .pay_time {
- font-size: 28px;
- margin-left: 180px;
- padding-bottom: 40px;
- }
- .pay_time1 {
- margin-top: 26px;
- }
- }
- .pay_jiaof {
- width: 80%;
- height: 70px;
- line-height: 70px;
- background-color: #c69c6d;
- text-align: center;
- color: rgba(255, 255, 255, 100);
- font-size: 28px;
- font-family: Microsoft Yahei;
- border-radius: 10px;
- margin: 20px auto;
- }
- // 停车券弹窗
- .ticketPopup {
- display: flex;
- flex-direction: column;
- background: #fff;
- border-radius: 20px 20px 0 0;
- z-index: 999;
- .popup-title {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 30px 42px;
- box-sizing: border-box;
- border-bottom: 1px solid #f2f2f2;
- position: relative;
- span {
- color: #999;
- font-size: 28px;
- }
- .useRule-text {
- position: absolute;
- right: 42px;
- color: rgb(58, 130, 248);
- }
- }
- .popup_scroll {
- height: 70vh;
- background: #f2f2f2;
- }
- .popup_content {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- padding: 10px 20px;
- box-sizing: border-box;
- .item {
- display: flex;
- margin-bottom: 16px;
- .item-image {
- border: 2px solid #f2f2f2;
- border-right: 2px dashed #f2f2f2;
- padding: 16px;
- border-radius: 16px 0 0 16px;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #fff;
- &.cro {
- position: relative;
- }
- .img {
- width: 130px;
- height: 130px;
- border-radius: 8px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- }
- .item-content {
- flex: 1;
- border: 2px solid #f2f2f2;
- border-radius: 0 8px 8px 0;
- padding: 16px;
- box-sizing: border-box;
- background: #fff;
- display: flex;
- position: relative;
- &.cro_ {
- position: relative;
- }
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- flex: 1;
- .h3 {
- font-size: 28px;
- line-height: 48px;
- font-weight: 600;
- }
- .h3.color_disabled {
- color: #838181;
- font-weight: 400;
- }
- .span {
- font-size: 24px;
- color: #838181;
- line-height: 40px;
- }
- }
- .erwm_box {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- justify-content: space-between;
- img {
- width: 52px;
- height: 52px;
- }
- .tag {
- position: absolute;
- bottom: 0;
- right: 0;
- border-radius: 16px;
- padding: 5px 10px;
- box-sizing: border-box;
- background: #f7931e;
- text-align: center;
- color: #fff;
- width: 122px;
- font-size: 24px;
- }
- }
- }
- }
- }
- // 对勾
- .dot {
- position: absolute;
- top: 0;
- right: 0;
- width: 2.25rem;
- height: 2.375rem;
- }
- }
- // 弹窗按钮
- .popup_button {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 20px;
- box-sizing: border-box;
- .desc .num {
- color: #c69c6d;
- font-size: 18px;
- }
- .ok_btn {
- height: 110px;
- line-height: 110px;
- text-align: center;
- background: #c69c6d;
- color: #fff !important;
- width: 120px;
- height: 40px;
- line-height: 40px;
- border-radius: 40px;
- }
- }
- </style>
|