修改前端

master2
吴宇铉 8 months ago
parent 5ae8d84b88
commit 095587c343

@ -1,99 +0,0 @@
<!--
* 成绩统计页面
*
* @Author: ShanZhu
* @Date: 2023-11-23
-->
<template>
<div id="grade">
<div ref="box" class="box"></div>
<div class="notFound" v-if="isNull">
<i class="iconfont icon-LC_icon_tips_fill"></i
><span>该考生未参加考试</span>
</div>
</div>
</template>
<script>
export default {
name: "grade",
data() {
return {
isNull: false, //
tableDataX: [], //x
tableDataY: [], //y
};
},
mounted() {
this.score();
},
methods: {
score() {
let studentId = this.$route.query.studentId;
this.$axios(`/api/score/${studentId}`).then((res) => {
//Id
if (res.data.code == 200) {
let rootData = res.data.data;
rootData.forEach((element, index) => {
//
var insertIntervalString = (
originStr,
disNum = 10,
insertStr = "\n"
) =>
originStr.replace(
new RegExp("(.{" + disNum + "})", "g"),
"$1" + insertStr
);
//
var subject = insertIntervalString(element.subject, 3, "\n");
this.tableDataX.push(subject);
this.tableDataY.push(element.etScore);
});
let boxDom = this.$refs["box"];
let scoreCharts = this.$echarts.init(boxDom);
let option = {
xAxis: {
type: "category",
data: this.tableDataX,
},
yAxis: {
type: "value",
},
series: [
{
data: this.tableDataY,
type: "line",
itemStyle: { normal: { label: { show: true } } },
},
],
};
scoreCharts.setOption(option);
scoreCharts.on("mouseover", (params) => {
console.log(params.value);
});
} else {
this.isNull = true;
}
});
},
},
};
</script>
<style lang="less" scoped>
#grade {
position: relative;
.box {
width: 600px;
height: 400px;
}
.notFound {
position: absolute;
top: 0px;
left: 0px;
}
}
</style>

