<!-- * @Author: jiangzaicheng jiangzaicheng_jzc@163.com * @Date: 2022-07-07 16:13:13 * @LastEditors: jiangzaicheng jiangzaicheng_jzc@163.com * @LastEditTime: 2022-07-27 13:40: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 class="body" @click="FaceSuccess()"> <img class="img" src="../../assets/images/u1794.png" alt=""> </div> </div> </template> <script lang="ts"> import { Component, Vue, Prop, Watch, Emit } from "vue-property-decorator"; /* * title */ @Component({ name: "FaceRecognition" }) export default class FaceRecognition extends Vue { //实名认证 tatleName = "实名认证" checked: boolean = false; //人脸识别 FaceSuccess() { this.$router.push({ name: "facesuccess" }) } } </script> <style scoped lang="scss"> .img { width: 100%; height: 100%; } </style>