系统配置bug更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
0633e775d4
commit
11c7070799
|
@ -594,7 +594,13 @@
|
|||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="form.Type === 'upload'" label="最大上传个数">
|
||||
<el-form-item
|
||||
v-if="form.Type === 'upload'"
|
||||
label="最大上传个数"
|
||||
:rules="[
|
||||
{ required: true, message: this.$t('common:ruleMessage:specify'), trigger: 'blur' }
|
||||
]"
|
||||
>
|
||||
<el-input-number
|
||||
v-model="form.ImageCount"
|
||||
controls-position="right"
|
||||
|
|
|
@ -243,6 +243,7 @@
|
|||
>
|
||||
<TableQsList
|
||||
:criterion-id="criterionId"
|
||||
:criterionType="data.CriterionType"
|
||||
:reading-question-id="rowData.Id"
|
||||
:is-complete-config="data.IsCompleteConfig"
|
||||
:lesion-type="rowData.LesionType"
|
||||
|
|
|
@ -198,7 +198,7 @@
|
|||
:max="10"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="问题分类">
|
||||
<el-form-item label="问题分类" v-if="criterionType === 2">
|
||||
<el-select v-model="form.QuestionClassify" clearable>
|
||||
<el-option
|
||||
v-for="item of $d.QuestionClassify"
|
||||
|
@ -511,6 +511,10 @@ export default {
|
|||
type: String,
|
||||
required: true
|
||||
},
|
||||
criterionType: {
|
||||
type: Number,
|
||||
required: true
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
required: true
|
||||
|
|
|
@ -194,6 +194,7 @@
|
|||
:type="type"
|
||||
:reading-question-id="readingQuestionId"
|
||||
:criterion-id="criterionId"
|
||||
:criterionType="criterionType"
|
||||
@close="addOrEdit.visible = false"
|
||||
@getList="getList"
|
||||
/>
|
||||
|
@ -225,7 +226,11 @@ export default {
|
|||
criterionId: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
},
|
||||
criterionType: {
|
||||
type: Number,
|
||||
required: true
|
||||
},
|
||||
|
||||
},
|
||||
data() {
|
||||
|
|
Loading…
Reference in New Issue