@ -1,122 +0,0 @@
<!--
* 考试成绩统计
*
* @Author: ShanZhu
* @Date: 2023-11-23
-->
<template>
<div class="part" >
<div class="box" ref="box"></div>
<div v-if="isNull">
<span>该门考试还没人参考哦,请提醒学生参加考试</span>
</div>
</div>
</template>
<script>
export default {
data() {
return {
isNull: false, //
name: null,
category: { //
'90分及以上': 0,
'80-89分': 0,
'70-79分': 0,
'60-69分': 0,
'60分以下': 0,
}
}
},
created() {
this.getScoreInfo()
},
methods: {
getScoreInfo() {
let examCode = this.$route.query.examCode
this.name = this.$route.query.source
this.$axios(`/api/scores/${examCode}`).then(res => {
let data = res.data.data
if(data.length > 0) {
let box = this.$refs['box']
let charts = this.$echarts.init(box)
data.forEach(element => {
switch(element.etScore / 10) {
case 10:
case 9:
this.category["90分及以上"]++
break
case 8:
this.category['80-89分']++
break
case 7:
this.category["70-79分"]++
break
case 6:
this.category['60-69分']++
break
default:
this.category['60分以下']++
}
});
let option = {
title : {
text: `${this.name}分数段图`,
subtext: '分数段饼图',
x:'center'
},
tooltip : {
trigger: 'item',
formatter: "{a}{b} <br/> {c}人 ({d}%)"
},
legend: {
orient: 'vertical',
left: 'left',
data: ['90分及以上','80-89分','70-79分','60-69分','60分以下']
},
series : [
{
name: '分数段',
type: 'pie',
radius : '35%',
center: ['50%', '35%'],
data:[
{value:this.category['90分及以上'], name:'90分及以上'},
{value:this.category['80-89分'], name:'80-89分'},
{value:this.category['70-79分'], name:'70-79分'},
{value:this.category['60-69分'], name:'60-69分'},
{value:this.category['60分以下'], name:'60分以下'}
],
itemStyle: {
emphasis: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
};
charts.setOption(option)
}else {
this.isNull = true
}
})
}
},
}
</script>
<style lang="less" scoped>
.part {
.box {
width: 800px;
height: 800px;
margin-left: 40px;
}
}
</style>

@ -1,956 +0,0 @@
<!--
* 考试答题界面
*
* @Author: ShanZhu
* @Date: 2023-11-23
-->
<template>
<div id="answer">
<!--顶部信息栏-->
<div class="top">
<ul class="item">
<li>
<i
class="iconfont icon-menufold icon20"
ref="toggle"
@click="slider_flag = !slider_flag"
></i>
</li>
<li>{{ examData.type }}-{{ examData.source }}</li>
<li @click="flag = !flag" style="cursor:pointer;">
<i class="iconfont icon-user icon20"></i>
<div class="msg" v-if="flag" @click="flag = !flag">
<p>姓名{{ userInfo.name }}</p>
<p>准考证号: {{ userInfo.id }}</p>
</div>
</li>
<li><i class="iconfont icon-arrLeft icon20"></i></li>
</ul>
</div>
<div class="flexarea">
<!--左边题目编号区-->
<transition name="slider-fade">
<div class="left" v-if="slider_flag">
<ul class="l-top">
<li>
<a href="javascript:;"></a>
<span>当前</span>
</li>
<li>
<a href="javascript:;"></a>
<span>未答</span>
</li>
<li>
<a href="javascript:;"></a>
<span>已答</span>
</li>
<li>
<a href="javascript:;"></a>
<span>标记</span>
</li>
</ul>
<div class="l-bottom">
<div class="item">
<p>选择题部分</p>
<ul>
<li v-for="(list, index1) in topic[1]" :key="index1">
<a
href="javascript:;"
@click="change(index1)"
:class="{
border: index == index1 && currentType == 1,
bg: bg_flag && topic[1][index1].isClick == true,
}"
>
<span
:class="{ mark: topic[1][index1].isMark == true }"
></span>
{{ index1 + 1 }}
</a>
</li>
</ul>
</div>
<div class="item">
<p>填空题部分</p>
<ul>
<li v-for="(list, index2) in topic[2]" :key="index2">
<a
href="javascript:;"
@click="fill(index2)"
:class="{
border: index == index2 && currentType == 2,
bg: fillAnswer[index2][3] == true,
}"
><span
:class="{ mark: topic[2][index2].isMark == true }"
></span
>{{ topicCount[0] + index2 + 1 }}</a
>
</li>
</ul>
</div>
<div class="item">
<p>判断题部分</p>
<ul>
<li v-for="(list, index3) in topic[3]" :key="index3">
<a
href="javascript:;"
@click="judge(index3)"
:class="{
border: index == index3 && currentType == 3,
bg: bg_flag && topic[3][index3].isClick == true,
}"
><span
:class="{ mark: topic[3][index3].isMark == true }"
></span
>{{ topicCount[0] + topicCount[1] + index3 + 1 }}</a
>
</li>
</ul>
</div>
<div class="final" @click="finishExam()"></div>
</div>
</div>
</transition>
<!--右边选择答题区-->
<transition name="slider-fade">
<div class="right">
<div class="title">
<p>{{ title }}</p>
<i class="iconfont icon-right auto-right"></i>
<span
>全卷共{{ topicCount[0] + topicCount[1] + topicCount[2] }}
<span v-if="!isPractice">
<i class="iconfont icon-time"></i>倒计时<b>{{ time }}</b
>分钟</span
>
</span>
</div>
<div class="content">
<p class="topic">
<span class="number">{{ number }}</span
>{{ showQuestion }}
</p>
<div v-if="currentType == 1">
<el-radio-group v-model="radio[index]" @change="getChangeLabel">
<el-radio :label="1">{{ showAnswer.answerA }}</el-radio>
<el-radio :label="2">{{ showAnswer.answerB }}</el-radio>
<el-radio :label="3">{{ showAnswer.answerC }}</el-radio>
<el-radio :label="4">{{ showAnswer.answerD }}</el-radio>
</el-radio-group>
<div class="analysis" v-if="isPractice&&radio[index]!=undefined">
<ul>
<li>
<el-tag type="success">正确答案</el-tag
><span class="right">{{ reduceAnswer.rightAnswer }}</span>
</li>
<li><el-tag>题目解析</el-tag></li>
<li>
{{
reduceAnswer.analysis == null
? "暂无解析"
: reduceAnswer.analysis
}}
</li>
</ul>
</div>
</div>
<div class="fill" v-if="currentType == 2">
<div v-for="(item, currentIndex) in part" :key="currentIndex">
<el-input
placeholder="请填在此处"
v-model="fillAnswer[index][currentIndex]"
clearable
@blur="fillBG"
>
</el-input>
</div>
<div class="analysis" v-if="isPractice&&fillAnswer[index][0]!=undefined">
<ul>
<li>
<el-tag type="success">正确答案</el-tag
><span class="right">{{ topic[2][index].answer }}</span>
</li>
<li><el-tag>题目解析</el-tag></li>
<li>
{{
topic[2][index].analysis == null
? "暂无解析"
: topic[2][index].analysis
}}
</li>
</ul>
</div>
</div>
<div class="judge" v-if="currentType == 3">
<el-radio-group
v-model="judgeAnswer[index]"
@change="getJudgeLabel"
v-if="currentType == 3"
>
<el-radio :label="1">正确</el-radio>
<el-radio :label="2">错误</el-radio>
</el-radio-group>
<div class="analysis" v-if="isPractice&&judgeAnswer[index]!=undefined">
<ul>
<li>
<el-tag type="success">正确答案</el-tag
><span class="right">{{ topic[3][index].answer=='T'?'正确':'错误' }}</span>
</li>
<li><el-tag>题目解析</el-tag></li>
<li>
{{
topic[3][index].analysis == null
? "暂无解析"
: topic[3][index].analysis
}}
</li>
</ul>
</div>
</div>
</div>
<div class="operation">
<ul class="end">
<li @click="previous()">
<i class="iconfont icon-previous"></i><span>上一题</span>
</li>
<li @click="mark()">
<i class="iconfont icon-mark-o"></i><span>标记</span>
</li>
<li @click="next()">
<span>下一题</span><i class="iconfont icon-next"></i>
</li>
</ul>
</div>
</div>
</transition>
</div>
</div>
</template>
<script>
import { mapState } from "vuex";
export default {
data() {
return {
startTime: null, //
endTime: null, //
time: null, //
reduceAnswer: [], //vue3,,3
answerScore: 0, //
bg_flag: false, //,
isFillClick: false, //
slider_flag: true, //
flag: false, //
currentType: 1, // 1-- 2-- 3--
radio: [], //
title: "请选择正确的选项",
index: 0, //index
userInfo: {
//
name: null,
id: null,
},
topicCount: [], //
score: [], //
examData: {
//
// source: null,
// totalScore: null,
},
topic: {
//
},
showQuestion: [], //
showAnswer: {}, //
number: 1, //
part: null, //
fillAnswer: [[]], //
judgeAnswer: [], //
topic1Answer: [], //,
rightAnswer: "",
timer: "",
};
},
created() {
this.getCookies();
this.getExamData();
if (!this.isPractice) {
this.showTime();
}
},
methods: {
finishExam() {
if (this.isPractice) {
//
this.$confirm("结束本次练习?", "友情提示", {
confirmButtonText: "立即交卷",
cancelButtonText: "继续练习",
type: "warning",
})
.then(() => {
this.commit();
})
.catch(() => {
});
} else if (this.time > 0) {
//
this.$confirm("考试结束时间未到,是否提前交卷", "友情提示", {
confirmButtonText: "立即交卷",
cancelButtonText: "再检查一下",
type: "warning",
})
.then(() => {
this.commit();
})
.catch(() => {
});
}
},
getTime(date) {
//
let year = date.getFullYear();
let month =
date.getMonth() + 1 < 10
? "0" + (date.getMonth() + 1)
: date.getMonth() + 1;
let day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
let hours =
date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
let minutes =
date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
let seconds =
date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
//
return (
year +
"-" +
month +
"-" +
day +
" " +
hours +
":" +
minutes +
":" +
seconds
);
},
getCookies() {
//cookie
this.userInfo.name = this.$cookies.get("cname");
this.userInfo.id = this.$cookies.get("cid");
},
calcuScore() {
//
},
getExamData() {
//
let date = new Date();
this.startTime = this.getTime(date);
let examCode = this.$route.query.examCode; //
this.$axios(`/api/exam/${examCode}`).then((res) => {
//examCode
this.examData = { ...res.data.data }; //
this.index = 0;
this.time = this.examData.totalTime; //
let paperId = this.examData.paperId;
this.$axios(`/api/paper/${paperId}`).then((res) => {
//paperId
this.topic = { ...res.data };
let reduceAnswer = this.topic[1][this.index];
this.reduceAnswer = reduceAnswer;
let keys = Object.keys(this.topic); //
keys.forEach((e) => {
let data = this.topic[e];
this.topicCount.push(data.length);
let currentScore = 0;
for (let i = 0; i < data.length; i++) {
//,
currentScore += data[i].score;
}
this.score.push(currentScore); //score
});
let len = this.topicCount[1];
let father = [];
for (let i = 0; i < len; i++) {
//
let children = [null, null, null, null];
father.push(children);
}
this.fillAnswer = father;
let dataInit = this.topic[1];
this.number = 1;
this.showQuestion = dataInit[0].question;
this.showAnswer = dataInit[0];
});
});
},
change(index) {
//
this.index = index;
let reduceAnswer = this.topic[1][this.index];
this.reduceAnswer = reduceAnswer;
this.isFillClick = true;
this.currentType = 1;
let len = this.topic[1].length;
if (this.index < len) {
if (this.index <= 0) {
this.index = 0;
}
console.log(`总长度${len}`);
console.log(`当前index:${index}`);
this.title = "请选择正确的选项";
let Data = this.topic[1];
// console.log(Data)
this.showQuestion = Data[this.index].question; //
this.showAnswer = Data[this.index];
this.number = this.index + 1;
} else if (this.index >= len) {
this.index = 0;
this.fill(this.index);
}
},
fillBG() {
// ,true
if (this.fillAnswer[this.index][0] != null) {
this.fillAnswer[this.index][3] = true;
}
},
fill(index) {
//
let len = this.topic[2].length;
this.currentType = 2;
this.index = index;
if (index < len) {
if (index < 0) {
index = this.topic[1].length - 1;
this.change(index);
} else {
console.log(`总长度${len}`);
console.log(`当前index:${index}`);
this.title = "请在横线处填写答案";
let Data = this.topic[2];
console.log(Data);
this.showQuestion = Data[index].question; //
let part = this.showQuestion.split("()").length - 1; //线
this.part = part;
this.number = this.topicCount[0] + index + 1;
}
} else if (index >= len) {
this.index = 0;
this.judge(this.index);
}
},
judge(index) {
//
let len = this.topic[3].length;
this.currentType = 3;
this.index = index;
if (this.index < len) {
if (this.index < 0) {
this.index = this.topic[2].length - 1;
this.fill(this.index);
} else {
console.log(`总长度${len}`);
console.log(`当前index:${this.index}`);
this.title = "请作出正确判断";
let Data = this.topic[3];
console.log(Data);
this.showQuestion = Data[index].question; //
this.number = this.topicCount[0] + this.topicCount[1] + index + 1;
}
} else if (this.index >= len) {
this.index = 0;
this.change(this.index);
}
},
getChangeLabel(val) {
//
this.radio[this.index] = val; //
if (val) {
let data = this.topic[1];
this.bg_flag = true;
data[this.index]["isClick"] = true;
}
/* 保存学生答题选项 */
this.topic1Answer[this.index] = val;
},
getJudgeLabel(val) {
//
this.judgeAnswer[this.index] = val;
if (val) {
let data = this.topic[3];
this.bg_flag = true;
data[this.index]["isClick"] = true;
}
},
previous() {
//
this.index--;
switch (this.currentType) {
case 1:
this.change(this.index);
break;
case 2:
this.fill(this.index);
break;
case 3:
this.judge(this.index);
break;
}
},
next() {
//
this.index++;
switch (this.currentType) {
case 1:
this.change(this.index);
break;
case 2:
this.fill(this.index);
break;
case 3:
this.judge(this.index);
break;
}
},
mark() {
//
switch (this.currentType) {
case 1:
this.topic[1][this.index]["isMark"] = true; //
break;
case 2:
this.topic[2][this.index]["isMark"] = true; //
break;
case 3:
this.topic[3][this.index]["isMark"] = true; //
}
},
commit() {
//
/* 计算选择题总分 */
let topic1Answer = this.topic1Answer;
let finalScore = 0;
topic1Answer.forEach((element, index) => {
//
let right = null;
if (element != null) {
switch (
element //1,2,3,4 "A","B","C","D"
) {
case 1:
right = "A";
break;
case 2:
right = "B";
break;
case 3:
right = "C";
break;
case 4:
right = "D";
}
if (right == this.topic[1][index].rightAnswer) {
//
finalScore += this.topic[1][index].score; //
}
}
});
/**计算判断题总分 */
let fillAnswer = this.fillAnswer;
fillAnswer.forEach((element, index) => {
//index this.index
element.forEach((inner) => {
if (this.topic[2][index].answer.includes(inner)) {
//
finalScore += this.topic[2][this.index].score;
}
});
});
/** 计算判断题总分 */
let topic3Answer = this.judgeAnswer;
topic3Answer.forEach((element, index) => {
let right = null;
switch (element) {
case 1:
right = "T";
break;
case 2:
right = "F";
}
if (right == this.topic[3][index].answer) {
//
finalScore += this.topic[3][index].score; //
}
});
if (this.isPractice) {
//
this.$router.push({
path: "/studentScore",
query: {
score: finalScore,
startTime: this.startTime,
endTime: this.endTime,
},
});
return;
}
//
let date = new Date();
this.endTime = this.getTime(date);
let answerDate = this.endTime.substr(0, 10);
//
this.$axios({
url: "/api/score",
method: "post",
data: {
examCode: this.examData.examCode, //
studentId: this.userInfo.id, //
subject: this.examData.source, //
etScore: finalScore, //
answerDate: answerDate, //
},
}).then((res) => {
if (res.data.code == 200) {
this.$router.push({
path: "/studentScore",
query: {
score: finalScore,
startTime: this.startTime,
endTime: this.endTime,
},
});
}
});
},
showTime() {
//
this.timer = setInterval(() => {
this.time -= 1;
if (this.time == 10) {
this.$message({
showClose: true,
type: "error",
message: "考生注意,考试时间还剩10分钟",
});
}
if (this.time <= 0) {
this.$message({
showClose: true,
type: "error",
message: "考试时间到,系统自动提交试卷",
});
this.commit();
}
}, 1000 * 60);
},
},
beforeDestroy() {
//
clearInterval(this.timer);
},
computed: mapState(["isPractice"]),
};
</script>
<style lang="less">
.iconfont.icon-time {
color: CornflowerBlue;
margin: 0px 6px 0px 20px;
}
.analysis {
margin-top: 20px;
.right {
color: #2776df;
font-size: 18px;
border: 1px solid #2776df;
padding: 0px 6px;
border-radius: 4px;
margin-left: 20px;
}
ul li:nth-child(2) {
margin: 20px 0px;
}
ul li:nth-child(3) {
padding: 10px;
background-color: #d3c6c9;
border-radius: 4px;
}
}
.analysis span:nth-child(1) {
font-size: 18px;
}
.mark {
position: absolute;
width: 4px;
height: 4px;
content: "";
background-color: red;
border-radius: 50%;
top: 0px;
left: 22px;
}
.border {
position: relative;
border: 1px solid #ff90aa !important;
}
.bg {
background-color: #5188b8 !important;
}
.fill .el-input {
display: inline-flex;
width: 150px;
margin-left: 20px;
.el-input__inner {
border: 1px solid transparent;
border-bottom: 1px solid #eee;
padding-left: 20px;
}
}
/* slider过渡效果 */
.slider-fade-enter-active {
transition: all 0.3s ease;
}
.slider-fade-leave-active {
transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
.slider-fade-enter,
.slider-fade-leave-to {
transform: translateX(-100px);
opacity: 0;
}
.operation .end li:nth-child(2) {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: CornflowerBlue;
border-radius: 50%;
width: 50px;
height: 50px;
color: #fff;
}
.operation .end li {
cursor: pointer;
margin: 0 100px;
}
.operation {
background-color: #fff;
border-radius: 4px;
padding: 10px 0px;
margin-right: 10px;
}
.operation .end {
display: flex;
justify-content: center;
align-items: center;
color: CornflowerBlue;
}
.content .number {
display: inline-flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
background-color: CornflowerBlue;
border-radius: 4px;
margin-right: 4px;
}
.content {
padding: 0px 20px;
}
.content .topic {
padding: 20px 0px;
padding-top: 30px;
}
.right .content {
background-color: #fff;
margin: 10px;
margin-left: 0px;
height: 470px;
}
.content .el-radio-group label {
color: #000;
margin: 5px 0px;
}
.content .el-radio-group {
display: flex;
flex-direction: column;
}
.right .title p {
margin-left: 20px;
}
.flexarea {
display: flex;
}
.flexarea .right {
flex: 1;
}
.auto-right {
margin-left: auto;
color: #2776df;
margin-right: 10px;
}
.right .title {
margin-right: 10px;
padding-right: 30px;
display: flex;
margin-top: 10px;
background-color: #fff;
height: 50px;
line-height: 50px;
}
.clearfix {
clear: both;
}
.l-bottom .final {
cursor: pointer;
display: inline-block;
text-align: center;
background-color: CornflowerBlue;
width: 240px;
margin: 20px 0px 20px 10px;
border-radius: 4px;
height: 30px;
line-height: 30px;
color: #fff;
margin-top: 22px;
}
#answer .left .item {
padding: 0px;
font-size: 16px;
}
.l-bottom {
border-radius: 4px;
background-color: #fff;
}
.l-bottom .item p {
margin-bottom: 15px;
margin-top: 10px;
color: #000;
margin-left: 10px;
letter-spacing: 2px;
}
.l-bottom .item li {
width: 15%;
margin-left: 5px;
margin-bottom: 10px;
}
.l-bottom .item {
display: flex;
flex-direction: column;
}
.l-bottom .item ul {
width: 100%;
margin-bottom: -8px;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.l-bottom .item ul li a {
position: relative;
justify-content: center;
display: inline-flex;
align-items: center;
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #fff;
border: 1px solid #eee;
text-align: center;
color: #000;
font-size: 16px;
}
.left .l-top {
display: flex;
justify-content: space-around;
padding: 16px 0px;
border: 1px solid #eee;
border-radius: 4px;
margin-bottom: 10px;
background-color: #fff;
}
.left {
width: 260px;
height: 100%;
margin: 10px 10px 0px 10px;
}
.left .l-top li:nth-child(2) a {
border: 1px solid #eee;
}
.left .l-top li:nth-child(3) a {
background-color: #5188b8;
border: none;
}
.left .l-top li:nth-child(4) a {
position: relative;
border: 1px solid #eee;
}
.left .l-top li:nth-child(4) a::before {
width: 4px;
height: 4px;
content: " ";
position: absolute;
background-color: red;
border-radius: 50%;
top: 0px;
left: 16px;
}
.left .l-top li {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.left .l-top li a {
display: inline-block;
padding: 10px;
border-radius: 50%;
background-color: #fff;
border: 1px solid #ff90aa;
}
#answer .top {
background-color: CornflowerBlue;
}
#answer .item {
color: #fff;
display: flex;
padding: 20px;
font-size: 20px;
}
#answer .top .item li:nth-child(1) {
margin-right: 10px;
}
#answer .top .item li:nth-child(3) {
position: relative;
margin-left: auto;
}
#answer {
padding-bottom: 30px;
}
.icon20 {
font-size: 20px;
font-weight: bold;
}
.item .msg {
padding: 10px 15px;
border-radius: 4px;
top: 47px;
right: -30px;
color: #6c757d;
position: absolute;
border: 1px solid rgba(0, 0, 0, 0.15);
background-color: #fff;
}
.item .msg p {
font-size: 16px;
width: 200px;
text-align: left;
}
</style>

