|
|
@ -150,6 +150,11 @@ |
|
|
|
|
|
|
|
|
|
|
|
<!-- 问答题特有 --> |
|
|
|
<!-- 问答题特有 --> |
|
|
|
<template v-if="form.questionType === 'essay'"> |
|
|
|
<template v-if="form.questionType === 'essay'"> |
|
|
|
|
|
|
|
<el-form-item prop="richTextStatus" label="富文本作答区"> |
|
|
|
|
|
|
|
<el-switch v-model="form.richTextStatus" :active-value="1" :inactive-value="0" |
|
|
|
|
|
|
|
:active-text="form.richTextStatus ? '启用' : '禁用'"> |
|
|
|
|
|
|
|
</el-switch> |
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
<el-form-item prop="allowAttachment" label="支持学生上传附件" label-width="140px"> |
|
|
|
<el-form-item prop="allowAttachment" label="支持学生上传附件" label-width="140px"> |
|
|
|
<el-radio-group v-model="form.allowAttachment"> |
|
|
|
<el-radio-group v-model="form.allowAttachment"> |
|
|
|
<el-radio :label="0">否</el-radio> |
|
|
|
<el-radio :label="0">否</el-radio> |
|
|
@ -283,6 +288,7 @@ export default { |
|
|
|
questionType: 'single_choice', |
|
|
|
questionType: 'single_choice', |
|
|
|
specialtyIds: [1], |
|
|
|
specialtyIds: [1], |
|
|
|
stem: '', |
|
|
|
stem: '', |
|
|
|
|
|
|
|
richTextStatus: 1, |
|
|
|
allowAttachment: 0, |
|
|
|
allowAttachment: 0, |
|
|
|
fileName: '', |
|
|
|
fileName: '', |
|
|
|
stemAttachment: '', |
|
|
|
stemAttachment: '', |
|
|
@ -431,6 +437,7 @@ export default { |
|
|
|
return e.path.split('/').map(n => +n) |
|
|
|
return e.path.split('/').map(n => +n) |
|
|
|
}) : [], |
|
|
|
}) : [], |
|
|
|
specialtyIds: r.professionalList ? r.professionalList.map(e => e.specialtyId) : [], |
|
|
|
specialtyIds: r.professionalList ? r.professionalList.map(e => e.specialtyId) : [], |
|
|
|
|
|
|
|
richTextStatus: r.richTextStatus, |
|
|
|
allowAttachment: r.allowAttachment, |
|
|
|
allowAttachment: r.allowAttachment, |
|
|
|
fileName: r.fileName, |
|
|
|
fileName: r.fileName, |
|
|
|
stemAttachment: r.stemAttachment, |
|
|
|
stemAttachment: r.stemAttachment, |
|
|
|