裁判规则变更

uat_us
wangxiaoshuang 2024-06-12 14:28:02 +08:00
parent c2607041ff
commit be972c6fe8
1 changed files with 23 additions and 16 deletions

View File

@ -71,8 +71,15 @@
:label="item.value" :label="item.value"
v-if=" v-if="
(JudgyInfo.ArbitrationRule === 1 && (JudgyInfo.ArbitrationRule === 1 &&
QuestionList[index].Type === 'number') || QuestionList[index].Type === 'number' &&
(item.value !== 4 && item.value !== 5) item.value !== 2 &&
item.value !== 3) ||
(JudgyInfo.ArbitrationRule === 2 &&
QuestionList[index].Type === 'number' &&
item.value === 1) ||
(QuestionList[index].Type !== 'number' &&
item.value !== 4 &&
item.value !== 5)
" "
>{{ item.label }}</el-radio >{{ item.label }}</el-radio
> >
@ -303,20 +310,6 @@
" "
:rules="JudgeDifferenceValueQRules" :rules="JudgeDifferenceValueQRules"
> >
<el-form-item
:label="
$t(
`trials:trials-panel:setting:reading-unit:JudgeDifferenceValue${QuestionList[index].JudgeType}`
)
"
prop="JudgeDifferenceValue"
>
<el-input
v-model="QuestionList[index].JudgeDifferenceValue"
clearable
:disabled="OtherInfo.IsSign"
></el-input>
</el-form-item>
<el-form-item <el-form-item
:label=" :label="
$t( $t(
@ -339,6 +332,20 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item
:label="
$t(
`trials:trials-panel:setting:reading-unit:JudgeDifferenceValue${QuestionList[index].JudgeType}`
)
"
prop="JudgeDifferenceValue"
>
<el-input
v-model="QuestionList[index].JudgeDifferenceValue"
clearable
:disabled="OtherInfo.IsSign"
></el-input>
</el-form-item>
</el-form> </el-form>
</div> </div>
</el-collapse-item> </el-collapse-item>