@ -1,169 +0,0 @@
<!--
* 开始成绩页面
*
-->
<template>
<div class="score">
<br>
<div class="total">
<div class="look">
本次考试成绩
</div>
<div class="show">
<div class="number" :class="{'border': isTransition}">
<span>{{score}}</span>
<span>分数</span>
</div>
</div>
<ul class="time">
<li class="start"><span>开始时间</span> <span>{{startTime}}</span></li>
<li class="end"><span>结束时间</span> <span>{{endTime}}</span></li>
</ul>
</div>
</div>
</template>
<script>
export default {
data() {
return {
isTransition: false, //
score: 0, //
startTime: null, //
endTime: null, //
}
},
created() {
this.transiton()
this.getScore()
},
methods: {
transiton() { //
setTimeout(() => {
this.isTransition = true
},1000)
},
getScore() {
let score = this.$route.query.score
let startTime = this.$route.query.startTime
let endTime = this.$route.query.endTime
this.score = score
this.startTime = startTime
this.endTime = endTime
}
}
}
</script>
<style lang="less" scoped>
.show {
display: flex;
justify-content: center;
align-items: center;
img {
width: 160px;
height: 160px;
}
.img1Transform {
opacity: 1 !important;
transform: translateX(30px) !important;
transition: all 0.6s ease !important;
}
.img2Transform {
opacity: 1 !important;
transform: translateX(-30px) !important;
transition: all 0.6s ease !important;
}
.img1 {
margin-top: 70px;
opacity: 0;
transform: translateX(0px);
transition: all 0.6s ease;
}
.img2 {
margin-top: 30px;
opacity: 0;
transform: translateX(0px);
transition: all 0.6s ease;
}
}
.time {
padding: 0px 70px;
li {
display: flex;
justify-content: space-around;
padding: 10px;
margin: 20px 0px;
}
li:nth-child(1) {
background-color: #fcf8e3;
}
li:nth-child(2) {
background-color: #e9f5e9;
}
}
.border {
border: 6px solid #36aafd !important;
transition: all 2s ease;
width: 160px !important;
height: 160px !important;
transform: rotate(360deg) !important;
opacity: 1 !important;
}
.score {
max-width: 800px;
margin: 0 auto;
.title {
margin: 60px 0px 30px 0px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
.name {
font-size: 26px;
color: inherit;
font-weight: 500;
}
.description {
font-size: 14px;
color: #888;
}
}
.total {
border: 1px solid #dbdbdb;
background-color: #fff;
padding: 40px;
.look {
border-bottom: 1px solid #dbdbdb;
padding: 0px 0px 14px 14px;
color: #36aafd;
}
.number {
opacity: 0;
border: 6px solid #fff;
transform: rotate(0deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 0 auto;
width: 160px;
height: 160px;
border-radius: 50%;
margin-top: 80px;
margin-bottom: 20px;
transition: all 1s ease;
span:nth-child(1) {
font-size: 36px;
font-weight: 600;
}
span:nth-child(2) {
font-size: 14px;
}
}
}
}
</style>

@ -1,273 +0,0 @@
<!--
* 点击试卷缩略信息
*
-->
<template>
<div id="msg">
<div class="title">
<span>试卷列表</span>
<span>/ {{examData.source}}</span>
</div>
<div class="wrapper">
<ul class="top">
<li class="example">{{examData.source}}</li>
<li><i class="iconfont icon-pen-"></i></li>
<li><i class="iconfont icon-share"></i></li>
<li class="right">
<div>
<span class="count">总分</span>
<span class="score">{{score[0]+score[1]+score[2]}}</span>
</div>
</li>
</ul>
<ul class="bottom">
<li>更新于{{examData.examDate}}</li>
<li>来自 {{examData.institute}}</li>
<li class="btn">{{examData.type}}</li>
<li class="right"><el-button @click="toAnswer(examData.examCode)">{{$store.state.isPractice==true?'':''}}</el-button></li>
</ul>
<ul class="info">
<li @click="dialogVisible = true"><a href="javascript:;"><i class="iconfont icon-info"></i>考生须知</a></li>
</ul>
</div>
<div class="content">
<el-collapse v-model="activeName" >
<el-collapse-item class="header" name="0">
<template slot="title">
<div class="title">
<span>{{examData.source}}</span><i class="header-icon el-icon-info"></i>
<span class="time">{{score[0]+score[1]+score[2]}} / {{examData.totalTime}}分钟</span>
<el-button type="primary" size="small">点击查看试题详情</el-button>
</div>
</template>
<el-collapse class="inner">
<el-collapse-item>
<template slot="title">
<div class="titlei">选择题 ({{topicCount[0]}} 共计{{score[0]}})</div>
</template>
<div class="contenti">
<ul class="question" v-for="(list, index) in topic[1]" :key="index">
<li>{{index+1}}. {{list.question}} {{list.score}}</li>
</ul>
</div>
</el-collapse-item>
<el-collapse-item>
<template slot="title">
<div class="titlei">填空题 ({{topicCount[1]}} 共计{{score[1]}})</div>
</template>
<div class="contenti">
<ul class="question" v-for="(list, index) in topic[2]" :key="index">
<li>{{topicCount[0]+index+1}}.{{list.question}} {{list.score}}</li>
</ul>
</div>
</el-collapse-item>
<el-collapse-item>
<template slot="title">
<div class="titlei">判断题 ({{topicCount[2]}} 共计{{score[2]}})</div>
</template>
<div class="contenti">
<ul class="question" v-for="(list, index) in topic[3]" :key="index">
<li>{{topicCount[0]+topicCount[1]+index+1}}. {{list.question}} {{list.score}}</li>
</ul>
</div>
</el-collapse-item>
</el-collapse>
</el-collapse-item>
</el-collapse>
</div>
<!--考生须知对话框-->
<el-dialog
title="考生须知"
:visible.sync="dialogVisible"
width="30%">
<span>{{examData.tips}}</span>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false">知道了</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
export default {
data() {
return {
dialogVisible: false, //
activeName: '0', //
topicCount: [],//
score: [], //
examData: { //
// source: null,
// totalScore: null,
},
topic: { //
},
}
},
mounted() {
this.init()
},
methods: {
//
init() {
let examCode = this.$route.query.examCode //
this.$axios(`/api/exam/${examCode}`).then(res => { //examCode
res.data.data.examDate = res.data.data.examDate.substr(0,10)
this.examData = { ...res.data.data}
let paperId = this.examData.paperId
this.$axios(`/api/paper/${paperId}`).then(res => { //paperId
this.topic = {...res.data}
let keys = Object.keys(this.topic) //
keys.forEach(e => {
let data = this.topic[e]
this.topicCount.push(data.length)
let currentScore = 0
for(let i = 0; i< data.length; i++) { //,
currentScore += data[i].score
}
this.score.push(currentScore) //score
})
})
})
},
toAnswer(id) {
this.$router.push({path:"/answer",query:{examCode: id}})
},
}
}
</script>
<style lang="less" scoped>
.bottom {
.right{
.el-button{
color: #409EFF;
border-color: #c6e2ff;
background-color: #ecf5ff;
}
}
}
.right {
margin-left: auto;
}
.inner .contenti .question {
margin-left: 40px;
color: #9a9a9a;
font-size: 14px;
}
.content .inner .titlei {
margin-left: 20px;
font-size: 16px;
color: #88949b;
font-weight: bold;
}
.content .title .time {
font-size: 16px;
margin-left: 420px;
color: #999;
}
.content .stitle {
background-color: #0195ff;
}
.content .title span {
margin-right: 10px;
}
#msg .content .title {
font-size: 20px;
margin: 0px;
display: flex;
align-items: center;
}
.content {
margin-top: 20px;
background-color: #fff;
}
.content .header {
padding: 10px 30px;
}
.wrapper .info {
margin: 20px 0px 0px 20px;
border-top: 1px solid #eee;
padding: 20px 0px 10px 0px;
}
.wrapper .info a {
color: #88949b;
font-size: 14px;
}
.wrapper .info a:hover {
color: #0195ff;
}
.wrapper .bottom .btn {
cursor: pointer;
padding: 5px 10px;
border: 1px solid #88949b;
border-radius: 4px;
}
.wrapper .bottom {
display: flex;
margin-left: 20px;
color: #999;
font-size: 14px;
align-items: center;
}
.wrapper .bottom li {
margin-right: 14px;
}
#msg {
background-color: #eee;
width: 980px;
margin: 0 auto;
}
#msg .title {
margin: 20px;
}
#msg .wrapper {
background-color: #fff;
padding: 10px;
}
.wrapper .top {
display: flex;
margin: 20px;
align-items: center;
}
.wrapper .top .right {
margin-left: auto;
}
.wrapper .top .example {
color: #333;
font-size: 22px;
font-weight: 700;
}
.wrapper .top li i {
margin-left: 20px;
color: #88949b;
}
.wrapper .right .count {
margin-right: 60px;
color: #fff;
padding: 4px 10px;
background-color: #88949b;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border: 1px solid #88949b;
}
.wrapper .right .score {
position: absolute;
left: 53px;
top: -5px;
padding: 1px 12px;
font-size: 20px;
color: #88949b;
border: 1px dashed #88949b;
border-left: none;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
font-weight: bold;
}
.wrapper .right div {
position: relative;
}
</style>

