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

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

Loading…
Cancel
Save