@@ -20,6 +20,15 @@ const routes = [
title:''
},
+ // 风险测评回掉页面
+ {
+ path:'/evaluationBack',
+ component:()=>import('@/views/EvaluationResult.vue'),
+ name:'EvaluationResult',
+ meta:{
+ title:'风险测评'
+ },
{
path: "/:pathMatch(.*)",
@@ -0,0 +1,36 @@
+<script setup>
+
+function handleBack(){
+ wx.miniProgram.navigateTo({
+ url: `/pages/index/index`,
+ });
+}
+</script>
+<template>
+ <div class="evaluation-result-page">
+ <t-button
+ class="btn"
+ theme="primary"
+ block
+ shape="round"
+ @click="handleBack"
+ >测评完成</t-button
+ >
+ </div>
+</template>
+<style lang="scss" scoped>
+.evaluation-result-page{
+ .btn{
+ position: fixed;
+ left: 10vw;
+ width: 80vw;
+ bottom: 200px;
+ }
+</style>