Browse Source

fix: 🧩 优化字体

pull/2/head
liyongle 3 years ago
parent
commit
d8915eef1d
  1. 3
      src/components/PlateInput/PlateInput.vue
  2. 4
      src/views/Member/Member.vue
  3. 2
      src/views/Parking/Parking.vue

3
src/components/PlateInput/PlateInput.vue

@ -19,7 +19,7 @@
</TransitionGroup>
<div class="btn disabled" @click="confirm">
<slot></slot>
<span>{{ btnText }}</span>
<span>查找车辆</span>
</div>
</div>
</template>
@ -41,7 +41,6 @@ const props = withDefaults(defineProps<Props>(), {
const PLATE_LENGTH = 8 //
const renderInputLength = computed(() => (props.searchMethod === '车牌' ? PLATE_LENGTH : props.spaceLength))
const btnText = computed(() => (props.searchMethod === '车牌' ? '寻车缴费' : '寻车导航'))
const emits = defineEmits(['handle-energy', 'confirm'])
const isEnergy = ref(false)

4
src/views/Member/Member.vue

@ -3,8 +3,8 @@
<transition appear enter-active-class="animate__animated animate__fadeIn" leave-active-class="animate__animated animate__zoomOut">
<div class="carousel">
<Carousel :ac-list="memberInfo" />
</div> </transition
>>
</div>
</transition>
</template>
<script setup lang="ts">

2
src/views/Parking/Parking.vue

@ -162,6 +162,7 @@ getParkingInfo().then(({ data }) => {
.title {
margin: 0 48px 12px;
font-size: 24px;
font-family: 'font_bold';
color: #595447;
font-weight: 700;
line-height: 32px;
@ -187,6 +188,7 @@ getParkingInfo().then(({ data }) => {
.intro {
padding-right: 24px;
font-size: 14px;
font-family: 'font_regular';
text-align: justify;
color: #736661;
line-height: 28px;

Loading…
Cancel
Save