|
@@ -15,9 +15,12 @@
|
|
<span style="font-size: 15px;font-weight: bold; margin-left: 31px">{{ answer.title }}</span>
|
|
<span style="font-size: 15px;font-weight: bold; margin-left: 31px">{{ answer.title }}</span>
|
|
</div>
|
|
</div>
|
|
<div style="margin-left: 31px;">
|
|
<div style="margin-left: 31px;">
|
|
- <el-radio-group :disabled="form.answers[index].flag" v-model="form.answers[index].value">
|
|
|
|
|
|
+ <el-checkbox-group :disabled="form.answers[index].flag" v-model="form.answers[index].value" size="mini" >
|
|
|
|
+ <el-checkbox v-for="dict in answer.options" :label="dict.value" >{{ dict.name }}</el-checkbox>
|
|
|
|
+ </el-checkbox-group>
|
|
|
|
+ <!-- <el-radio-group :disabled="form.answers[index].flag" v-model="form.answers[index].value">
|
|
<el-radio v-for="dict in answer.options" :label="dict.value">{{ dict.name }}</el-radio>
|
|
<el-radio v-for="dict in answer.options" :label="dict.value">{{ dict.name }}</el-radio>
|
|
- </el-radio-group>
|
|
|
|
|
|
+ </el-radio-group> -->
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|