You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1047 lines
33 KiB
1047 lines
33 KiB
<template> |
|
<div class="page"> |
|
<Breadcrumb :data="crumbs" /> |
|
<p class="page-name mb">试卷</p> |
|
<el-form :model="form" :rules="rules" class="input-form model" ref="form" label-width="140px"> |
|
<el-form-item prop="name" label="试卷名称"> |
|
<el-input style="width: 940px" placeholder="请输入试卷名称" v-model="form.name" clearable maxlength="100" /> |
|
</el-form-item> |
|
<div class="item-line"> |
|
<el-form-item prop="particularYear" label="年份"> |
|
<el-date-picker v-model="form.particularYear" type="year" placeholder="请选择年份" format="yyyy" |
|
value-format="yyyy"> |
|
</el-date-picker> |
|
</el-form-item> |
|
<el-form-item required label="所属试卷分类"> |
|
<el-cascader placeholder="请选择所属试卷分类" :options="types" v-model="form.classificationId" :props="cascaderProps" |
|
clearable style="width: 100%"> |
|
</el-cascader> |
|
</el-form-item> |
|
</div> |
|
<div class="item-line"> |
|
<el-form-item prop="paperType" label="建议用途"> |
|
<el-select v-model="form.paperType" clearable placeholder="请选择建议用途"> |
|
<el-option v-for="(item, i) in paperTypes" :key="i" :label="item.name" :value="item.id"></el-option> |
|
</el-select> |
|
</el-form-item> |
|
<el-form-item prop="suggestTime" label="估计用时"> |
|
<el-input placeholder="请输入估计用时" v-model.number="form.suggestTime"> |
|
<template slot="append">分钟</template> |
|
</el-input> |
|
</el-form-item> |
|
</div> |
|
<div class="item-line"> |
|
<el-form-item prop="professionals" label="所属专业"> |
|
<el-select v-model="form.professionalId" clearable placeholder="请选择所属专业"> |
|
<el-option v-for="(item, i) in professionals" :key="i" :label="item.professionalName" |
|
:value="item.professionalId" filter></el-option> |
|
</el-select> |
|
</el-form-item> |
|
<el-form-item prop="difficult" label="试卷难度"> |
|
<el-select v-model="form.difficult" placeholder="系统自动评估,也可手动选择" @change="difficultSelected = true"> |
|
<el-option v-for="(item, i) in difficults" :key="i" :label="item.name" :value="item.id"></el-option> |
|
</el-select> |
|
<el-tooltip placement="top"> |
|
<div class="diff-text" slot="content"> |
|
<p>基础题:难度系数0.2</p> |
|
<p>普通题:难度系数0.4</p> |
|
<p>较难题:难度系数0.6</p> |
|
<p>困难题:难度系数0.8</p> |
|
<p>(1)<span class="em">题型难度系数</span>=对应题型所有试题的难度系数之和/总试题数</p> |
|
<p>(2)<span class="em">试卷总难度系数</span>=所有试题的难度系数之和/总试题数</p> |
|
<p>(3)<span class="em">难度系数评价</span>:</p> |
|
<div class="coe"> |
|
<p>简单:系数 <=0.3</p> |
|
<p>普通:0.3<系数<=0.4</p> |
|
<p>较难:0.4<系数<0.5</p> |
|
<p>困难:系数>=0.5</p> |
|
</div> |
|
</div> |
|
<i class="el-icon-question m-l-10" style="font-size: 16px;color: #8f8f8f;cursor: pointer;"></i> |
|
</el-tooltip> |
|
</el-form-item> |
|
</div> |
|
<el-form-item prop="remarks" label="试卷说明"> |
|
<Ueditor ref="remarks" @ready="remarksReady" /> |
|
</el-form-item> |
|
|
|
<div class="line"></div> |
|
|
|
<div class="flex j-between m-b-20"> |
|
<p>默认模板</p> |
|
<el-button type="primary" size="small" @click="showTemplate">选择大纲模板</el-button> |
|
</div> |
|
<el-table :data="form.paperOutline" stripe header-align="center" row-key="id"> |
|
<el-table-column type="index" width="60" label="序号" align="center"></el-table-column> |
|
<el-table-column label="大题" align="center" min-width="120"> |
|
<template slot-scope="scope">第{{ arabicToChinese(scope.$index + 1) }}大题</template> |
|
</el-table-column> |
|
<el-table-column prop="name" label="题型" align="center" min-width="120"> |
|
<template slot-scope="scope"> |
|
<el-select v-model="scope.row.questionType" placeholder="请选择题型" @change="questionTypeChange(scope.row)"> |
|
<el-option v-for="(item, i) in questionTypes" :key="i" :label="item.name" :value="item.id"></el-option> |
|
</el-select> |
|
</template> |
|
</el-table-column> |
|
<el-table-column prop="name" label="目标题数" align="center" min-width="120"> |
|
<template slot-scope="scope"> |
|
<el-input placeholder="请输入目标题数" v-model.number="scope.row.questionNum" type="number" /> |
|
</template> |
|
</el-table-column> |
|
<el-table-column prop="name" label="目标分值" align="center" min-width="120"> |
|
<template slot-scope="scope"> |
|
<el-input placeholder="请输入目标分值" v-model="scope.row.targetScore" /> |
|
</template> |
|
</el-table-column> |
|
<el-table-column label="操作" align="center" width="120"> |
|
<template slot-scope="scope"> |
|
<i class="el-icon-circle-plus-outline action-icon m-r-10" @click="addLine(scope.$index)"></i> |
|
<i class="el-icon-remove-outline action-icon" @click="delLine(scope.$index)"></i> |
|
</template> |
|
</el-table-column> |
|
</el-table> |
|
<p class="m-t-10 m-b-20 text-right">目标总题数:{{ questionCount }};目标总分:{{ score }}</p> |
|
|
|
<div class="line"></div> |
|
|
|
<div class="flex j-between a-center"> |
|
<h6 class="page-name" style="margin-bottom: 0">选择试题</h6> |
|
<div> |
|
<el-button type="primary" @click="allocationAll">一键分配分值</el-button> |
|
<el-button type="primary" @click="showAuto">自动选题</el-button> |
|
</div> |
|
</div> |
|
|
|
<ul class="ques"> |
|
<li v-for="(item, i) in form.paperOutline" :key="i"> |
|
<div class="top"> |
|
<div> |
|
<span class="serial">第{{ arabicToChinese(i + 1) }}大题</span> |
|
<el-input placeholder="请输入大题名称" v-model="item.outlineName" /> |
|
</div> |
|
<div> |
|
<el-button type="primary" @click="allocation(item)">一键分配分值</el-button> |
|
<el-button type="primary" @click="showManualDia(item)">批量添加</el-button> |
|
<el-button type="danger" @click="batchDelQues(item)">批量删除试题</el-button> |
|
<i class="arrow el-icon-arrow-down" @click="item.shrink = !item.shrink"></i> |
|
</div> |
|
</div> |
|
<p class="sum">本大题共{{ item.questionNum }}小题,共{{ item.targetScore }}分</p> |
|
|
|
<div :class="['ques-wrap', { hide: item.shrink }]"> |
|
<div v-for="(ques, j) in item.examQuestions" :key="j" class="ques-item"> |
|
<el-checkbox v-model="ques.check"></el-checkbox> |
|
<div :class="['ques-info', { disabled: !ques.status, del: ques.isDel, repeat: ques.isRepeat }]"> |
|
<div class="top-line"> |
|
<span class="label">{{ j + 1 }} / {{ item.examQuestions.length }}</span> |
|
<span class="label">{{ questionTypes.find(e => e.id === item.questionType).name }}</span> |
|
<div :id="'stem' + ques.questionVersionId" v-html="getQuesStem(ques)"></div> |
|
<p v-if="item.questionType !== 'fill_blank'">(<el-input class="score" placeholder="请输入" |
|
v-model="ques.score" />分)</p> |
|
</div> |
|
|
|
<!-- 单选、多选、判断的选项 --> |
|
<template |
|
v-if="item.questionType !== 'fill_blank' && item.questionType !== 'essay' && ques.questionAnswerVersionsList"> |
|
<div v-for="(opt, j) in ques.questionAnswerVersionsList" :key="j" class="opt"> |
|
<span>{{ numToLetter(j) }}. </span> |
|
<div v-html="opt.optionText"></div> |
|
</div> |
|
</template> |
|
|
|
<div class="bottom-line"> |
|
<div class="correct"> |
|
【{{ item.questionType === 'essay' ? '参考答案' : '正确答案' }}】: |
|
<div v-html="getCorrectAnswer(ques)"></div> |
|
</div> |
|
<div class="actions"> |
|
<div class="sort"> |
|
<span>排序</span> |
|
<el-input class="score" v-model="ques.serialNumber" /> |
|
</div> |
|
<el-button type="text" @click="toQues(item, j, ques)">编辑试题</el-button> |
|
<el-button type="text" @click="showManualDia(item, j, ques)">更换试题</el-button> |
|
<el-button type="text" @click="showManualDia(item, j)">添加试题</el-button> |
|
<el-button type="text" @click="delQues(item, j)">移除试题</el-button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</li> |
|
</ul> |
|
|
|
</el-form> |
|
<div class="btns"> |
|
<el-button @click="submit(1)">保存草稿</el-button> |
|
<el-button type="primary" @click="submit(0)">发布</el-button> |
|
<el-button v-if="$route.query.id" @click="preview">预览</el-button> |
|
<el-button @click="back">取消</el-button> |
|
</div> |
|
|
|
<Template :visible.sync="templateVisible" /> |
|
<Manual :visible.sync="manualVisible" :questionType.sync="curType.questionType" /> |
|
<Auto :visible.sync="autoVisible" /> |
|
<Detail :visible.sync="quesVisible" :row.sync="curRow" :detailType.sync="detailType" @updateQues="updateQues" /> |
|
</div> |
|
</template> |
|
<script> |
|
import Setting from '@/setting' |
|
import Util from '@/libs/util' |
|
import dayjs from 'dayjs' |
|
import Ueditor from '@/components/ueditor' |
|
import Breadcrumb from '@/components/breadcrumb' |
|
import QuesConst from '@/const/ques' |
|
import TestPaperConst from '@/const/testPaper' |
|
import Template from './template' |
|
import Manual from './manual' |
|
import Auto from './auto' |
|
import Detail from '@/pages/ques/detail' |
|
import Decimal from 'decimal.js' |
|
|
|
export default { |
|
components: { Ueditor, Breadcrumb, Template, Manual, Auto, Detail }, |
|
data () { |
|
return { |
|
crumbs: [], |
|
questionTypes: QuesConst.questionTypes, |
|
difficults: TestPaperConst.difficults, |
|
paperTypes: TestPaperConst.paperTypes, |
|
arabicToChinese: Util.arabicToChinese, |
|
numToLetter: Util.numToLetter, |
|
paperId: this.$route.query.paperId, |
|
libraryId: this.$route.query.libraryId, |
|
isCopy: this.$route.query.isCopy, |
|
headers: { |
|
token: Util.local.get(Setting.tokenKey) |
|
}, |
|
types: [], |
|
cascaderProps: { |
|
checkStrictly: true, |
|
label: "classificationName", |
|
value: "classificationId" |
|
}, |
|
professionals: [], |
|
|
|
form: { |
|
classificationId: +this.$route.query.classificationId || '', |
|
difficult: '', |
|
libraryId: '', |
|
name: '', |
|
paperMethod: '', |
|
paperType: '', |
|
particularYear: new Date(), |
|
professionalId: '', |
|
remarks: '', |
|
score: '', |
|
questionCount: 0, |
|
suggestTime: '', |
|
paperOutline: [ |
|
{ |
|
examQuestions: [], |
|
outlineName: '单选题', |
|
questionNum: '10', |
|
questionType: 'single_choice', |
|
targetScore: '20.0', |
|
shrink: false, |
|
}, |
|
{ |
|
examQuestions: [], |
|
outlineName: '多选题', |
|
questionNum: '5', |
|
questionType: 'multiple_choice', |
|
targetScore: '15.0', |
|
shrink: false, |
|
}, |
|
{ |
|
examQuestions: [], |
|
outlineName: '判断题', |
|
questionNum: '5', |
|
questionType: 'judgement', |
|
targetScore: '10.0', |
|
shrink: false, |
|
}, |
|
{ |
|
examQuestions: [], |
|
outlineName: '填空题', |
|
questionNum: '5', |
|
questionType: 'fill_blank', |
|
targetScore: '15.0', |
|
shrink: false, |
|
}, |
|
{ |
|
examQuestions: [], |
|
outlineName: '问答题', |
|
questionNum: '3', |
|
questionType: 'essay', |
|
targetScore: '40.0', |
|
shrink: false, |
|
}, |
|
], |
|
}, |
|
rules: { |
|
name: [ |
|
{ required: true, message: '请输入试卷名称', trigger: 'blur' } |
|
], |
|
particularYear: [ |
|
{ required: true, message: '请选择年份', trigger: 'change' } |
|
], |
|
paperType: [ |
|
{ required: true, message: '请选择建议用途', trigger: 'change' } |
|
], |
|
suggestTime: [ |
|
{ required: true, message: '请输入估计用时', trigger: 'blur' } |
|
], |
|
name: [ |
|
{ required: true, message: '请输入试卷名称', trigger: 'blur' } |
|
], |
|
}, |
|
templateVisible: false, |
|
manualVisible: false, |
|
curType: {}, |
|
curQuesIndex: 0, |
|
curQues: null, |
|
|
|
autoVisible: false, |
|
|
|
|
|
quesVisible: false, |
|
curRow: {}, |
|
detailType: '', |
|
|
|
difficultSelected: false, |
|
|
|
|
|
repeatVisible: false, |
|
repeatQues: [], |
|
tempForm: {}, |
|
}; |
|
}, |
|
computed: { |
|
// 目标总题数 |
|
questionCount () { |
|
return this.form.paperOutline.reduce((e, j) => (e += +j.questionNum), 0) |
|
}, |
|
// 目标总分 |
|
score () { |
|
return this.form.paperOutline.reduce((e, j) => (e += +j.targetScore), 0) |
|
} |
|
}, |
|
mounted () { |
|
function distributeScores (objects, totalScore) { |
|
const numObjects = objects.length; |
|
|
|
// 如果总分数小于数组长度,每个对象只能分配到一部分分数 |
|
const baseScore = totalScore / numObjects; |
|
const hasFraction = baseScore % 1 !== 0; // 判断是否有小数部分 |
|
|
|
// 分配整数部分 |
|
for (let i = 0; i < numObjects; i++) { |
|
objects[i].score = Math.floor(baseScore); |
|
} |
|
|
|
// 如果有小数部分,计算小数部分的总和 |
|
let fractionalPartSum = 0; |
|
if (hasFraction) { |
|
for (let i = 0; i < numObjects; i++) { |
|
fractionalPartSum += baseScore % 1; |
|
} |
|
} |
|
|
|
// 分配小数部分 |
|
let remainingObjects = numObjects; |
|
while (fractionalPartSum > 0) { |
|
objects[--remainingObjects].score += 1; |
|
fractionalPartSum -= 1; |
|
} |
|
|
|
// 如果总分数不足以给每个对象分配至少一分 |
|
if (totalScore < numObjects) { |
|
// 计算每个对象应该获得的小数部分 |
|
const fractionalDistribution = Math.ceil(fractionalPartSum); |
|
for (let i = 0; i < fractionalDistribution; i++) { |
|
objects[i].score += 1; |
|
} |
|
} |
|
|
|
return objects; |
|
} |
|
|
|
// 示例 |
|
const objects = [ |
|
{ id: 1 }, |
|
{ id: 2 }, |
|
{ id: 3 }, |
|
{ id: 4 } |
|
]; |
|
|
|
const totalScore = 3; // 总分数小于数组长度 |
|
|
|
const result = distributeScores(objects, totalScore); |
|
console.log(result); |
|
|
|
|
|
|
|
this.crumbs = [ |
|
{ |
|
name: '试卷管理', |
|
route: 'list', |
|
query: { |
|
id: this.libraryId |
|
} |
|
}, |
|
{ |
|
name: '创建试卷' |
|
}, |
|
] |
|
this.getDetail() |
|
this.getType() |
|
this.getProfessional() |
|
}, |
|
methods: { |
|
// 获取试卷详情 |
|
async getDetail () { |
|
try { |
|
const { paperId } = this |
|
if (paperId) { |
|
const res = await this.$get(this.api.examPaperDetails, { |
|
id: paperId |
|
}) |
|
const r = res.examPaper |
|
const paper = r.paperOutline |
|
paper.map(e => { |
|
e.shrink = false |
|
e.examQuestions.map(n => { |
|
Object.assign(n, n.question) |
|
}) |
|
|
|
}) |
|
if (r.particularYear) r.particularYear = r.particularYear + '' |
|
this.form = r |
|
} |
|
} catch (e) { } |
|
}, |
|
// 获取试卷分类 |
|
async getType () { |
|
try { |
|
const res = await this.$post(this.api.examClassificationList, { |
|
libraryId: this.libraryId, |
|
}) |
|
const data = res.treeList |
|
this.handleType(data) |
|
this.types = data |
|
} catch (e) { } |
|
}, |
|
// 获取所属专业 |
|
async getProfessional () { |
|
try { |
|
const res = await this.$post(this.api.queryProfessional, { |
|
pageNum: 1, |
|
pageSize: 1000, |
|
}) |
|
this.professionals = res.pageList.records |
|
} catch (e) { } |
|
}, |
|
// 处理树形 |
|
handleType (list) { |
|
list.map(e => { |
|
if (e.children && e.children.length) { |
|
this.handleType(e.children) |
|
} else { |
|
delete e.children |
|
} |
|
}) |
|
}, |
|
// 试卷说明富文本加载完毕回调 |
|
remarksReady (editor) { |
|
this.form.remarks && editor.setContent(this.form.remarks) |
|
}, |
|
// 选择大纲模板 |
|
showTemplate () { |
|
this.templateVisible = true |
|
}, |
|
|
|
// 大纲题型选择回调 |
|
questionTypeChange (row) { |
|
// 如果大题名称还是默认的名字(即5个题型的名字),那么修改了题型后需要同步修改大题名称,用户自定义了大题名称,则不修改 |
|
if (this.questionTypes.find(e => e.name === row.outlineName)) row.outlineName = this.questionTypes.find(e => e.id === row.questionType).name |
|
}, |
|
// 试卷大纲添加行 |
|
addLine (i) { |
|
this.form.paperOutline.splice(i + 1, 0, { |
|
examQuestions: [], |
|
outlineName: '', |
|
questionNum: '', |
|
questionType: '', |
|
targetScore: '', |
|
shrink: false, |
|
}) |
|
}, |
|
// 试卷大纲移除行 |
|
delLine (i) { |
|
this.form.paperOutline.length > 1 && this.form.paperOutline.splice(i, 1) |
|
}, |
|
|
|
// 一键分配所有题目的分值 |
|
async allocationAll () { |
|
const paper = this.form.paperOutline |
|
const { data } = await this.$post(this.api.avgValues, { |
|
avgValueList: paper.map(e => { |
|
return { |
|
questionNum: e.examQuestions.length, |
|
targetScore: e.targetScore, |
|
} |
|
}) |
|
}) |
|
if (data && data.avgValueList && data.avgValueList.length) { |
|
const fillBlanks = [] |
|
data.avgValueList.map((e, i) => { |
|
paper[i].questionType === 'fill_blank' && fillBlanks.push(...paper[i].examQuestions) |
|
// scores里有-1则不用循环 |
|
e.scores.includes(-1) || e.scores.map((n, j) => { |
|
this.$set(paper[i].examQuestions[j], 'score', n) |
|
}) |
|
}) |
|
fillBlanks.length && this.fillBlankAllocation(fillBlanks) // 填空题则需要给里面的每个空再分配一次分数 |
|
} |
|
}, |
|
// 大题一键分配分值 |
|
async allocation (item) { |
|
const { data } = await this.$post(this.api.avgValues, { |
|
avgValueList: [{ |
|
questionNum: item.examQuestions.length, |
|
targetScore: +item.targetScore |
|
}] |
|
}) |
|
if (data && data.avgValueList && data.avgValueList.length) { |
|
const { scores } = data.avgValueList[0] |
|
scores.includes(-1) || item.examQuestions.forEach((e, i) => { |
|
this.$set(e, 'score', scores[i]) |
|
}) |
|
} |
|
item.questionType === 'fill_blank' && this.fillBlankAllocation(item.examQuestions) // 填空题则需要给里面的每个空再分配一次分数 |
|
}, |
|
// 填空题一键分配 |
|
async fillBlankAllocation (list) { |
|
const param = list.map(e => { |
|
let { answerData } = e.questionAnswerVersionsList[0] |
|
if (answerData) { |
|
answerData = JSON.parse(answerData) |
|
return { |
|
questionNum: answerData.length, |
|
targetScore: e.score, |
|
questionId: e.questionVersionId |
|
} |
|
} |
|
}) |
|
|
|
const { data } = await this.$post(this.api.avgValues, { |
|
avgValueList: param |
|
}) |
|
if (data && data.avgValueList && data.avgValueList.length) { |
|
data.avgValueList.map((e, i) => { |
|
// scores里有-1则不用循环 |
|
if (!e.scores.includes(-1)) { |
|
const stem = document.querySelector(`#stem` + e.questionId) |
|
if (stem) { |
|
const inputs = stem.querySelectorAll('.fill-input') |
|
if (inputs) { |
|
for (const j in e.scores) { |
|
const item = inputs[j] |
|
inputs[j].value = e.scores[j] |
|
} |
|
} |
|
} |
|
} |
|
}) |
|
} |
|
}, |
|
// 自动计算试卷难度 |
|
calcDifficult () { |
|
// 如果试卷难度用户已经选择过了,则不用再计算;如果没选择过,则通过公式计算难度:所有试题的难度系数之和/总试题数 |
|
if (this.difficultSelected) return false |
|
let coefficient = 0 // 试题总系数 |
|
let len = 0 // 试题总数 |
|
const diffs = QuesConst.difficults |
|
this.form.paperOutline.map(e => { |
|
len += e.examQuestions.length |
|
coefficient += e.examQuestions.reduce((e, j) => { |
|
const val = diffs.find(n => n.id === j.difficulty) |
|
return e += val ? +val.coefficient : 0 |
|
}, 0) |
|
}) |
|
const result = coefficient / len |
|
this.form.difficult = result <= 0.3 ? |
|
1 : |
|
result > 0.3 && result <= 0.4 ? |
|
2 : |
|
result > 0.4 && result <= 0.5 ? |
|
3 : |
|
4 |
|
}, |
|
// 自动选题 |
|
showAuto () { |
|
this.autoVisible = true |
|
}, |
|
// 处理正确答案的显示 |
|
getCorrectAnswer (e) { |
|
if (e.questionType === 'fill_blank') { // 填空题 |
|
// answerData里存了该填空题所有填空项的正确答案及分值占比,对象转化为字符串存起来了 |
|
let data = e.questionAnswerVersionsList[0].answerData |
|
if (data) { |
|
data = JSON.parse(data) |
|
let result = '' |
|
data.map((e, i) => { |
|
result += `填空项${i + 1}:${e.fills.map(n => n.val).join('|')};` |
|
}) |
|
return result |
|
} |
|
return '' |
|
} else if (e.questionType === 'essay') { // 问答题取参考答案 |
|
return e.questionAnswerVersionsList[0].referenceAnswer || '暂无' |
|
} else { |
|
const correct = e.questionAnswerVersionsList.filter(e => e.answerIsCorrect) |
|
return correct ? (e.questionType === 'judgement' ? correct[0].optionText : correct.map(e => Util.numToLetter(e.optionNumber - 1)).join('')) : '' // 单选多选显示ABC选项,判断题显示选项内容 |
|
} |
|
}, |
|
// 处理题干显示 |
|
getQuesStem (ques) { |
|
let { stem } = ques |
|
if (ques.questionType === 'fill_blank') { // 填空题 |
|
let { jsonText } = ques |
|
if (jsonText) jsonText = JSON.parse(jsonText) |
|
|
|
const regex = /<span class="gapfilling-span" data-id="(.*?)">______<\/span>/g |
|
let match |
|
let index = 0 // 用于跟踪索引 |
|
let result = stem |
|
|
|
while ((match = regex.exec(stem)) !== null) { |
|
const newInput = `<input type="text" class="fill-input" value="${jsonText && jsonText.scores ? jsonText.scores[index] : ''}">` |
|
result = result.replace(match[0], newInput) |
|
index++ |
|
} |
|
return result |
|
} else { |
|
return stem |
|
} |
|
}, |
|
|
|
// 编辑试题 |
|
toQues (item, i, ques) { |
|
this.curType = item |
|
this.curQuesIndex = i |
|
this.curRow = ques |
|
this.quesVisible = true |
|
this.detailType = 4 |
|
}, |
|
// 编辑试题完成后把新的试题信息带过来 |
|
updateQues (ques, id) { |
|
ques.questionAnswerVersionsList = ques.questionAnswerVersions |
|
delete ques.questionAnswerVersions |
|
ques.questionVersionId = id |
|
this.curType.examQuestions[this.curQuesIndex] = Object.assign(this.curRow, ques) |
|
this.calcDifficult() |
|
}, |
|
// 添加题目 |
|
showManualDia (item, i, ques) { |
|
this.curType = item |
|
this.curQuesIndex = i |
|
this.curQues = ques |
|
this.manualVisible = true |
|
}, |
|
// 批量删除试题 |
|
async batchDelQues (item) { |
|
try { |
|
const checked = item.examQuestions.filter(e => e.check) |
|
if (checked.length) { |
|
await this.$confirm(`确认要删除吗?`, '提示', { |
|
confirmButtonText: '确定', |
|
cancelButtonText: '取消', |
|
type: 'warning', |
|
closeOnClickModal: false, |
|
}) |
|
checked.map(e => { |
|
const cur = item.examQuestions.findIndex(n => n.questionVersionId === e.questionVersionId) |
|
cur >= 0 && item.examQuestions.splice(cur, 1) |
|
}) |
|
this.calcDifficult() |
|
} else { |
|
Util.warningMsg('请选择数据') |
|
} |
|
} catch (e) { } |
|
}, |
|
// 移除试题 |
|
delQues (item, i) { |
|
item.examQuestions.splice(i, 1) |
|
this.calcDifficult() |
|
}, |
|
// 检查重复试题 |
|
hasRepeatQues (list) { |
|
const result = list.filter(e => { |
|
if (e.questionType !== 'fill_blank' && e.questionType !== 'essay') { |
|
// 选择和判断题则判断题型+题干+选项内容 |
|
const opts = e.questionAnswerVersionsList |
|
// 判断每个选项的内容是否相同(拿第一个选项的内容作基准) |
|
const first = opts[0].optionText |
|
const someOpt = opts.every(n => n.optionText === first) |
|
|
|
return e.questionType === e.questionType && e.stem === e.stem && someOpt |
|
} else { |
|
// 填空/问答:题干+题型一样即重复 |
|
return (e.questionType === e.questionType && e.stem === e.stem) |
|
} |
|
}) |
|
|
|
// 如果有重复的试题,则弹框显示这些试题 |
|
if (result.length) { |
|
this.repeatVisible = true |
|
this.repeatQues = result |
|
return true |
|
} |
|
return false |
|
}, |
|
// 提交 |
|
submit (status) { |
|
if (status) { |
|
// 草稿只需判断名字有没有填 |
|
if (!this.form.name) return Util.warningMsg('请输入试卷名称') |
|
this.validForm(status) |
|
} else { |
|
this.$refs.form.validate(async (valid) => { |
|
if (valid) { |
|
this.validForm(status) |
|
} |
|
}) |
|
} |
|
}, |
|
// 保存发送请求 |
|
async saveTestPaper () { |
|
try { |
|
await this.$post(this.api.saveExamPaper, this.tempForm) |
|
Util.successMsg('保存成功') |
|
this.submiting = false |
|
this.back() |
|
} catch (e) { |
|
this.submiting = false |
|
} |
|
}, |
|
// 提交 |
|
async validForm (status) { |
|
if (this.submiting) return false |
|
const { isCopy } = this // 复制 |
|
const form = _.cloneDeep(this.form) |
|
const paper = form.paperOutline |
|
const allQues = [] |
|
|
|
// 发布才需要校验 |
|
if (!status) { |
|
if (isNaN(form.suggestTime) || form.suggestTime < 1 || form.suggestTime % 1) return Util.warningMsg('估计用时请输入正整数') |
|
let invalid = 0 |
|
for (const i in paper) { |
|
const e = paper[i] |
|
if (!e.questionType) { |
|
Util.warningMsg('请选择题型') |
|
invalid = 1 |
|
break |
|
} |
|
if (!e.questionNum) { |
|
Util.warningMsg('请输入目标题数') |
|
invalid = 1 |
|
break |
|
} |
|
if (!e.targetScore) { |
|
Util.warningMsg('请输入目标分值') |
|
invalid = 1 |
|
break |
|
} |
|
|
|
const chineseNum = this.arabicToChinese(+i + 1) |
|
// 该大题里的小题总数需等于目标题数 |
|
if (+e.questionNum !== e.examQuestions.length) { |
|
Util.warningMsg(`第${chineseNum}大题的小题总数跟目标题数不一致,请重新修改`) |
|
invalid = 1 |
|
break |
|
} |
|
|
|
// 填空题需要拿每个小空的分数计算 |
|
if (e.questionType === 'fill_blank') { |
|
let totalScore = 0 |
|
e.examQuestions.map(n => { |
|
const stem = document.querySelector(`#stem` + n.questionVersionId) |
|
if (stem) { |
|
const inputs = stem.querySelectorAll('.fill-input') |
|
if (inputs) { |
|
for (const e of inputs) { |
|
totalScore = Decimal(totalScore).add(e.value || 0).toNumber() |
|
} |
|
} |
|
} |
|
}) |
|
|
|
if (+e.targetScore !== totalScore) { |
|
Util.warningMsg(`第${chineseNum}大题的小题总分跟目标分值不一致,请重新修改`) |
|
invalid = 1 |
|
break |
|
} |
|
} else if (+e.targetScore !== e.examQuestions.reduce((e, j) => (e += +j.score), 0)) { |
|
// 该大题里的小题总分需等于目标分值 |
|
Util.warningMsg(`第${chineseNum}大题的小题总分跟目标分值不一致,请重新修改`) |
|
invalid = 1 |
|
break |
|
} |
|
|
|
// 试题里存在被禁用或者被删除的,不予提交 |
|
if (e.examQuestions.some(e => !e.status || e.isDel)) { |
|
Util.warningMsg(`当前试卷存在已被删除或已被禁用的试题,请进行相应调整 `) |
|
invalid = 1 |
|
break |
|
} |
|
allQues.push(...e.examQuestions) |
|
} |
|
if (invalid) return false |
|
} |
|
|
|
this.submiting = true |
|
|
|
form.particularYear = +(dayjs(form.particularYear).format('YYYY')) |
|
form.libraryId = this.libraryId |
|
form.questionCount = this.questionCount |
|
form.remarks = this.$refs.remarks.getUEContent() |
|
form.score = this.score |
|
form.status = status |
|
|
|
paper.map(e => { |
|
// 复制不需要传id |
|
if (isCopy) { |
|
e.paperId = '' |
|
e.outlineId = '' |
|
} |
|
e.targetScore = +e.targetScore |
|
|
|
e.examQuestions = e.examQuestions.map((n, j) => { |
|
// 填空题的各个填空分数处理 |
|
if (n.questionType === 'fill_blank') { |
|
const stem = document.querySelector(`#stem` + n.questionVersionId) |
|
const scores = [] |
|
if (stem) { |
|
const inputs = stem.querySelectorAll('.fill-input') |
|
if (inputs) { |
|
for (const e of inputs) { |
|
scores.push(e.value) |
|
} |
|
} |
|
} |
|
n.jsonText = JSON.stringify({ |
|
questionVersionId: n.questionVersionId, |
|
scores |
|
}) |
|
} |
|
return { |
|
questionVersionId: n.questionVersionId, |
|
serialNumber: n.serialNumber, |
|
score: +n.score, |
|
jsonText: n.jsonText, |
|
paperId: !isCopy && this.paperId || '', |
|
outlineId: !isCopy && e.outlineId || '', |
|
} |
|
}) |
|
}) |
|
if (typeof form.classificationId === 'object') form.classificationId = form.classificationId[form.classificationId.length - 1] |
|
form.questionType = [...new Set(paper.map(e => e.questionType))].join('、') // 试题类型 |
|
form.createSource = 1 |
|
if (isCopy) form.paperId = '' |
|
this.tempForm = form |
|
|
|
// debugger |
|
// if (this.hasRepeatQues(allQues)) return false |
|
this.saveTestPaper() |
|
}, |
|
// 返回 |
|
back () { |
|
this.$router.back() |
|
} |
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.ques { |
|
li { |
|
padding: 15px; |
|
margin: 20px 0 10px; |
|
border: 1px solid #dbdbdb; |
|
} |
|
|
|
.top { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
} |
|
|
|
.serial { |
|
margin-right: 10px; |
|
font-size: 13px; |
|
} |
|
|
|
.arrow { |
|
margin-left: 10px; |
|
font-size: 16px; |
|
color: #a9a9a9; |
|
cursor: pointer; |
|
} |
|
|
|
.sum { |
|
margin: 15px 0; |
|
font-size: 13px; |
|
color: $main-color; |
|
} |
|
|
|
.ques-wrap { |
|
// transition: 2s; |
|
transition-property: height; |
|
transition-duration: .25s, 1s; |
|
|
|
&.hide { |
|
height: 0; |
|
} |
|
} |
|
|
|
.ques-item { |
|
display: flex; |
|
align-items: flex-start; |
|
|
|
margin-bottom: 20px; |
|
} |
|
|
|
.ques-info { |
|
position: relative; |
|
width: calc(100% - 40px); |
|
padding: 10px; |
|
margin-left: 20px; |
|
border: 1px solid #e9e9e9; |
|
overflow: hidden; |
|
|
|
&.disabled, |
|
&.del, |
|
&.repeat { |
|
border-color: #f00; |
|
|
|
&:after { |
|
content: '已 禁 用'; |
|
position: absolute; |
|
top: 17px; |
|
right: -33px; |
|
padding: 5px 36px; |
|
font-size: 14px; |
|
color: #fff; |
|
background-color: #f00; |
|
transform: rotate(45deg); |
|
} |
|
} |
|
|
|
&.del { |
|
&:after { |
|
content: '已 删 除'; |
|
} |
|
} |
|
|
|
&.repeat { |
|
&:after { |
|
content: '存在重复题'; |
|
} |
|
} |
|
} |
|
|
|
.top-line { |
|
display: flex; |
|
align-items: center; |
|
margin-bottom: 10px; |
|
} |
|
|
|
.label { |
|
padding: 3px; |
|
margin-right: 10px; |
|
font-size: 12px; |
|
line-height: 1; |
|
color: $main-color; |
|
border: 1px solid; |
|
border-radius: 2px; |
|
} |
|
|
|
/deep/.score { |
|
width: 70px; |
|
margin: 0 10px; |
|
|
|
.el-input__inner { |
|
height: 28px; |
|
line-height: 28px; |
|
} |
|
} |
|
|
|
/deep/.fill-input { |
|
width: 100px; |
|
height: 28px; |
|
padding: 0 15px; |
|
margin: 0 10px; |
|
font-size: 13px; |
|
line-height: 28px; |
|
color: #606266; |
|
border: 1px solid #DCDEE0; |
|
border-radius: 2px; |
|
|
|
&:focus { |
|
outline: none; |
|
} |
|
} |
|
|
|
.opt { |
|
display: flex; |
|
flex-wrap: wrap; |
|
padding-left: 10px; |
|
margin-bottom: 5px; |
|
font-size: 14px; |
|
color: #707070; |
|
line-height: 1.6; |
|
} |
|
|
|
.bottom-line { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
} |
|
|
|
.correct { |
|
display: flex; |
|
font-size: 13px; |
|
color: #333; |
|
} |
|
|
|
.actions { |
|
display: inline-flex; |
|
align-items: center; |
|
|
|
.el-button { |
|
margin-left: 20px; |
|
} |
|
} |
|
|
|
.sort { |
|
display: inline-flex; |
|
align-items: center; |
|
font-size: 12px; |
|
} |
|
} |
|
|
|
.diff-text { |
|
line-height: 1.6; |
|
|
|
.em { |
|
font-weight: 600; |
|
} |
|
|
|
.coe { |
|
padding-left: 32px; |
|
} |
|
} |
|
</style> |