@ -1,151 +0,0 @@
<!--
* 学生考试首页
*
-->
<template>
<div id="student">
<el-row class="padding-50">
<el-col :span="24">
<ul class="list">
<li class="logo"><span>在线考试系统</span></li>
<li @click="exam()"><a href="javascript:;" >考试中心</a></li>
<li @click="practice()"><a href="javascript:;" >试卷练习</a></li>
<li><router-link to="/scoreTable">我的分数</router-link></li>
<li><router-link to="/message">交流区</router-link></li>
<li class="right" @mouseenter="flag = !flag" @mouseleave="flag = !flag">
<a href="javascript:;"><i class="iconfont icon-Userselect icon"></i>{{user.userName}}</a>
<div class="msg" v-if="flag">
<p @click="manage()"></p>
<p class="exit" @click="exit()">退</p>
</div>
</li>
</ul>
</el-col>
</el-row>
<!--路由区域-->
<div class="main">
<router-view></router-view>
</div>
<v-footer></v-footer>
</div>
</template>
<script>
import myFooter from "@/components/student/myFooter"
import {mapState} from 'vuex'
export default {
components: {
"v-footer": myFooter
},
data() {
return {
flag: false,
user: {}
}
},
created() {
this.userInfo()
},
methods: {
exit() { //退
this.$router.push({path:"/"}) //
this.$cookies.remove("cname") //cookie
this.$cookies.remove("cid")
this.$cookies.remove("rb_token") //cookie
this.$cookies.remove("rb_role")
},
manage() { //
this.$router.push({path: '/manager'})
},
userInfo() {
let studentName = this.$cookies.get("cname")
let studentId = this.$cookies.get("cid")
console.log(`studentId${studentId}`)
console.log(`studentName ${studentName}`)
this.user.userName = studentName
this.user.studentId = studentId
},
practice() { //
let isPractice = true
this.$store.commit("practice", isPractice)
this.$router.push({path:'/startExam'})
},
exam() { //
let isPractice = false
this.$store.commit("practice", isPractice)
this.$router.push({path:'/student'})
}
},
computed:mapState(["isPractice"])
}
</script>
<style scoped>
.right .icon {
margin-right: 6px;
}
#student .padding-50 {
margin: 0 auto;
padding: 0 50px;
box-shadow: 0 0 10px 4px rgba(1,149,255,0.1);
background-color: #fff;
}
.list a {
text-decoration: none;
color: #334046;
}
li {
list-style: none;
height: 60px;
line-height: 60px;
}
#student .list{
display: flex;
}
#student .list li {
padding: 0 20px;
cursor: pointer;
}
#student .list li:hover {
background-color: #0195ff;
transition: all 2s ease;
}
#student .list li:hover a {
color: #fff;
}
#student .list .right {
margin-left: auto;
position: relative;
}
#student .list li.right :hover a {
color: #000;
}
#student .list .logo {
display: flex;
font-weight: bold;
color: #2f6c9f;
}
#student .list .logo i {
font-size: 50px;
}
.right .msg {
text-align: center;
position: absolute;
top: 60px;
left: 0px;
display: flex;
flex-direction: column;
border-radius: 2px;
border-bottom: 3px solid #0195ff;
background-color: #fff;
}
.right .msg p {
height: 40px;
line-height: 40px;
width: 105px;
}
.right .msg p:hover {
background-color: #0195ff;
}
</style>

