From 32986b54a0e2661f7ad6ed79f3ef12c4289eace9 Mon Sep 17 00:00:00 2001
From: zhongshujie <2862698242@qq.com>
Date: 星期五, 20 十二月 2024 17:52:52 +0800
Subject: [PATCH] Merge refs/remotes/origin/master into refs/heads/master

---
 packageBookService/pages/bookServices/examination/questionOptions/index.js |   25 ++++++++++++++++++-------
 1 files changed, 18 insertions(+), 7 deletions(-)

diff --git a/packageBookService/pages/bookServices/examination/questionOptions/index.js b/packageBookService/pages/bookServices/examination/questionOptions/index.js
index 71e18a6..dfaa84d 100644
--- a/packageBookService/pages/bookServices/examination/questionOptions/index.js
+++ b/packageBookService/pages/bookServices/examination/questionOptions/index.js
@@ -52,6 +52,15 @@
       type: Boolean,
       value: false,
     },
+    showId: {
+      type: String
+    },
+    isShowDialog: {
+      type: Boolean
+    },
+    joinGroup:{
+      type:Boolean
+    }
   },
 
   /**
@@ -69,7 +78,7 @@
   },
   observers: {
     countdownTime: function (newValue, oldValue) {
-      if (this.properties.answerType == "option") {
+      if (this.properties.answerType == "option" || this.properties.answerType == 'interaction') {
         this.setData({
           useTime: this.formatTime(
             2 * 60 * 60 * 1000 - this.properties.countdownTime
@@ -90,6 +99,12 @@
         this.timeout();
       }
     },
+    isShowDialog: function (newValue, oldValue) {
+      if (newValue)
+        this.setData({
+          testReportState: newValue,
+        });
+    }
   },
   created() {},
 
@@ -188,11 +203,6 @@
         radioItem: e.detail.value,
       });
       const value = e.detail.value == "night" ? true : false;
-      wx.setNavigationBarColor({
-        backgroundColor: "#222",
-        frontColor: "#222",
-      });
-
       this.triggerEvent("changeBGColor", {
         value
       });
@@ -251,7 +261,8 @@
         // wx.navigateBack();
       } else if (
         this.properties.answerType == "option" ||
-        this.properties.answerType == "mock"
+        this.properties.answerType == "mock" ||
+        this.properties.answerType == "interaction"
       ) {
         if (this.properties.submitStatus) return wx.navigateBack();
         this.properties.questionDataList.forEach((item) => {

--
Gitblit v1.9.1