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 29d834d3..4440f09b 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 @@ -71,21 +71,15 @@ :label="item.value" v-if=" (JudgyInfo.ArbitrationRule === 1 && - (QuestionList[index].Type === 'number' || - QuestionList[index].Type === 'calculation') && - item.value !== 2 && - item.value !== 3) || - (JudgyInfo.ArbitrationRule === 2 && - (QuestionList[index].Type === 'number' || - QuestionList[index].Type === 'calculation') && - item.value === 1) || - ((QuestionList[index].Type === 'number' || - QuestionList[index].Type === 'calculation') && - item.value !== 4 && - item.value !== 5) + (item.value < 4 || + (item.value > 3 && + (QuestionList[index].Type === 'number' || + QuestionList[index].Type === 'calculation')))) || + (JudgyInfo.ArbitrationRule === 2 && item.value < 4) " - >{{ item.label }} + {{ item.label }} +