@ -1,110 +0,0 @@
<!--
* 管理中心
*
-->
<template>
<div id='manager'>
<el-form :model="ruleForm2" status-icon :rules="rules2" ref="ruleForm2" label-width="100px" class="demo-ruleForm">
<h3 class="alter">修改你的密码</h3>
<el-form-item label="密码" prop="pass" class="pass">
<el-input type="password" v-model="ruleForm2.pass" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="确认密码" prop="checkPass">
<el-input type="password" v-model="ruleForm2.checkPass" autocomplete="off"></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="submitForm('ruleForm2')"></el-button>
<el-button @click="resetForm('ruleForm2')"></el-button>
</el-form-item>
</el-form>
</div>
</template>
<script>
export default {
data() {
var validatePass = (rule, value, callback) => {
if (value === '') {
callback(new Error('请输入密码'));
} else {
if (this.ruleForm2.checkPass !== '') {
this.$refs.ruleForm2.validateField('checkPass');
}
callback();
}
};
var validatePass2 = (rule, value, callback) => {
if (value === '') {
callback(new Error('请再次输入密码'));
} else if (value !== this.ruleForm2.pass) {
callback(new Error('两次输入密码不一致!'));
} else {
callback();
}
};
return {
ispass: true,
ruleForm2: {
pass: '',
checkPass: ''
},
rules2: {
pass: [
{ validator: validatePass, trigger: 'blur' }
],
checkPass: [
{ validator: validatePass2, trigger: 'blur' }
]
}
};
},
methods: {
submitForm(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
let studentId = this.$cookies.get("cid")
this.$axios({ //
url: '/api/studentPWD',
method: 'put',
data: {
pwd: this.ruleForm2.pass,
studentId
}
}).then(res => {
if(res.data != null ) { //
this.$message({
message: '密码修改成功...',
type: 'success'
})
}
})
} else {
console.log('error submit!!');
return false;
}
});
},
resetForm(formName) {
this.$refs[formName].resetFields();
}
}
}
</script>
<style scoped>
#manager .pass label{
color: red;
font-size: 20px;
}
#manager {
width: 600px;
margin: 0 auto;
margin-top: 100px;
text-align: center;
margin-bottom: 300px;
}
#manager .alter {
margin: 30px 0px;
}
</style>

