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

60 lines
2.0 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"> 一般准备过户车辆的登记证书行驶证买卖双方身份证明资料身份证原件及本人如双方不能到达现场可在交管12123上填写电子委托书也可写纸质委托书以及车辆
</view>
<view class="box"> 2车辆有违章如何过户</view>
<view class="box"> 需要先处理违章再过户如是车主本人处理违章在交管12123 APP上处理如非本人需带上行驶证到车管所违章处处理</view>
<!-- <view class="box"> 3如原车主已经死亡如何过户</view>
<view class="box"> 需带上该车的资料原车主家人去公证处办理公证然后继承人把公证书拿到车管所直接办理</view> -->
<view class="box"> 3有强制执行通知书的如何过户</view>
<view class="box"> 无需开票直接把资料拿到车管所办理</view>
<view class="box"> 4夫妻双方如何办理过户</view>
<view class="box" style="border-bottom: none;"> 带上过户车辆的登记证书行驶证双方身份证原件及本人结婚证即可去车管所办理</view>
</view>
</view>
</view>
</template>
<script>
</script>
<style scoped lang="scss">
.container {
width: 100%;
height: 100vh;
box-sizing: border-box;
background-color: #242A38;
}
.c-top {
width: 100%;
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;
border-radius: 6px;
}
.box {
box-sizing: border-box;
padding: 18px 2px;
border-bottom: 0.5px solid #242A38;
color: rgba(210, 195, 175, 1);
}
</style>