浏览代码

风险测评

yujinwen 5 月之前
父节点
当前提交
3121e31ffe
共有 4 个文件被更改,包括 61 次插入24 次删除
  1. 5 0
      src/api/modules/user.js
  2. 39 24
      src/views/EvaluationResult.vue
  3. 8 0
      src/views/report/Detail.vue
  4. 9 0
      src/views/report/PDF.vue

+ 5 - 0
src/api/modules/user.js

@@ -29,6 +29,11 @@ export default{
    */
   getFollowState:params=>{
     return get('/user/checkFollowStatus',params)
+  },
+
+  // 保存风险测评结果
+  saveEvaluationResult:params=>{
+    return post('/user/riskLevel',params)
   }
   
 }

+ 39 - 24
src/views/EvaluationResult.vue

@@ -1,36 +1,51 @@
 <script setup>
+import { useRoute } from "vue-router";
+import apiUser from '@/api/modules/user'
+import { Toast } from 'tdesign-mobile-vue';
+
+const route = useRoute()
+
+async function handleSaveResult() {
+  if (!route.query.result) {
+    Toast({
+      theme: 'error',
+      message: '未携带测评结果',
+    })
+    return
+  }
+  await apiUser.saveEvaluationResult({ data: route.query.result })
 
-function handleBack(){
-    wx.miniProgram.navigateTo({
-      url: `/pages/index/index`,
-    });
+}
+
+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>
+  <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 lang="scss" scoped>
+.evaluation-result-page {
+  .btn {
+    position: fixed;
+    left: 10vw;
+    width: 80vw;
+    bottom: 200px;
+  }
 }
 </style>

+ 8 - 0
src/views/report/Detail.vue

@@ -170,6 +170,13 @@ function handleGoLogin() {
   })
 }
 
+//跳转风险测评
+function handleGoTestRisk(){
+  wx.miniProgram.reLaunch({
+    url: `/pages/user/riskLevelPage`
+  })
+}
+
 </script>
 
 <template>
@@ -338,6 +345,7 @@ function handleGoLogin() {
           block
           style="width: 300px; margin: 30px auto"
           v-if="['expired','unTest'].includes(riskLevelStatus)"
+          @click="handleGoTestRisk"
           >风险测评</t-button
         >
       </template>

+ 9 - 0
src/views/report/PDF.vue

@@ -113,6 +113,14 @@ function handleGoLogin() {
   })
 }
 
+//跳转风险测评
+function handleGoTestRisk(){
+  wx.miniProgram.reLaunch({
+    url: `/pages/user/riskLevelPage`
+  })
+}
+
+
 </script>
 
 <template>
@@ -193,6 +201,7 @@ function handleGoLogin() {
           block
           style="width: 300px; margin: 30px auto"
           v-if="['expired','unTest'].includes(riskLevelStatus)"
+          @click="handleGoTestRisk"
           >风险测评</t-button
         >
       </template>