@ -1,263 +0,0 @@
<!--
* 留言页面
*
-->
<template>
<div id="message">
<div class="title">交流区</div>
<div class="wrapper">
<div class="title1">
<el-input
placeholder="留言标题"
v-model="title"
clearable>
</el-input>
</div>
<div class="content">
<el-input
type="textarea"
:rows="3"
placeholder="留言内容"
v-model="content"
clearable>
</el-input>
</div>
<div class="btn">
<el-button type="primary" @click="submit()"></el-button>
</div>
<div class="all">
<ul class="msglist">
<li class="list"
@mouseenter="enter(index)"
@mouseleave="leave(index)"
v-for="(data,index) in msg" :key="index"
>
<p class="title"> <i class="iconfont icon-untitled33"></i>{{data.title}}</p>
<p class="content">{{data.content}}</p>
<p class="date"><i class="iconfont icon-date"></i>{{data.time}}</p>
<div v-for="(replayData,index2) in data.replays" :key="index2">
<p class="comment"><i class="iconfont icon-huifuxiaoxi"></i>{{replayData.replay}}</p>
</div>
<span class="replay" @click="replay(data.id)" v-if="flag && index == current"></span>
</li>
</ul>
</div>
<div class="pagination">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="pagination.current"
:page-sizes="[4,6,8,10]"
:page-size="pagination.size"
layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total">
</el-pagination>
</div>
</div>
</div>
</template>
<script>
export default {
// name: 'message'
data() {
return {
flag: false,
current: 0,
title: "",
content: "",
pagination: { //
current: 1, //
total: null, //
size: 4 //
},
msg: []
}
},
created() {
this.getMsg()
},
// watch: {
// },
methods: {
getMsg() {
this.$axios(`/api/messages/${this.pagination.current}/${this.pagination.size}`).then(res => {
let status = res.data.code
if(status == 200) {
this.msg = res.data.data.records
this.pagination = res.data.data
}
})
},
//
handleSizeChange(val) {
this.pagination.size = val
this.getMsg()
},
//
handleCurrentChange(val) {
this.pagination.current = val
this.getMsg()
},
// formatTime(date) { //
// let year = date.getFullYear()
// let month= date.getMonth()+ 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
// let day=date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
// let hours=date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
// let minutes=date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
// let seconds=date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
// //
// return year+"-"+month+"-"+day+" "+hours+":"+minutes+":"+seconds;
// },
submit() {
let date = new Date()
if(this.title.length == 0 || this.content.length == 0) { //
this.$message({
type: 'error',
message: '留言标题或内容不能为空',
})
} else {
this.$axios({
url: "/api/message",
method: "post",
data: {
title: this.title,
content: this.content,
time: date
}
}).then(res => {
let code = res.data.code
if(code == 200) {
this.$message({
type: "success",
message: "留言成功"
})
}
this.getMsg()
})
}
this.title = ""
this.content = ""
this.getMsg()
},
replay(messageId) { //
this.$prompt('回复留言', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputPattern: /^[\s\S]*.*[^\s][\s\S]*$/,
inputErrorMessage: '回复不能为空'
}).then(({ value }) => {
let date = new Date()
console.log(messageId)
this.$axios({
url: '/api/replay',
method: 'post',
data: {
replay: value,
replayTime: date,
messageId: messageId
}
}).then(res => {
this.getMsg()
})
this.$message({
type: 'success',
message: '回复成功'
});
}).catch(() => {
this.$message({
type: 'info',
message: '取消输入'
});
});
},
enter(index) {
this.flag = true
this.current = index
},
leave(index) {
this.flag = false;
this.current = index;
}
}
}
</script>
<style lang="less" scoped>
.pagination {
display: flex;
justify-content: center;
}
#message {
width: 980px;
margin: 0 auto;
}
.title {
margin: 20px;
}
.content {
padding: 20px 0px;
}
#message {
.btn {
padding-bottom: 20px;
}
.all {
.date {
color: rgb(80, 157, 202);
line-height: 45px;
font-size: 13px;
}
.list {
background-color: #eee;
padding:10px;
border-radius: 4px;
margin: 10px 0px;
position: relative;
transition: all .3s ease;
.title {
color: #5f5f5f;
margin: 0px;
font-size: 13px;
line-height: 30px;
}
.content {
padding: 0px;
}
.icon-untitled33 {
font-size: 13px;
margin-right: 4px;
}
.icon-date {
font-size: 13px;
margin-right: 4px;
color: rgb(80, 157, 202);
}
.replay {
position: absolute;
right: 30px;
bottom: 15px;
color: tomato;
cursor: pointer;
transition: all .3s ease;
}
.comment {
margin:-7px 0px;
padding-bottom: 12px;
font-size: 13px;
color: #28b2b4;
i {
margin-right: 4px;
}
}
}
}
}
#message .wrapper {
background-color: #fff;
padding: 20px;
}
</style>

