From 908ce43ff21c2068ef5148b0a417423c8ed9eae5 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期三, 12 三月 2025 16:37:32 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/dmvisit

---
 h5/pages/answer/answer.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/h5/pages/answer/answer.vue b/h5/pages/answer/answer.vue
index 0129113..e9f232e 100644
--- a/h5/pages/answer/answer.vue
+++ b/h5/pages/answer/answer.vue
@@ -304,7 +304,6 @@
               item.status = '0'
               item.selAnswer = null
             })
-            console.log(res.data)
             this.list = res.data
           }
           // res.param.problemsDOList.forEach(item => {
@@ -316,7 +315,7 @@
     },
     // 鍗曢�夐�夋嫨涓鐩�
     select(line, i) {
-      if (this.status === '2') return
+      if (this.status != '0') return
       this.list.forEach((item, index) => {
         if (index === i) {
           item.selAnswer = line.code
@@ -325,7 +324,7 @@
       // this.problemIndex = index
     },
     changeBox(index, jeck) {
-      if (this.status === '2') return
+      if (this.status != '0') return
       this.list.forEach((item, i) => {
         if (index === i) {
           item.options.forEach((item2, j) => {
@@ -408,7 +407,8 @@
       saveProblemsVO({
         openId: this.$store.state.openId,
         useType: '1',
-        content: ''
+        content: '',
+				score: this.score
       }).then(res => {
         this.score = 0
         uni.navigateTo({

--
Gitblit v1.9.3