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