|
|
@@ -1,12 +1,62 @@
|
|
|
<template>
|
|
|
- <div class="check">ri</div>
|
|
|
+ <div class="real-info">
|
|
|
+ <h1>实名信息验证</h1>
|
|
|
+ <div class="line"></div>
|
|
|
+ <div class="contents">
|
|
|
+ <div class="mobile">旧手机号</div>
|
|
|
+ <el-input placeholder="请输入手机号"></el-input>
|
|
|
+ <div class="code">身份证号</div>
|
|
|
+ <el-input placeholder="请输入身份证号"></el-input>
|
|
|
+ </div>
|
|
|
+ <div class="sub-container">
|
|
|
+ <el-button class="next-btn" type="primary">下一步</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-export default {
|
|
|
+import VerCode from '@/components/ver_code'
|
|
|
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ VerCode,
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+.real-info {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ width: 1000px;
|
|
|
+ height: 588px;
|
|
|
+ background: white;
|
|
|
+ margin-top: 20px;
|
|
|
+}
|
|
|
+h1 {
|
|
|
+ margin: 27px 0 25px;
|
|
|
+}
|
|
|
+.line {
|
|
|
+ width: 960px;
|
|
|
+ height: 2px;
|
|
|
+ background: rgba(0, 0, 0, 0.06);
|
|
|
+}
|
|
|
+.el-input {
|
|
|
+ width: 311px;
|
|
|
+ height: 44px;
|
|
|
+}
|
|
|
+.mobile {
|
|
|
+ margin: 102px 0 5px;
|
|
|
+}
|
|
|
+.code {
|
|
|
+ margin: 20px 0 5px;
|
|
|
+}
|
|
|
+.sub-container {
|
|
|
+ width: 311px;
|
|
|
+}
|
|
|
+.next-btn {
|
|
|
+ width: 125px;
|
|
|
+ margin: 20px 0 41px;
|
|
|
+}
|
|
|
</style>
|