|
@@ -30,8 +30,8 @@
|
|
|
</div>
|
|
|
<!-- 中控 -->
|
|
|
<div class="parkingFee-bottom">
|
|
|
- <div style="height: 40px; background-color: #FBFCFF;" v-if="source !== 'CRM'"></div>
|
|
|
- <div :class="['parkingFee-tab', tabbarActive === '无牌缴费' && 'unlicensed-box-bottom']" v-if="supportUnlicensed && source === 'CRM'">
|
|
|
+ <div style="height: 40px; background-color: #FBFCFF;" v-if="source !== 'CRM' || true"></div>
|
|
|
+ <div :class="['parkingFee-tab', tabbarActive === '无牌缴费' && 'unlicensed-box-bottom']" v-if="supportUnlicensed && source === 'CRM' || true">
|
|
|
<div :class="['bar', tabbarActive === '手动缴费' && 'active']" @click="tabbarActiveEvent('手动缴费')">手动缴费</div>
|
|
|
<div :class="['bar', tabbarActive === '无牌缴费' && 'active']" @click="tabbarActiveEvent('无牌缴费')">无牌缴费</div>
|
|
|
</div>
|
|
@@ -105,9 +105,9 @@
|
|
|
<div class="no-car-unlicensed-box" v-if="!unlicensedCar">
|
|
|
<img :src="`${require(`./static/images/unlicensed-1.png`)}`" />
|
|
|
<div class="no-car-unlicensed-info">未查询到无牌车信息</div>
|
|
|
- <div class="search-btn" @click="scanCarCode">
|
|
|
+ <div class="search-btn no-car-unlicensed-btn" @click="scanCarCode">
|
|
|
<!-- <van-icon name="scan" />扫描进场二维码领取无牌车号牌 -->
|
|
|
- <img class="unlicensed-scan" :src="`${require(`./static/images/unlicensed-scan.png`)}`" />扫描进场二维码领取无牌车号牌
|
|
|
+ <img class="unlicensed-scan" :src="`${require(`./static/images/unlicensed-scan.png`)}`" /><sapn class="text">扫描进场二维码领取无牌车号牌</sapn>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 有无牌车 -->
|
|
@@ -228,7 +228,7 @@ export default {
|
|
|
display: flex;
|
|
|
align-items: flex-end;
|
|
|
&.unlicensed-box-bottom {
|
|
|
- padding-bottom: 107px;
|
|
|
+ padding-bottom: 120px;
|
|
|
}
|
|
|
|
|
|
.bar {
|
|
@@ -499,7 +499,7 @@ export default {
|
|
|
font-size: 36px;
|
|
|
line-height: 36px;
|
|
|
text-align: center;
|
|
|
- margin-bottom: 60px;
|
|
|
+ margin-bottom: 70px;
|
|
|
font-family: 'PingFang SC';
|
|
|
font-style: normal;
|
|
|
font-weight: 400;
|
|
@@ -522,6 +522,12 @@ export default {
|
|
|
top: 17px;
|
|
|
margin-right: 15px;
|
|
|
}
|
|
|
+ &.no-car-unlicensed-btn {
|
|
|
+ .text{
|
|
|
+ position: relative;
|
|
|
+ top: -2px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|