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
<!--
* @Author: jiangzaicheng jiangzaicheng_jzc@163.com
* @Date: 2022-07-07 16:13:13
* @LastEditors: jiangzaicheng jiangzaicheng_jzc@163.com
* @LastEditTime: 2022-07-13 19:05:41
* @FilePath: \mcep-h5\src\components\common\Bottom.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
<!-- <div> -->
<div class="roolsolt">
<div class="rarle">
<tatle-bar :tatle="tatleName"></tatle-bar>
</div>
<van-row type="flex" class="CardRules">
<van-col span="24">拍摄您的二代身份证原件,请确保图片清晰,四角完整</van-col>
</van-row>
<van-row type="flex" class="Card">
<van-col span="12"><img class="id-card" src="../../assets/images/idcardpeople.png"></van-col>
<van-col span="12"><img class="id-card" src="../../assets/images/idcardcountry.png"></van-col>
</van-row>
<van-row type="flex" class="CardName">
<van-col span="12">拍摄人像面</van-col>
<van-col span="12">拍摄国徽面</van-col>
</van-row>
<van-row type="flex" class="position">
<van-col span="24">拍摄人注意事项</van-col>
</van-row>
<van-row type="flex" class="RuleCard">
<van-col span="8"><img class="idcardp" src="../../assets/images/idcardpeople.png"></van-col>
<van-col span="8"><img class="idcardp" src="../../assets/images/idcardpeople.png"></van-col>
<van-col span="8"><img class="idcardp" src="../../assets/images/idcardpeople.png"></van-col>
</van-row>
<van-row type="flex" class="CardRule">
<van-col span="8">四角完整</van-col>
<van-col span="8">无明显高光</van-col>
<van-col span="8">照片清晰</van-col>
</van-row>
<van-form style="margin-top:4%">
<van-field v-model="pointCard" name="身份证号" label="身份证号" placeholder="身份证号"
:rules="[{ required: true, message: '请填写身份证号' }]" />
<van-field v-model="name" name="姓名" label="姓名" placeholder="姓名" :rules="[{ required: true, message: '请填写姓名' }]" />
<div style="margin: 16px;">
<van-button class="vbutton" square block type="info" native-type="submit" @click="volick()">下一步</van-button>
</div>
</van-form>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop, Watch, Emit } from "vue-property-decorator";
/*
* title
*/
@Component({
name: "Recognition"
})
export default class Recognition extends Vue {
//身份证号
pointCard: string = "";
//姓名
name: string = "";
//实名认证
tatleName = "实名认证"
//button
volick(){
this.$router.push({
name: `Agreement`,
})
}
}
</script>
<style scoped lang="scss">
.CardRules {
font-size: 12px;
color: #F59A23;
text-align: center;
margin-top: 5%;
}
.id-card {
width: 85%;
}
.CardName {
margin-top: 2%;
text-align: center;
font-size: 14px;
}
.Card {
text-align: center;
margin-top: 5%;
}
.position {
margin-top: 7%;
margin-left: 5%;
font-size: 14px;
}
.idcardp {
width: 85%;
}
.RuleCard {
margin-left: 5%;
margin-top: 2%;
}
.CardRule {
text-align: center;
margin-left: 2%;
margin-top: 2%;
font-size: 14px;
color: #999999;
}
.vbutton{
border-radius: 4%;
}
</style>