<template>
|
<div>
|
<el-container class="app-item-contain">
|
<el-header class="align-center">
|
<h1>{{form.name}}</h1>
|
<div>
|
<span class="question-title-padding">试卷总分:{{form.score}}</span>
|
<span class="question-title-padding">考试时间:{{form.suggestTime}}分钟</span>
|
</div>
|
</el-header>
|
<el-main>
|
<el-form :model="form" ref="form" v-loading="formLoading" label-width="100px">
|
<el-row :key="index" v-for="(titleItem,index) in form.titleItems">
|
<h3>{{titleItem.name}}</h3>
|
<el-card class="exampaper-item-box" v-if="titleItem.questionItems.length!==0">
|
<el-form-item :key="questionItem.itemOrder" :label="questionItem.itemOrder+'.'"
|
v-for="questionItem in titleItem.questionItems"
|
class="exam-question-item" label-width="50px" :id="'question-'+ questionItem.itemOrder">
|
<QuestionEdit :qType="questionItem.questionType" :question="questionItem"
|
:answer="answer.answerItems[questionItem.itemOrder-1]"/>
|
</el-form-item>
|
</el-card>
|
</el-row>
|
<el-row class="do-align-center" v-show="printShow">
|
<el-button type="primary" @click="printPage">打印</el-button>
|
<el-button @click="cancelForm">取消</el-button>
|
</el-row>
|
</el-form>
|
</el-main>
|
</el-container>
|
</div>
|
</template>
|
|
<script>
|
import { mapState, mapGetters } from 'vuex'
|
import { formatSeconds } from '@/utils'
|
import QuestionEdit from '@/components/QuestionEdit'
|
import examPaperApi from '@/api/examPaper'
|
|
export default {
|
components: { QuestionEdit },
|
data () {
|
return {
|
form: {},
|
formLoading: false,
|
printShow: true,
|
answer: {
|
questionId: null,
|
doTime: 0,
|
answerItems: []
|
}
|
}
|
},
|
created () {
|
let id = this.$route.query.id
|
let _this = this
|
if (id && parseInt(id) !== 0) {
|
_this.formLoading = true
|
examPaperApi.select(id).then(re => {
|
_this.form = re.response
|
_this.initAnswer()
|
_this.formLoading = false
|
})
|
}
|
},
|
mounted () {
|
|
},
|
beforeDestroy () {
|
},
|
methods: {
|
formatSeconds (theTime) {
|
return formatSeconds(theTime)
|
},
|
initAnswer () {
|
this.answer.id = this.form.id
|
let titleItemArray = this.form.titleItems
|
for (let tIndex in titleItemArray) {
|
let questionArray = titleItemArray[tIndex].questionItems
|
for (let qIndex in questionArray) {
|
let question = questionArray[qIndex]
|
this.answer.answerItems.push({ questionId: question.id, content: null, contentArray: [], completed: false, itemOrder: question.itemOrder })
|
}
|
}
|
},
|
printPage () {
|
this.printShow = false
|
setTimeout(function () {
|
window.print()
|
}, 1000)
|
},
|
cancelForm () {
|
window.close()
|
}
|
},
|
computed: {
|
...mapGetters('enumItem', ['enumFormat']),
|
...mapState('enumItem', {
|
doCompletedTag: state => state.exam.question.answer.doCompletedTag
|
})
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.align-center {
|
text-align: center
|
}
|
|
.exam-question-item {
|
padding: 10px;
|
|
.el-form-item__label {
|
font-size: 15px !important;
|
}
|
}
|
|
.question-title-padding {
|
padding-left: 25px;
|
padding-right: 25px;
|
}
|
</style>
|