1
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-10-13 10:20:09 +08:00
parent 602f942e9e
commit 877535f579
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
]" :class="[question.Type === 'group' ? 'mb' : '']"> ]" :class="[question.Type === 'group' ? 'mb' : '']">
<!-- 下拉框 --> <!-- 下拉框 -->
<el-select v-if="question.Type === 'select'" v-model="questionForm[question.Id]" clearable <el-select v-if="question.Type === 'select'" v-model="questionForm[question.Id]" clearable
@change="((val) => { formItemChange(val, question) })" :disabled="readingTaskState > 2"> @change="((val) => { formItemChange(val, question) })" :disabled="readingTaskState >= 2">
<template v-if="question.DictionaryCode"> <template v-if="question.DictionaryCode">
<el-option v-for="item of $d[question.DictionaryCode]" :key="item.id" :value="String(item.value)" <el-option v-for="item of $d[question.DictionaryCode]" :key="item.id" :value="String(item.value)"
:label="item.label" /> :label="item.label" />
@ -26,7 +26,7 @@
</el-select> </el-select>
<!-- 单选 --> <!-- 单选 -->
<el-radio-group v-if="question.Type === 'radio'" v-model="questionForm[question.Id]" <el-radio-group v-if="question.Type === 'radio'" v-model="questionForm[question.Id]"
@change="((val) => { formItemChange(val, question) })" :disabled="readingTaskState > 2"> @change="((val) => { formItemChange(val, question) })" :disabled="readingTaskState >= 2">
<template v-if="question.DictionaryCode"> <template v-if="question.DictionaryCode">
<el-radio v-for="item of $d[question.DictionaryCode]" :key="item.id" :label="String(item.value)"> <el-radio v-for="item of $d[question.DictionaryCode]" :key="item.id" :label="String(item.value)">
{{ item.label }} {{ item.label }}