lanan-old/lanan-master-uniapp/subInspectionPages/Pickup/Pickup.vue
愉快的大福 7dc28dc701 init
2024-07-17 14:16:22 +08:00

55 lines
1.5 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="container">
<view class="c-top">
<view class="t-title">年检车辆注意事项</view>
<view class="t-box">
<view class="box"> 1车况良好发动机变速箱无异响灯光齐全发动机无烧机油冒黑烟现象排气污染物控制装置齐全排气管无泄漏</view>
<view class="box"> 2车辆外观与行驶证相片一致</view>
<view class="box"> 3车辆同一轴轮胎花纹一致</view>
<view class="box" style="border-bottom: none;">4车辆轮胎规格型号与车辆注册登记信息一致</view>
<!-- <view class="box"> 5同一轴轮胎花纹是否一致</view>
<view class="box" style="border-bottom: none;"> 6柴油皮卡车油门踩到底是否有黑烟如有黑烟产生用自来水对排气管进行反复冲洗</view> -->
</view>
</view>
</view>
</template>
<script>
</script>
<style scoped lang="scss">
.container{
width: 100%;
height: calc(100vh);
box-sizing: border-box;
background-color: #242A38;
}
.c-top{
width: 100%;
// background: white;
padding: 15px;
}
.t-title{
font-size: 18px;
font-weight: bold;
color:#FFFFFF;
}
.t-box{
margin-top: 20px;
width: 100%;
box-sizing: border-box;
background: rgba(255, 255, 255, 0.2);
padding: 0px 15px;
// color: #1258B8;
border-radius: 6px;
}
.box{
box-sizing: border-box;
padding: 18px 2px;
border-bottom: 0.5px solid #242A38;
color: rgba(210, 195, 175, 1) ;
}
</style>