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
<!--
* @Author: jiangzaicheng jiangzaicheng_jzc@163.com
* @Date: 2022-07-07 16:13:13
* @LastEditors: jiangzaicheng jiangzaicheng_jzc@163.com
* @LastEditTime: 2022-07-27 14:41:21
* @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>
<div>
<van-row class="frist">
<van-col span="24"> <svg class="icon" aria-hidden="true">
<use xlink:href="#icon-a-chenggong64x64px"></use>
</svg>
</van-col>
</van-row>
<van-row class="second">
<van-col span="24">
<span class="cent">恭喜!您的实名认证已通过</span>
</van-col>
</van-row>
<van-row class="third">
<van-col span="24">
<span class="centloding">实名认证已成功通过,您可以前往进行产品申请操作</span>
</van-col>
</van-row>
<van-row class="four">
<van-col span="24">
<van-button type="info" size="normal" style="width: 80%; background-color: #3672F1; border-radius: 5px;" @click="quick()">去申请</van-button>
</van-col>
</van-row>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop, Watch, Emit } from "vue-property-decorator";
/*
* title
*/
@Component({
name: "Agreement"
})
export default class Agreement extends Vue {
//实名认证
tatleName = "实名认证"
checked: boolean = false;
//人脸识别
quick() {
this.$router.push({
name: "intention"
})
}
}
</script>
<style scoped lang="scss">
.vbutton {
border-radius: 4%;
}
.van-col--24 {
text-align: center;
}
.icon {
width: 60px;
height: 60px;
}
.centloding {
font-family: 'Arial Normal', 'Arial';
font-weight: 400;
font-style: normal;
font-size: 14px;
letter-spacing: normal;
color: #999999;
}
.cent {
font-family: 'Arial Normal', 'Arial';
font-weight: 400;
font-style: normal;
font-size: 18px;
letter-spacing: normal;
color: #333333;
}
.info {
width: 90%;
margin: 6% auto;
}
.frist {
margin-top: 8%;
}
.second {
margin-top: 8%;
}
.third {
margin-top: 1%;
}
.four {
margin-top: 5%;
}
</style>