myCars.vue
3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<template>
<section style="padding: 20px 15px;">
<p style="color: #343434;font-size: 30px;font-weight: 600;padding-bottom: 15px;">我的车辆</p>
<div>
<van-row>
<van-col span="3" style="text-align: center">
<van-image style="margin-top: 18px;" :src="require('../../../assets/images/myCars/carNumBg.png')"/>
</van-col>
<van-col span="14" style="font-size: 16px;">
京A1231231
</van-col>
<van-col span="5">
<!--<p style="color: #FF555D">立即认证</p>-->
<p style="color: #1aad19">通过认证</p>
</van-col>
<van-col span="2">
<p>
<van-icon name="cross" color="#D1D1D6"/>
</p>
</van-col>
</van-row>
<van-row>
<van-col span="3" style="text-align: center">
<van-image style="margin-top: 18px;" :src="require('../../../assets/images/myCars/carNumBg.png')"/>
</van-col>
<van-col span="14" style="font-size: 16px;">
京A1231231
</van-col>
<van-col span="5">
<p style="color: #FF555D" @click="toRzcarNumber">立即认证</p>
</van-col>
<van-col span="2">
<p>
<van-icon name="cross" color="#D1D1D6"/>
</p>
</van-col>
</van-row>
<van-row>
<van-col span="3" style="text-align: center">
<van-image style="margin-top: 18px;" :src="require('../../../assets/images/myCars/carNumBg.png')"/>
</van-col>
<van-col span="14" style="font-size: 16px;">
京A1231231
</van-col>
<van-col span="5">
<p style="color: #2282C5">审核中</p>
</van-col>
<van-col span="2">
<p>
<van-icon name="cross" color="#D1D1D6"/>
</p>
</van-col>
</van-row>
<section class="addBtnBg" @click="toAddCarPage">
<van-image style="margin-top: 10px" :src="require('../../../assets/images/myCars/addBtn.png')"/>
添加车辆
</section>
<section style="margin-top: 20px;">
宣化停车友情提示:
</section>
<section>
1、每个车牌同一时间只能被一个用户绑定,如需被其他账户绑定,需先解绑;
</section>
<section>
2、车牌号非本人绑定时,可以拔打客服电话反馈进行解绑;
</section>
<section>
3、车牌绑定后可以提交行驶证进行真实性验证,48小时内反馈审核结果;如自行解绑车牌后,再次重新绑定需重新审核认证;
</section>
<section>
4、未认证的车牌只支持支付当前停车费和历史欠费记录;
</section>
<section>
5、认证的车牌支持查看历史停车记录;
</section>
<section>
6、一个账号最多允许绑定三个车牌号,该账号可为三辆车购买会员卡(购买会员卡仅限一车牌绑定使用)。
</section>
</div>
</section>
</template>
<script>
export default {
name: "myCars",
methods: {
toAddCarPage() {
this.$router.push({
name: "addCarNum"
}
);
},
toRzcarNumber(){
this.$router.push({
name: "rzCarNumber"
}
);
}
}
};
</script>
<style scoped>
.van-row {
margin-bottom: 20px;
height: 60px;
line-height: 60px;
background: #FFFFFF;
box-shadow: 0px 2px 6px 0px rgba(114, 124, 143, 0.2);
border-radius: 8px;
}
.addBtnBg {
margin-top: 40px;
height: 45px;
line-height: 45px;
background: url("../../../assets/images/myCars/addBtnBg.png") no-repeat;
background-size: 100% 100%;
color: #2282C5;
font-size: 14px;
font-weight: 600;
text-align: center;
}
</style>