仲裁规则配置问题修复
parent
d7a21af10c
commit
b07708ebb1
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue