12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226 |
- <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="orderDetail && orderDetail.discountInfo">
- <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="orderDetail && orderDetail.discountInfo">
- <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"
- :time="refreshTime * 1000"
- @finish="resetCountDown()"
- >
- <!-- -->
- </van-count-down>
- <span class="desc">后同步最新费用</span>
- </div>
- </div>
- <div class="btn-box">
- <k-button style="width: 100%;max-width: 240px" title="支付" disabledColor="#D1D2D9" @click="toPay"/>
- </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;
- //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;
- 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 30px 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>
|