From b07708ebb193f1f5d1d6c40fda415f5080274273 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 24 May 2024 14:58:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=B2=E8=A3=81=E8=A7=84=E5=88=99=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../setting/reading-unit/components/ArbitrationRules.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue b/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue index 6121d1cb..eedf29e8 100644 --- a/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue +++ b/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue @@ -644,6 +644,12 @@ export default { AnswerGroup: this.QuestionList[index].AnswerGroup2List, AnswerCombination: this.QuestionList[index].AnswerGroupList, JudgeType: this.QuestionList[index].JudgeType, + JudgeDifferenceValue: Number( + this.QuestionList[index].JudgeDifferenceValue + ), + JudgeDifferenceType: Number( + this.QuestionList[index].JudgeDifferenceType + ), }) .then((res) => { resolve(); @@ -778,6 +784,8 @@ export default { this.$set(this.QuestionList[index], "AnswerGroup2List", []); this.$set(this.QuestionList[index], "AnswerGroupList", []); this.$set(this.QuestionList[index], "JudgeType", 0); + this.$set(this.QuestionList[index], "JudgeDifferenceValue", 0); + this.$set(this.QuestionList[index], "JudgeDifferenceType", 0); this.$message.success(this.$t("trials:adRules:message:msg7")); // '重置成功' this.btnLoading = false; this.loading = false;