<!-- * @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>