Browse Source

测评回掉页面

mayday 6 months ago
parent
commit
1041896dad
3 changed files with 294 additions and 284 deletions
  1. 249 284
      pnpm-lock.yaml
  2. 9 0
      src/router/index.js
  3. 36 0
      src/views/EvaluationResult.vue

File diff suppressed because it is too large
+ 249 - 284
pnpm-lock.yaml


+ 9 - 0
src/router/index.js

@@ -20,6 +20,15 @@ const routes = [
       title:''
       title:''
     },
     },
   },
   },
+  // 风险测评回掉页面
+  {
+    path:'/evaluationBack',
+    component:()=>import('@/views/EvaluationResult.vue'),
+    name:'EvaluationResult',
+    meta:{
+      title:'风险测评'
+    },
+  },
 
 
   {
   {
     path: "/:pathMatch(.*)",
     path: "/:pathMatch(.*)",

+ 36 - 0
src/views/EvaluationResult.vue

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

Some files were not shown because too many files changed in this diff