理论考试填空题小空自适应及简答题修复

dev_202412
yujialong 7 months ago
parent 32953b4698
commit c2cd09c29f
  1. 82
      src/pages/match/theoryExam/index.vue

@ -80,7 +80,7 @@
<span class="label">{{ j + 1 }} / {{ item.questionNum }}</span>
<span class="label">{{ item.questionTypeName }}</span>
</div>
<div class="stem html-parse" :id="'stem' + ques.id" v-html="getQuesStem(ques)"></div>
<div class="stem html-parse" :id="'stem' + ques.id" v-html="ques.stem"></div>
<p>{{ ques.score }}</p>
<img class="tag" :src="require('@/assets/img/' + (ques.sign ? 'tag-active' : 'tag') + '.svg')" alt=""
@click="ques.sign = ques.sign ? 0 : 1">
@ -191,6 +191,7 @@ export default {
submiting: false,
submited: false,
warned: 0,
quesWrapWidth: 0,
};
},
mounted () {
@ -277,6 +278,7 @@ export default {
if (answerData) answerData = JSON.parse(answerData)
n.answered = n.fills && answerData && answerData.length === n.fills.filter(m => m).length ? 1 : 0
n.partAnswer = n.fills && answerData && answerData.length !== n.fills.filter(m => m).length ? 1 : 0
n.stem = this.getQuesStem(n)
} else if (type === 'essay') { //
n.answer = type === 'essay' && curQues ? curQues.answerContent : ''
n.attachmentName = curQues ? curQues.attachmentName : ''
@ -298,6 +300,7 @@ export default {
// input
this.$nextTick(() => {
const w = document.querySelector('#quesWrap').clientWidth - 200
paper.map(e => {
e.examQuestions.map(n => {
if (e.questionType === 'fill_blank') {
@ -308,11 +311,26 @@ export default {
for (const e of inputs) {
e.addEventListener('input', () => {
const answers = []
let hasFillLen = 0
let text = e.innerText
for (const e of inputs) {
e.value && answers.push(e.value)
const val = e.innerText
if (val) hasFillLen++
answers.push(val)
}
n.answered = answers.length === inputs.length ? 1 : 0
n.partAnswer = answers.length && answers.length !== inputs.length ? 1 : 0
n.fills = answers
n.answered = hasFillLen === inputs.length ? 1 : 0
n.partAnswer = hasFillLen && hasFillLen !== inputs.length ? 1 : 0
text = text.trim()
// //
e.style.width = Math.min(w, text.length * 14) + 'px'; // 7
// //
const lineHeight = 28; //
const lineCount = text.split('\n').length;
e.style.height = Math.max(lineCount * lineHeight, 28) + 'px';
})
}
}
@ -322,7 +340,6 @@ export default {
})
this.calcProgress()
})
console.log("🚀 ~ getPaper ~ r:", r)
}
} catch (e) {
this.loading = false
@ -432,7 +449,7 @@ export default {
let result = stem
while ((match = regex.exec(stem)) !== null) {
const newInput = `<input type="text" class="fill-input" value="${fills && fills.length ? fills[index] : ''}">`
const newInput = `<span contenteditable placeholder="(${index + 1})" class="fill-input">${fills && fills.length ? fills[index] : ''}</span>`
result = result.replace(match[0], newInput)
index++
}
@ -461,7 +478,9 @@ export default {
essayAnswerReady (editor, ques) {
editor.ques = ques
editor.addListener('contentChange', () => {
ques.answered = editor.hasContents() ? 1 : 0
const content = editor.getContent()
ques.answered = content ? 1 : 0
ques.answers = content
this.calcProgress()
})
ques.answer && editor.setContent(ques.answer)
@ -521,19 +540,9 @@ export default {
if (type !== 'fill_blank' && type !== 'essay') { //
answer = n.questionAnswerVersionsList.filter(m => m.answer).map(m => m.optionNumber)
} else if (type === 'essay') { //
const editor = this.$refs['essayAnswer' + n.id]
// console.log("🚀 ~ submit ~ editor:", n.id, editor, this.$refs)
if (editor && editor.length) answerContent = editor[0].getUEContent()
if (n.answers) answerContent = n.answers
} else { //
const stem = document.querySelector(`#stem` + n.id)
if (stem) {
const inputs = stem.querySelectorAll('.fill-input')
if (inputs) {
for (const e of inputs) {
e.value && answer.push(e.value)
}
}
}
answer = n.fills || []
}
ques.push({
answer,
@ -852,19 +861,40 @@ export default {
}
.fill-input {
width: 200px;
position: relative;
display: inline;
min-width: 50px;
height: 28px;
padding: 0 15px;
padding: 0 3px;
margin: 0 10px;
font-size: 13px;
line-height: 28px;
color: #606266;
border: 1px solid #DCDEE0;
border-radius: 2px;
color: #0818eb;
border: 0;
border-bottom: 1px solid #DCDEE0;
outline: none;
&:empty {
display: inline-block;
width: 3em;
&:after {
content: attr(placeholder);
position: absolute;
top: 50%;
left: 50%;
font-size: 14px;
color: #226fff;
transform: translate(-50%, -50%);
}
&:focus {
outline: none;
&:focus {
&:after {
opacity: 0;
}
}
}
}
.opt {

Loading…
Cancel
Save