阅片标准配置更改
parent
1a69bd9003
commit
32a7e42c51
|
@ -430,9 +430,26 @@
|
||||||
<el-form-item v-if="form.Type === 'upload'" label="最大上传个数">
|
<el-form-item v-if="form.Type === 'upload'" label="最大上传个数">
|
||||||
<el-input-number v-model="form.ImageCount" controls-position="right" :min="1" :max="10" />
|
<el-input-number v-model="form.ImageCount" controls-position="right" :min="1" :max="10" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item v-if="form.Type !== 'group' && form.Type !== 'summary'" label="注释">-->
|
<el-form-item v-if="form.Type === 'select' || form.Type === 'radio'" label="高亮标记值" prop="HighlightAnswerList">
|
||||||
<!-- <el-input v-model="form.Remark" />-->
|
<el-select v-model="form.HighlightAnswerList" clearable multiple>
|
||||||
<!-- </el-form-item>-->
|
<template v-if="form.TypeValue">
|
||||||
|
<el-option
|
||||||
|
v-for="item of form.TypeValue.split('|')"
|
||||||
|
:key="item"
|
||||||
|
:label="item"
|
||||||
|
:value="item"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template v-else-if="form.DictionaryCode">
|
||||||
|
<el-option
|
||||||
|
v-for="item of $d[form.DictionaryCode]"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value.toString()"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="序号" prop="ShowOrder">
|
<el-form-item label="序号" prop="ShowOrder">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
v-model="form.ShowOrder"
|
v-model="form.ShowOrder"
|
||||||
|
@ -552,7 +569,8 @@ export default {
|
||||||
LimitEdit: 0,
|
LimitEdit: 0,
|
||||||
GroupId: null,
|
GroupId: null,
|
||||||
ConvertShowType: 0,
|
ConvertShowType: 0,
|
||||||
QuestionClassify: null
|
QuestionClassify: null,
|
||||||
|
HighlightAnswerList: []
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
Type: [
|
Type: [
|
||||||
|
|
|
@ -315,7 +315,26 @@
|
||||||
:max="10"
|
:max="10"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item v-if="form.Type === 'select' || form.Type === 'radio'" label="高亮标记值" prop="HighlightAnswerList">
|
||||||
|
<el-select v-model="form.HighlightAnswerList" clearable multiple>
|
||||||
|
<template v-if="form.TypeValue">
|
||||||
|
<el-option
|
||||||
|
v-for="item of form.TypeValue.split('|')"
|
||||||
|
:key="item"
|
||||||
|
:label="item"
|
||||||
|
:value="item"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template v-else-if="form.DictionaryCode">
|
||||||
|
<el-option
|
||||||
|
v-for="item of $d[form.DictionaryCode]"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value.toString()"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="序号" prop="ShowOrder">
|
<el-form-item label="序号" prop="ShowOrder">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
v-model="form.ShowOrder"
|
v-model="form.ShowOrder"
|
||||||
|
@ -427,7 +446,8 @@ export default {
|
||||||
QuestionMark: null,
|
QuestionMark: null,
|
||||||
LimitEdit: 0,
|
LimitEdit: 0,
|
||||||
GlobalReadingShowType: null,
|
GlobalReadingShowType: null,
|
||||||
QuestionClassify: null
|
QuestionClassify: null,
|
||||||
|
HighlightAnswerList: []
|
||||||
|
|
||||||
// IsEnable: true
|
// IsEnable: true
|
||||||
},
|
},
|
||||||
|
|
|
@ -185,6 +185,7 @@ export default {
|
||||||
this.setChild(v.Childrens)
|
this.setChild(v.Childrens)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
console.log(this.questionForm,questions)
|
||||||
this.questions = questions
|
this.questions = questions
|
||||||
this.setPet5PSCommentDisplay()
|
this.setPet5PSCommentDisplay()
|
||||||
this.measurements = []
|
this.measurements = []
|
||||||
|
|
|
@ -25,8 +25,8 @@ module.exports = {
|
||||||
devServer: {
|
devServer: {
|
||||||
port: '8080',
|
port: '8080',
|
||||||
headers: {
|
headers: {
|
||||||
// 'Cross-Origin-Opener-Policy': 'same-origin',
|
'Cross-Origin-Opener-Policy': 'same-origin',
|
||||||
// 'Cross-Origin-Embedder-Policy': 'require-corp'
|
'Cross-Origin-Embedder-Policy': 'require-corp'
|
||||||
},
|
},
|
||||||
// open: true,
|
// open: true,
|
||||||
overlay: {
|
overlay: {
|
||||||
|
|
Loading…
Reference in New Issue