@ -1,216 +0,0 @@
<!--
* 我的试卷页面
*
-->
<template>
<div id="myExam">
<div class="title">考试中心</div>
<div class="wrapper">
<ul class="top">
<li class="order">试卷列表</li>
<li class="search-li"><div class="icon"><input type="text" placeholder="试卷名称" class="search" v-model="key"><i class="el-icon-search"></i></div></li>
<li><el-button type="primary" @click="search()"></el-button></li>
</ul>
<ul class="paper" v-loading="loading">
<li class="item" v-for="(item,index) in pagination.records" :key="index">
<h4 @click="toExamMsg(item.examCode)">{{item.source}}</h4>
<p class="name">{{item.source}}-{{item.description}}</p>
<div class="info">
<i class="el-icon-loading"></i><span>{{item.examDate.substr(0,10)}}</span>
<i class="iconfont icon-icon-time"></i><span v-if="item.totalTime != null">{{item.totalTime}}</span>
<i class="iconfont icon-fenshu"></i><span>满分{{item.totalScore}}</span>
</div>
</li>
</ul>
<div class="pagination">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="pagination.current"
:page-sizes="[6, 10, 20, 40]"
:page-size="pagination.size"
layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total">
</el-pagination>
</div>
</div>
</div>
</template>
<script>
export default {
// name: 'myExam'
data() {
return {
loading: false,
key: null, //
allExam: null, //
pagination: { //
current: 1, //
total: null, //
size: 6 //
}
}
},
created() {
this.getExamInfo()
this.loading = true
},
// watch: {
// },
methods: {
//
getExamInfo() {
this.$axios(`/api/exams/${this.pagination.current}/${this.pagination.size}`).then(res => {
this.pagination = res.data.data
this.loading = false
console.log(this.pagination)
}).catch(error => {
console.log(error)
})
},
//
handleSizeChange(val) {
this.pagination.size = val
this.getExamInfo()
},
//
handleCurrentChange(val) {
this.pagination.current = val
this.getExamInfo()
},
//
search() {
this.$axios('/api/exams').then(res => {
if(res.data.code == 200) {
let allExam = res.data.data
let newPage = allExam.filter(item => {
return item.source.includes(this.key)
})
this.pagination.records = newPage
}
})
},
//
toExamMsg(examCode) {
this.$router.push({path: '/examMsg', query: {examCode: examCode}})
console.log(examCode)
}
}
}
</script>
<style lang="less" scoped>
.pagination {
padding: 20px 0px 30px 0px;
.el-pagination {
display: flex;
justify-content: center;
}
}
.paper {
h4 {
cursor: pointer;
}
}
.paper .item a {
color: #000;
}
.wrapper .top .order {
cursor: pointer;
}
.wrapper .top .order:hover {
color: #0195ff;
border-bottom: 2px solid #0195ff;
}
.wrapper .top .order:visited {
color: #0195ff;
border-bottom: 2px solid #0195ff;
}
.item .info i {
margin-right: 5px;
color: #0195ff;
}
.item .info span {
margin-right: 14px;
}
.paper .item {
width: 380px;
border-radius: 4px;
padding: 20px 30px;
border: 1px solid #eee;
box-shadow: 0 0 4px 2px rgba(217,222,234,0.3);
transition: all 0.6s ease;
}
.paper .item:hover {
box-shadow: 0 0 4px 2px rgba(140, 193, 248, 0.45);
transform: scale(1.03);
}
.paper .item .info {
font-size: 14px;
color: #88949b;
}
.paper .item .name {
font-size: 14px;
color: #88949b;
}
.paper * {
margin: 20px 0;
}
.wrapper .paper {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.top .el-icon-search {
position: absolute;
right: 10px;
top: 10px;
}
.top .icon {
position: relative;
}
.wrapper .top {
border-bottom: 1px solid #eee;
margin-bottom: 20px;
}
#myExam .search-li {
margin-left: auto;
}
.top .search-li {
margin-left: auto;
}
.top li {
display: flex;
align-items: center;
}
.top .search {
margin-left: auto;
padding: 10px;
border-radius: 4px;
border: 1px solid #eee;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.top .search:hover {
color: #0195ff;
border-color: #0195ff;
}
.wrapper .top {
display: flex;
}
.wrapper .top li {
margin: 20px;
}
#myExam {
width: 980px;
margin: 0 auto;
}
#myExam .title {
margin: 20px;
}
#myExam .wrapper {
background-color: #fff;
}
</style>

@ -1,43 +0,0 @@
<!--
* 页脚部分
*
-->
<template>
<footer id="footer">
<ul>
<li><a href="javascript:;">关于我们</a></li>
<li><a href="javascript:;">免责声明</a></li>
<li><a href="javascript:;">使用协议</a></li>
<li>@Copyright 杭州水果捞</li>
</ul>
</footer>
</template>
<script>
export default {
name: "myFooter"
}
</script>
<style scoped>
#footer a {
color: #919698;
font-size: 14px;
}
#footer {
background-color: #eee;
}
#footer ul {
margin-top: 40px;
border-top: 1px solid #d5d5d5;
display: flex;
justify-content: center;
height: 80px;
line-height: 80px;
}
#footer ul li {
color: #919698;
font-size: 14px;
margin-right: 20px;
}
</style>

@ -1,131 +0,0 @@
<!--
* 学生成绩显示页面
*
-->
<template>
<div class="table">
<p class="title">我的分数</p>
<section class="content-el">
<el-table ref="filterTable" :data="score" v-loading="loading">
<el-table-column
prop="answerDate"
label="考试日期"
sortable
width="330"
column-key="answerDate"
:filters="filter"
:filter-method="filterHandler">
</el-table-column>
<el-table-column
prop="subject"
label="课程名称"
width="340"
filter-placement="bottom-end">
<template slot-scope="scope">
<el-tag>{{scope.row.subject}}</el-tag>
</template>
</el-table-column>
<el-table-column prop="etScore" label="考试分数" width="140"></el-table-column>
<el-table-column label="是否及格" width="100">
<template slot-scope="scope">
<el-tag :type="scope.row.etScore>= 60 ? 'success' : 'danger'">{{scope.row.etScore >= 60 ? "及格" : "不及格"}}</el-tag>
</template>
</el-table-column>
</el-table>
<el-row type="flex" justify="center" align="middle" class="pagination">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="pagination.current"
:page-sizes="[4,6,8,10]"
:page-size="pagination.size"
layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total">
</el-pagination>
</el-row>
</section>
</div>
</template>
<script>
export default {
data() {
return {
pagination: { //
current: 1, //
total: null, //
size: 10 //
},
loading: false, //
score: [], //
filter: null //
}
},
created() {
this.getScore()
this.loading = true //
},
methods: {
getScore() {
let studentId = this.$cookies.get("cid")
this.$axios(`/api/score/${this.pagination.current}/${this.pagination.size}/${studentId}`).then(res => {
if(res.data.code == 200) {
this.loading = false //
this.score = res.data.data.records
this.pagination = {...res.data.data}
let mapVal = this.score.map((element,index) => { //map filter:[{text,value}]
let newVal = {}
newVal.text = element.answerDate
newVal.value = element.answerDate
return newVal
})
let hash = []
const newArr = mapVal.reduce((item, next) => { //
hash[next.text] ? '' : hash[next.text] = true && item.push(next);
return item
}, []);
this.filter = newArr
}
})
},
//
handleSizeChange(val) {
this.pagination.size = val
this.getScore()
},
//
handleCurrentChange(val) {
this.pagination.current = val
this.getScore()
},
formatter(row, column) {
return row.address;
},
filterTag(value, row) {
return row.tag === value;
},
filterHandler(value, row, column) {
const property = column["property"];
return row[property] === value;
}
}
};
</script>
<style lang="less" scoped>
.pagination {
padding-top: 20px;
}
.table {
width: 980px;
margin: 0 auto;
.title {
margin: 20px;
}
.content-el {
background-color: #fff;
padding: 20px;
}
}
</style>

