110 lines
2.5 KiB
Plaintext
110 lines
2.5 KiB
Plaintext
<template>
|
|
<div v-loading="loading" style="min-height:400px;">
|
|
<el-form
|
|
v-if="isRender"
|
|
ref="questions"
|
|
size="small"
|
|
:model="questionForm"
|
|
>
|
|
<CriterionFormItem
|
|
v-for="question of questions"
|
|
:key="question.Id"
|
|
:question="question"
|
|
:question-form="questionForm"
|
|
:reading-task-state="readingTaskState"
|
|
:criterion-id="criterionId"
|
|
@resetFormItemData="resetFormItemData"
|
|
@setFormItemData="setFormItemData"
|
|
/>
|
|
</el-form>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import { getSystemReadingQuestion } from '@/api/dictionary'
|
|
import CriterionFormItem from './CriterionFormItem'
|
|
|
|
export default {
|
|
name: 'EcrfPreview',
|
|
components: {
|
|
CriterionFormItem
|
|
},
|
|
props: {
|
|
criterionId: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
questions: [],
|
|
questionForm: {},
|
|
publicQuestions: [],
|
|
isRender: false,
|
|
readingTaskState: 0,
|
|
activeName: 0
|
|
}
|
|
},
|
|
mounted() {
|
|
this.getQuestions()
|
|
},
|
|
methods: {
|
|
getQuestions() {
|
|
this.loading = true
|
|
var param = {
|
|
id: this.criterionId
|
|
}
|
|
getSystemReadingQuestion(param).then(res => {
|
|
res.Result.SinglePage.map((v) => {
|
|
if (v.Type === 'group' && v.Childrens.length === 0) return
|
|
if (!v.IsPage && v.Type !== 'group' && v.Type !== 'summary') {
|
|
this.$set(this.questionForm, v.Id, '')
|
|
}
|
|
if (v.Childrens && v.Childrens.length > 0) {
|
|
this.setChild(v.Childrens)
|
|
}
|
|
})
|
|
this.questions = res.Result.SinglePage
|
|
|
|
this.isRender = true
|
|
this.loading = false
|
|
}).catch(() => { this.loading = false })
|
|
},
|
|
setChild(obj) {
|
|
obj.forEach(i => {
|
|
if (i.Type !== 'group' && i.Type !== 'summary' && i.Id) {
|
|
this.$set(this.questionForm, i.Id, '')
|
|
}
|
|
if (i.Childrens && i.Childrens.length > 0) {
|
|
this.setChild(i.Childrens)
|
|
}
|
|
})
|
|
},
|
|
resetFormItemData(v) {
|
|
this.questionForm[v] = ''
|
|
},
|
|
setFormItemData(obj) {
|
|
this.$set(this.questionForm, obj.key, obj.val)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
::-webkit-scrollbar {
|
|
width: 7px;
|
|
height: 7px;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background: #d0d0d0;
|
|
}
|
|
.tabContent{
|
|
height:300px;
|
|
overflow-y: auto;
|
|
|
|
}
|
|
</style>
|