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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!--
* @Author: jiangzaicheng jiangzaicheng_jzc@163.com
* @Date: 2022-07-07 16:13:13
* @LastEditors: jiangzaicheng jiangzaicheng_jzc@163.com
* @LastEditTime: 2022-07-28 15:22:28
* @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-col span="24" style="text-align:left">
<span class="centloding">您可<a href="#" class="aherf"> 点击截图</a>将本页面保存至手机相册:</span>
</van-col>
<van-row v-for="(item, index) in tabbar" :key="index">
<van-col span="23" class="linexl">
{{ index + 1 }}、 {{ item.text }}
</van-col>
</van-row>
</van-row>
<van-row class="four">
<van-col span="24">
<van-button type="info" size="normal" style="width: 80%;" @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: "LinSuccess"
})
export default class LinSuccess extends Vue {
//实名认证
tatleName = "意向申请结果"
checked: boolean = false;
//人脸识别
quick() {
this.$router.push({
name: "Mianview"
})
}
//申请材料
tabbar = [{
text: "个人名下房产证"
},
{
text: "个人名下房产证"
}, {
text: "个人名下房产证"
},
{
text: "个人名下房产证"
}, {
text: "个人名下房产证"
}]
}
</script>
<style scoped lang="scss">
.vbutton {
border-radius: 4%;
}
.aherf {
color: #349bfa;
}
.linexl {
text-align: left;
font-family: 'Arial Normal', 'Arial';
font-weight: 400;
font-style: normal;
font-size: 14px;
margin-top: 8px;
}
.van-col--24 {
text-align: center;
}
.van-col--23 {
margin-left: 10px;
}
.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-left: 4%;
width: 90%;
margin-top: 10px;
background-color: rgba(245, 247, 250, 1);
border: none;
border-radius: 6px;
-moz-box-shadow: none
}
.four {
margin-top: 5%;
}
</style>