@ -1,312 +0,0 @@
<!--
* 我的考试页面
*
-->
<template>
<div id="myExam">
<div class="title">试卷练习</div>
<div class="wrapper">
<ul class="top">
<li>
练习列表
</li>
<li class="search-li"><div class="icon"><input type="text" placeholder="试卷名称" class="search" v-model="key"><i class="el-icon-search"></i></div></li>
<li><el-button type="primary" @click="search()"></el-button></li>
</ul>
<ul class="paper" v-loading="loading">
<li class="item" v-for="(item,index) in pagination.records" :key="index">
<h4 @click="toExamMsg(item.examCode)">{{item.source}}</h4>
<p class="name">{{item.source}}-{{item.description}}</p>
<div class="info">
<i class="el-icon-loading"></i><span>{{item.examDate.substr(0,10)}}</span>
<i class="iconfont icon-icon-time"></i><span v-if="item.totalTime != null">{{item.totalTime}}</span>
<i class="iconfont icon-fenshu"></i><span>满分{{item.totalScore}}</span>
</div>
</li>
</ul>
<div class="pagination">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="pagination.current"
:page-sizes="[6, 10, 20, 40]"
:page-size="pagination.size"
layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total">
</el-pagination>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
loading: false,
key: null, //
allExam: null, //
pagination: { //
current: 1, //
total: null, //
size: 6 //
}
}
},
created() {
this.getExamInfo()
this.loading = true
},
// watch: {
// },
methods: {
//
getExamInfo() {
this.$axios(`/api/exams/${this.pagination.current}/${this.pagination.size}`).then(res => {
this.pagination = res.data.data
this.loading = false
console.log(this.pagination)
}).catch(error => {
console.log(error)
})
},
//
handleSizeChange(val) {
this.pagination.size = val
this.getExamInfo()
},
//
handleCurrentChange(val) {
this.pagination.current = val
this.getExamInfo()
},
//
search() {
this.$axios('/api/exams').then(res => {
if(res.data.code == 200) {
let allExam = res.data.data
let newPage = allExam.filter(item => {
return item.source.includes(this.key)
})
this.pagination.records = newPage
}
})
},
//
toExamMsg(examCode) {
this.$router.push({path: '/examMsg', query: {examCode: examCode}})
console.log(examCode)
}
}
}
</script>
<style lang="less" scoped>
.pagination {
padding: 20px 0px 30px 0px;
.el-pagination {
display: flex;
justify-content: center;
}
}
.paper {
h4 {
cursor: pointer;
}
}
.paper .item a {
color: #000;
}
.wrapper .top .order {
cursor: pointer;
}
.wrapper .top .order:hover {
color: #0195ff;
border-bottom: 2px solid #0195ff;
}
.wrapper .top .order:visited {
color: #0195ff;
border-bottom: 2px solid #0195ff;
}
.item .info i {
margin-right: 5px;
color: #0195ff;
}
.item .info span {
margin-right: 14px;
}
.paper .item {
width: 380px;
border-radius: 4px;
padding: 20px 30px;
border: 1px solid #eee;
box-shadow: 0 0 4px 2px rgba(217,222,234,0.3);
transition: all 0.6s ease;
}
.paper .item:hover {
box-shadow: 0 0 4px 2px rgba(140, 193, 248, 0.45);
transform: scale(1.03);
}
.paper .item .info {
font-size: 14px;
color: #88949b;
}
.paper .item .name {
font-size: 14px;
color: #88949b;
}
.paper * {
margin: 20px 0;
}
.wrapper .paper {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.top .el-icon-search {
position: absolute;
right: 10px;
top: 10px;
}
.top .icon {
position: relative;
}
.wrapper .top {
border-bottom: 1px solid #eee;
margin-bottom: 20px;
}
#myExam .search-li {
margin-left: auto;
}
.top .search-li {
margin-left: auto;
}
.top li {
display: flex;
align-items: center;
}
.top .search {
margin-left: auto;
padding: 10px;
border-radius: 4px;
border: 1px solid #eee;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.top .search:hover {
color: #0195ff;
border-color: #0195ff;
}
.wrapper .top {
display: flex;
}
.wrapper .top li {
margin: 20px;
}
#myExam {
width: 980px;
margin: 0 auto;
}
#myExam .title {
margin: 20px;
}
#myExam .wrapper {
background-color: #fff;
}
.wrapper .top .order {
cursor: pointer;
}
.wrapper .top .order:hover {
color: #0195ff;
border-bottom: 2px solid #0195ff;
}
.wrapper .top .order:visited {
color: #0195ff;
border-bottom: 2px solid #0195ff;
}
.item .info i {
margin-right: 5px;
color: #0195ff;
}
.item .info span {
margin-right: 14px;
}
.paper .item {
border-radius: 4px;
padding: 20px 30px;
border: 1px solid #eee;
box-shadow: 0 0 4px 2px rgba(217,222,234,0.3);
transition: all 0.6s ease;
}
.paper .item:hover {
box-shadow: 0 0 4px 2px rgba(140, 193, 248, 0.45)
}
.paper .item .info {
font-size: 14px;
color: #88949b;
}
.paper .item .name {
font-size: 14px;
color: #88949b;
}
.paper * {
margin: 20px 0;
}
.wrapper .paper {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.top .el-icon-search {
position: absolute;
right: 10px;
top: 10px;
}
.top .icon {
position: relative;
}
.wrapper .top {
border-bottom: 1px solid #eee;
}
#myExam .search-li {
margin-left: auto;
}
.top .search-li {
margin-left: auto;
}
.top li {
display: flex;
align-items: center;
}
.top .search {
margin-left: auto;
padding: 10px;
border-radius: 4px;
border: 1px solid #eee;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.top .search:hover {
color: #0195ff;
border-color: #0195ff;
}
.wrapper .top {
display: flex;
}
.wrapper .top li {
margin: 20px;
}
#myExam {
width: 980px;
margin: 0 auto;
}
#myExam .title {
margin: 20px;
}
#myExam .wrapper {
background-color: #fff;
}
</style>
Loading…
Cancel
Save