Commit 322798ca by yangyang

试题调整为一道100分

parent 684af648
......@@ -38,8 +38,9 @@
<p>{{ title }}({{ optionValue }})</p>
<i class="iconfont icon-right auto-right"></i>
<span style="color: black;font-weight: bold">全卷共5题 <i
class="iconfont icon-time"></i>倒计时:<b>{{time}}</b></span>
<span style="color: black;font-weight: bold">全卷共1题
<!-- <i class="iconfont icon-time"></i>倒计时:<b>{{time}}</b></span> -->
</span>
<div style="color: black;font-weight: bold">({{ userInfo.name }})</div>
</div>
<ul style="display: flex;margin-left: 30px">
......@@ -105,7 +106,11 @@
<div class="analysis" id="topic1Right" style="display: none">
<ul>
<li class="first "> <el-tag type="success">正确答案:</el-tag><span
class="right">{{ reduceAnswer.rightAnswer }}</span></li>
class="right">{{ reduceAnswer.rightAnswer }}</span>&nbsp;&nbsp;&nbsp;
<!-- <el-tag type="success" @click="previous()">上一题</el-tag>
<el-tag type="success" @click="next()">下一题</el-tag>
<el-tag type="success" @click="commit()">结束考试</el-tag> -->
</li>
<li class="second"><el-tag>题目解析:</el-tag>
<div class="li2right">{{ (reduceAnswer.analysis == null || reduceAnswer.analysis == '') ? '无' :
reduceAnswer.analysis }}</div>
......@@ -174,6 +179,9 @@
<li class="first">
<el-tag type="success">正确答案:</el-tag>
<span class="right">{{ reduceAnswer.rightAnswer }}</span>
<!-- <el-tag type="success" @click="previous()">上一题</el-tag>
<el-tag type="success" @click="next()">下一题</el-tag>
<el-tag type="success" @click="commit()">结束考试</el-tag> -->
</li>
<li class="second">
<el-tag>题目解析:</el-tag>
......@@ -194,7 +202,10 @@
<ul>
<li class="first">
<el-tag type="success">正确答案:</el-tag>
<span class="right">{{ reduceAnswer.answer === 'T' ? '正确' : '错误' }}</span>
<span class="right">{{ reduceAnswer.answer === 'T' ? '正确' : '错误' }}</span>&nbsp;&nbsp;
<!-- <el-tag type="success" @click="previous()">上一题</el-tag>
<el-tag type="success" @click="next()">下一题</el-tag>
<el-tag type="success" @click="commit()">结束考试</el-tag> -->
</li>
<li class="second">
<el-tag>题目解析:</el-tag>
......@@ -205,14 +216,14 @@
</div>
</div>
</div>
<div class="operation">
<!-- <div class="operation">
<ul class="end">
<li @click="previous()"><i class="iconfont icon-previous"></i><span>上一题</span></li>
<li @click="commit()"><i class="iconfont icon-previous"></i><span>结束考试</span>
</li>
<li @click="next()"><span>下一题</span></li>
</ul>
</div>
</div> -->
</div>
</transition>
</div>
......@@ -286,7 +297,7 @@ export default {
//设置截止时间
var endDate = new Date(now + fiveMinutesInMillis);
this.end = endDate.getTime();
this.countTime()
//this.countTime()
},
watch: {
optionValue(newValue) {
......@@ -561,7 +572,7 @@ export default {
this.ischeckBox = true
//保存学生答题选项
this.topic2Answer[this.index] = this.checkList
//this.commit()
this.commit()
// console.log(this.topic1Answer[this.index])
// this.radio[this.index] = this.topic1Answer[this.index]
// const dasd = this.radio[this.index]
......@@ -587,7 +598,7 @@ export default {
}
/* 保存学生答题选项 */
this.topic1Answer[this.index] = val
//this.commit()
this.commit()
},
//获取判断题作答选项
getJudgeLabel(val) {
......@@ -598,7 +609,7 @@ export default {
this.radioFlagPd = true
this.isradio = true
}
//this.commit()
this.commit()
},
previous() { //上一题
......@@ -718,17 +729,17 @@ export default {
}
}).then(res => {
if (res.data.code == 200) {
this.$router.push({
path: '/studentScore', query: {
score: finalScore,
startTime: this.startTime,
endTime: this.endTime,
cid: this.$route.query.cid,
cname: this.$route.query.cname,
role: this.$route.query.role
}
})
console.log("出总分数")
// this.$router.push({
// path: '/studentScore', query: {
// score: finalScore,
// startTime: this.startTime,
// endTime: this.endTime,
// cid: this.$route.query.cid,
// cname: this.$route.query.cname,
// role: this.$route.query.role
// }
// })
console.log("已交卷")
}
}).catch(() => {
console.log("继续答题")
......@@ -736,6 +747,7 @@ export default {
}
},
countTime() {//倒计时
debugger
//获取当前时间
var date = new Date();
var now = date.getTime();
......@@ -751,7 +763,7 @@ export default {
setTimeout(this.countTime, 1000);
}else{
console.log("考试时间已到,强制交卷。")
this.commit();
//this.commit();
}
}
},
......@@ -899,6 +911,8 @@ export default {
.el-tag {
background-color: #2776df;
color: white;
font-size: 24px;
cursor: pointer;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment