yujialong 4 years ago
parent 6f2d6fbe95
commit 5c7300e1b2
  1. 2
      public/index.html
  2. 3
      src/api/index.js
  3. 3
      src/layouts/home/index.vue
  4. 2
      src/pages/achievement/list/examResults.vue
  5. 18
      src/pages/achievement/list/practiceResults.vue
  6. 263
      src/pages/exam/detail/index.vue
  7. 327
      src/pages/exam/do/index.vue
  8. 27
      src/pages/exam/list/index.vue
  9. 18
      src/pages/practice/list/myPractice.vue
  10. 6
      src/pages/practice/list/randomPractice.vue
  11. 4
      src/plugins/requests/index.js
  12. 5
      src/router/modules/exam.js
  13. 5
      src/setting.js
  14. 21
      src/store/modules/exam.js
  15. 13
      vue.config.js

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<link rel="stylesheet" href="//at.alicdn.com/t/font_830376_qzecyukz0s.css">
<title>电子竞技在线教学资源管理平台</title>
<title>电子竞技数字化考试系统-用户端</title>
</head>
<body>
<noscript>

@ -1,4 +1,5 @@
let loginhost = 'http://www.liuwanr.cn/liuwanr'
let host = 'http://192.168.31.152:8001'
export default {
logins: `management/userInfo/login`, //登录 
@ -27,4 +28,6 @@ export default {
enterExam: `/user/exam/enterExam`,
queryExam: `/user/exam/queryExam`,
queryGzAnswerDetails: `/user/exam/queryGzAnswerDetails`,
coverGzAnswerDetails: `/user/exam/coverGzAnswerDetails`,
getStateById:`management/monitor/getStateById`,
}

@ -1,6 +1,6 @@
<template>
<div class="wrapper">
<div class="placeholder" :class="{mini: !hideNavList}"></div>
<div class="placeholder" :class="{mini: !hideNavbar}"></div>
<div class="fixed">
<v-head></v-head>
<v-navbar v-show="hideNavbar"></v-navbar>
@ -40,6 +40,7 @@ export default {
computed: {
hideNavbar() {
let route = this.$route.name
console.log(11,this.hideNavList.includes(route))
if(this.hideNavList.includes(route)) return false
return true
}

@ -77,7 +77,7 @@ export default {
'setInfo'
]),
getData() {
this.$post(`${this.api.getMyAchievement}?userId=${1}&pageSize=${this.pageSize}&pageNum=${this.page}`).then(res => {
this.$post(`${this.api.getMyAchievement}?userId=${this.userId}&pageSize=${this.pageSize}&pageNum=${this.page}`).then(res => {
this.listData = res.data.list.list
this.total = res.data.list.totalCount
}).catch(res => {});

@ -71,15 +71,15 @@ export default {
},
methods: {
getData() {
let data = {
classificationId: this.classificationId,
name: this.keyword,
schoolId: this.schoolId
}
this.$get(`${this.api.queryCourseByCondition}/${this.page}/${this.pageSize}`,data).then(res => {
this.listData = res.data.courseList
this.total = res.data.total
}).catch(res => {});
// let data = {
// classificationId: this.classificationId,
// name: this.keyword,
// schoolId: this.schoolId
// }
// this.$get(`${this.api.queryCourseByCondition}/${this.page}/${this.pageSize}`,data).then(res => {
// this.listData = res.data.courseList
// this.total = res.data.total
// }).catch(res => {})
},
handleDelete(row) {
this.$confirm('确定要删除吗?', '提示', {

@ -0,0 +1,263 @@
<template>
<div class="box">
<h1 class="title">{{paperName }}</h1>
<div class="metas">
<div style="margin-right: 20px;">
<span class="name">总分</span>
<span class="val">100</span>
</div>
<div>
<span class="name">考试时长</span>
<span class="val">{{time}}分钟</span>
</div>
</div>
<ul class="tab">
<li v-for="(item,index) in tabs" :key="index" :class="{active: active == item.id}" @click="tabChange(item.id)">{{item.name}}</li>
</ul>
<div class="wrap">
<div class="item" v-for="(item,index) in curType" :key="index">
<div class="answer">
<div class="info">
<p class="key">序号</p>
<p class="val">{{index+1}}</p>
</div>
<div class="info">
<p class="key">得分</p>
<p class="val">{{item.question_score}}</p>
</div>
</div>
<div class="meta">
<p class="key">题干</p>
<p class="val" v-html="item.question_stem"></p>
</div>
<div class="meta">
<p class="key">选项</p>
<div class="val">
<p v-for="(option,i) in item.options" :key="i">{{i}}.{{item.options[i]}}</p>
</div>
</div>
<div class="meta ans">
<div class="info">
<p class="key">正确答案</p>
<p class="val">{{item.answer}}</p>
</div>
<div class="info">
<p class="key">学生答案</p>
<p class="val">{{item.user_answer}}</p>
</div>
</div>
<div class="meta">
<p class="key">答案解析</p>
<p class="val" v-html="item.answer_analysis"></p>
</div>
</div>
</div>
</div>
</template>
<script>
import mixins from '@/mixins/setBackground'
import { mapState } from 'vuex'
export default {
mixins: [ mixins ],
data() {
return {
paperName: '',
time: 0,
selectVisible: false,
tabs: [
{
id: 1,
name: '单选题'
},{
id: 2,
name: '多选题'
},{
id: 3,
name: '填空题'
},{
id: 4,
name: '判断题'
},{
id: 5,
name: '简答题'
}
],
active: 1,
curType: []
};
},
computed: {
...mapState('user', [
'userId'
]),
...mapState('exam', [
'testPaperId','assessmentId'
])
},
mounted() {
this.getData()
},
methods: {
getData() {
this.$post(`${this.api.answerDetail}?userId=${this.userId}&assessmentId=${this.assessmentId}&paperId=${this.testPaperId}`)
// this.$post(`${this.api.answerDetail}?userId=${1}&assessmentId=${1}&paperId=${1}`)
.then(res => {
this.paperName = res.paperName
this.time = res.time
this.allData = res.data
this.curType = this.allData.list1
this.handleOptions()
})
.catch(err => {});
},
tabChange(id){
this.active = id
this.curType = this.allData[`list${id}`]
this.handleOptions()
},
handleOptions(){
let curType = this.curType
curType.forEach(n => {
if(!n.options){
let options = {}
for(let i in n){
if(i.includes('option') && n[i]){
console.log(i.replace('option_',''))
options[i.replace('option_','')] = n[i]
}
}
n.options = options
}
})
this.curType = curType
}
},
};
</script>
<style lang="scss" scoped>
.box{
width: 90%;
margin: 0 auto;
}
.title{
text-align: center;
font-size: 18px;
font-weight: 600;
}
.metas{
display: flex;
justify-content: center;
margin: 20px 0 30px;
.name{
font-size: 12px;
color: #717171;
}
.val{
font-size: 12px;
color: #929292;
}
}
.tab{
display: flex;
align-items: center;
margin-bottom: 10px;
li{
position: relative;
padding: 0 44px;
margin-right: 7px;
font-size: 13px;
line-height: 46px;
text-align: center;
color: #444;
border: 1px solid #ececec;
cursor: pointer;
&:hover{
opacity: .8;
}
&.active:after{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background-color: #e80909;
}
}
}
.wrap{
.item{
padding-bottom: 30px;
margin-bottom: 30px;
border-bottom: 1px dashed #f4f4f4;
.key{
font-weight: bold;
color: #333;
font-size: 14px;
}
.val{
color: #757575;
font-size: 14px;
}
.answer{
display: flex;
align-items: center;
padding: 15px;
margin: 15px 0;
font-size: 12px;
border: 1px solid #e8e8e8;
background-color: #f3f2f2;
.info{
display: inline-flex;
align-items: center;
margin-right: 30px;
}
}
.meta{
padding-left: 10px;
margin: 20px 0;
font-size: 12px;
&.ans{
display: flex;
align-items: center;
.info{
margin-right: 20px;
}
}
.key{
margin-bottom: 5px;
}
}
}
}
.btns{
display: flex;
justify-content: center;
margin-top: 20px;
button{
height: 30px;
padding: 0 30px;
margin: 0 15px;
font-size: 14px;
color: #333;
line-height: 30px;
background-color: #fff;
border: 1px solid #ededed;
border-radius: 4px;
cursor: pointer;
&.submit{
color: #fff;
background-color: #e80909;
border-color: #e80909;
}
&:hover{
opacity: .8;
}
}
}
</style>

@ -5,37 +5,37 @@
<div class="item">
<p class="type">单选题</p>
<p class="total">10题合计20</p>
<p class="total">{{singleCount}}合计{{singlePoint}}</p>
<div class="nums">
<span v-for="n in 10">{{n}}</span>
<span v-for="n in singleCount" :class="{active: n <= singleAnsweredCount}" :key="n">{{n}}</span>
</div>
</div>
<div class="item">
<p class="type">多选题</p>
<p class="total">10题合计20</p>
<p class="total">{{multipleCount}}合计{{multipleChoiceScore}}</p>
<div class="nums">
<span v-for="n in 10">{{n}}</span>
<span v-for="n in multipleCount" :class="{active: n <= multipleAnsweredCount}" :key="n">{{n}}</span>
</div>
</div>
<div class="item">
<p class="type">判断题</p>
<p class="total">10题合计20</p>
<p class="total">{{judgeCount}}合计{{judgeScore}}</p>
<div class="nums">
<span v-for="n in 5">{{n}}</span>
<span v-for="n in judgeCount" :class="{active: n <= judgeAnsweredCount}" :key="n">{{n}}</span>
</div>
</div>
<div class="item">
<p class="type">填空题</p>
<p class="total">10题合计20</p>
<p class="total">{{fillBlankCount}}合计{{fillBlanksScore}}</p>
<div class="nums">
<span v-for="n in 5">{{n}}</span>
<span v-for="n in fillBlankCount" :class="{active: n <= fillBlankAnsweredCount}" :key="n">{{n}}</span>
</div>
</div>
<div class="item">
<p class="type">简答题</p>
<p class="total">10题合计20</p>
<p class="total">{{briefAnswerCount}}合计{{briefAnswerScore}}</p>
<div class="nums">
<span v-for="n in 5">{{n}}</span>
<span v-for="n in briefAnswerCount" :class="{active: n <= briefAnswerAnsweredCount}" :key="n">{{n}}</span>
</div>
</div>
<div class="btn">
@ -45,42 +45,44 @@
<div class="middle">
<div class="ques">
<div class="item" v-for="(subject,k) in subjects" :key="k">
<p v-if="subjects[k].length" class="title">{{questionType[k]}}{{subjects[k].length}}合计20分</p>
<div class="ques-wrap" v-for="(item,index) in subject" :key="index">
<div class="name-wrap">
<span class="index">{{index+1}}.</span>
<div class="name" v-html="item.questionStem"></div>
</div>
<div class="options">
<template v-if="item.typeId == 1 || item.typeId == 3">
<div class="option" v-for="(option,i) in item.options" :key="i">
<el-radio v-model="item.val" :label="i">
{{i}}.{{item.options[i]}}
</el-radio>
</div>
</template>
<template v-if="item.typeId == 2">
<el-checkbox-group v-model="item.val">
<el-checkbox class="option-check" :label="i" v-for="(option,i) in item.options" :key="i">
{{i}}.{{item.options[i]}}
</el-checkbox>
</el-checkbox-group>
</template>
<template v-if="item.typeId == 4">
<el-input type="textarea" rows="5" v-model="item.val"></el-input>
</template>
<template v-for="(subject,k) in subjects">
<div class="item" v-if="subject.length" :key="k">
<p v-if="subjects[k].length" class="title">{{questionType[k]}}{{subjects[k].length}}合计{{scoreList[k]}}</p>
<div class="ques-wrap" v-for="(item,index) in subject" :key="index">
<div class="name-wrap">
<span class="index">{{index+1}}.</span>
<div class="name" :class="'stem' + k + index" v-html="item.questionStem"></div>
</div>
<div class="options">
<template v-if="item.typeId == 1 || item.typeId == 3">
<div class="option" v-for="(option,i) in item.options" :key="i">
<el-radio v-model="item.val" :label="i">
{{i}}.{{item.options[i]}}
</el-radio>
</div>
</template>
<template v-if="item.typeId == 2">
<el-checkbox-group v-model="item.val">
<el-checkbox class="option-check" :label="i" v-for="(option,i) in item.options" :key="i">
{{i}}.{{item.options[i]}}
</el-checkbox>
</el-checkbox-group>
</template>
<template v-if="item.typeId == 4">
<el-input type="textarea" rows="5" v-model="item.val"></el-input>
</template>
</div>
</div>
</div>
</div>
</template>
</div>
</div>
<div class="right">
<p class="title">剩余时间</p>
<p class="time" v-countdown>00:59:00</p>
<p class="time" v-countdown="time">{{time}}</p>
<div class="ans">答题进度</div>
<el-progress :percentage="50"></el-progress>
<el-progress :percentage="progress"></el-progress>
</div>
</div>
</template>
@ -94,7 +96,31 @@ export default {
return {
subjects: [],
timer: null,
queryStateTimer: null,
singleCount: 0,
multipleCount: 0,
judgeCount: 0,
fillBlankCount: 0,
briefAnswerCount: 0,
singleAnsweredCount: 0,
multipleAnsweredCount: 0,
judgeAnsweredCount: 0,
fillBlankAnsweredCount: 0,
briefAnswerAnsweredCount: 0,
singlePoint: 0,
multipleChoiceScore: 0,
judgeScore: 0,
fillBlanksScore: 0,
briefAnswerScore: 0,
scoreList: [],
questionType: ['单选题','多选题','判断题','填空题','简答题'],
startTime: new Date().getTime(),
time: '00:00:00',
progress: 0,
isSubmit: false,
isDone: false
};
},
computed: {
@ -102,14 +128,15 @@ export default {
'userId'
]),
...mapState('exam', [
'testPaperId','assessmentId'
'testPaperId','assessmentId','teacherId','classId','duration'
]),
},
directives: {
countdown: {
bind: function(el,binding,vnode) {
let that = vnode.context
let time = el.innerHTML
let duration = that.duration
let time = duration > 60 ? util.formateTime(Math.floor(duration / 60)) + ':' + util.formateTime(Math.floor(duration % 60)) + ':00' : `00:${duration}:00`
that.timer = setInterval(() => {
let timeList = time.split(':')
let total = Number.parseInt(timeList[0] * 60 * 60) + Number.parseInt(timeList[1] * 60) + Number.parseInt(timeList[2])
@ -120,23 +147,24 @@ export default {
let seconds = Math.floor(total % (60 * 60) % 60)
time = `${util.formateTime(hours)}:${util.formateTime(minutes)}:${util.formateTime(seconds)}`
}else{
that.save()
clearInterval(that.timer)
}
el.innerHTML = time
that.time = time
},1000)
}
}
},
mounted() {
this.getData()
this.getAnswer()
this.addLeaveEvent()
this.queryState()
},
destroyed(){
// this.$get(`${this.api.queryGzAnswerDetails}?userId=${this.userId}&assessmentId=${this.assessmentId}&questionId=${1}`)
// .then(res => {
// })
// .catch(err => {});
beforeDestroy(){
clearInterval(this.timer)
clearInterval(this.queryStateTimer)
window.onbeforeunload = null
this.addRecords()
},
methods: {
getData() {
@ -150,30 +178,68 @@ export default {
[...data.fillInTheBlanklist],
[...data.shortAnswerList],
]
this.singleCount = data.singleChoiceList.length
this.multipleCount = data.multipleChoiceList.length
this.judgeCount = data.trueOrFalseQuestionsList.length
this.fillBlankCount = data.fillInTheBlanklist.length
this.briefAnswerCount = data.shortAnswerList.length
this.singlePoint = data.singleChoiceList.length ? data.singleChoiceList[0].singleChoiceScore : 0
this.multipleChoiceScore = data.multipleChoiceList.length ? data.multipleChoiceList[0].multipleChoiceScore : 0
this.judgeScore = data.trueOrFalseQuestionsList.length ? data.trueOrFalseQuestionsList[0].judgeScore : 0
this.fillBlanksScore = data.fillInTheBlanklist.length ? data.fillInTheBlanklist[0].fillBlanksScore : 0
this.briefAnswerScore = data.shortAnswerList.length ? data.shortAnswerList[0].briefAnswerScore : 0
this.scoreList = [this.singlePoint,this.multipleChoiceScore,this.fillBlanksScore,this.briefAnswerScore,this.briefAnswerScore]
this.handleOptions()
})
.catch(err => {});
.catch(err => {})
},
getAnswer() {
this.$get(`${this.api.queryGzAnswerDetails}?userId=${this.userId}&assessmentId=${this.assessmentId}&questionId=${this.testPaperId}`)
this.$get(`${this.api.queryGzAnswerDetails}?userId=${this.userId}&assessmentId=${this.assessmentId}&testPaperId=${this.testPaperId}`)
.then(res => {
this.subjects.forEach(e => {
e.forEach(n => {
n.questionStatus = 0
let records = res.data.data
let len = 0
this.subjects.map(n => len += n.length)
this.progress = len ? Math.floor((records.length / len * 100)) : 0
this.singleAnsweredCount = records.filter(n => n.typeId == 1).length
this.multipleAnsweredCount = records.filter(n => n.typeId == 2).length
this.judgeAnsweredCount = records.filter(n => n.typeId == 3).length
this.briefAnswerAnsweredCount = records.filter(n => n.typeId == 4).length
this.fillBlankAnsweredCount = records.filter(n => n.typeId == 5).length
this.subjects.forEach((e,i) => {
e.forEach((n,k) => {
let answered = records.find(j => j.questionId == n.id)
if(answered){
if(i == 1){
n.val = answered.userAnswer.split('')
}else if(i == 3){
let answer = answered.userAnswer.split('&lt;&gt;');
[...document.querySelectorAll(`.stem${i}${k} input`)].map((n,j) => {
n.value = answer[j]
})
n.val = answered.userAnswer
}else{
n.val = answered.userAnswer
}
n.questionStatus = 1
}else{
n.questionStatus = 0
}
})
})
console.log(33,this.subjects)
})
.catch(err => {})
},
handleOptions(){
let subjects = this.subjects
subjects.forEach(e => {
subjects.forEach((e,i) => {
e.forEach(n => {
if(n.typeId == 2){
if(i == 1){
this.$set(n,'val',[])
}else if(n.typeId == 4){
}else if(i == 3){
n.questionStem = n.questionStem.replace(/\(\)\(\)\(\)/g,`<input class="input"></input>`)
}else{
this.$set(n,'val','')
}
@ -189,29 +255,42 @@ export default {
})
})
this.subjects = subjects
this.getAnswer()
},
save(){
console.log(this.subjects)
let invalid = false
this.subjects.map(e => {
e.map(n => {
if(n.typeId == 2){
if(!n.val.length) invalid = true
}else{
if(n.val === '') invalid = true
addLeaveEvent(){
window.onbeforeunload = e => {
e = e || window.event;
if (e) {
e.returnValue = '关闭提示'
}
this.addRecords()
return '关闭提示'
}
},
queryState(){
this.queryStateTimer = setInterval(() => {
this.$post(`${this.api.getStateById}?id=${this.assessmentId}`)
.then(res => {
if(res.data.state == '已结束'){
this.isDone = true
this.save()
}
})
})
if(invalid) return this.$message.warning('请先答完所有题目')
.catch(err => {
this.$message.success('考试结束!')
this.$router.back()
})
},1000)
},
save(){
let data1 = []
this.subjects.map((e,i) => {
e.map(n => {
e.map((n,k) => {
let userAnswer = ''
if(i == 1){
userAnswer = n.val.join('')
}else if(i == 3){
// userAnswer = n.val.join('&lt;&gt;')
userAnswer = [...document.querySelectorAll(`.stem${i}${k} input`)].map(n => n.value).join('&lt;&gt;')
}else{
userAnswer = n.val
}
@ -221,33 +300,76 @@ export default {
questionStatus : n.questionStatus,
testPaperId: this.testPaperId,
userAnswer: userAnswer,
userId: this.userId,
userId: this.userId
})
})
})
this.$post(`${this.api.addGzAnswerDetails}`,data1)
this.$post(`${this.api.coverGzAnswerDetails}?userId=${this.userId}&testPaperId=${this.testPaperId}&assessmentId=${this.assessmentId}`)
.then(res => {
let data2 = {
assessmentId: this.assessmentId,
classId: this.classId,
paperId: this.testPaperId,
stuId: this.userId,
teacherId: this.teacherId,
timeSpent: 2,
totalDuration: 10,
totalScore: 100
}
this.$post(`${this.api.addTestPaperRecord}`,data2)
this.$post(`${this.api.addGzAnswerDetails}`,data1)
.then(res => {
this.$post(`${this.api.calculationScore}`,data1)
let timeSpent = parseInt((new Date().getTime() - this.startTime) / 1000)
let data2 = {
testPaperId: this.testPaperId,
assessmentId: this.assessmentId,
classId: this.classId,
paperId: this.testPaperId,
stuId: this.userId,
teacherId: this.teacherId,
timeSpent,
totalDuration: this.duration,
totalScore: 100
}
this.$post(`${this.api.addTestPaperRecord}`,data2)
.then(res => {
this.$post(`${this.api.calculationScore}`,data1)
.then(res => {
this.isSubmit = true
this.$message.success(this.isDone ? '考试已结束,已经自动为您提交考试!' : '提交成功')
this.$router.back()
})
.catch(err => {})
})
.catch(err => {});
.catch(err => {})
})
.catch(err => {});
.catch(err => {})
})
.catch(err => {});
.catch(err => {})
},
addRecords(){
if(!this.isSubmit){
let data1 = []
this.subjects.map((e,i) => {
e.map((n,k) => {
let userAnswer = ''
if(i == 1){
userAnswer = n.val.join('')
}else if(i == 3){
userAnswer = [...document.querySelectorAll(`.stem${i}${k} input`)].map(n => n.value).join('&lt;&gt;')
}else{
userAnswer = n.val
}
data1.push({
testPaperId: this.testPaperId,
assessmentId: this.assessmentId,
questionId: n.id,
questionStatus : n.questionStatus,
testPaperId: this.testPaperId,
userAnswer: userAnswer,
userId: this.userId
})
})
})
this.$post(`${this.api.coverGzAnswerDetails}?userId=${this.userId}&testPaperId=${this.testPaperId}&assessmentId=${this.assessmentId}`)
.then(res => {
this.$post(`${this.api.addGzAnswerDetails}`,data1)
.then(res => {})
.catch(err => {})
})
.catch(err => {})
}
}
},
}
@ -287,11 +409,10 @@ export default {
}
.nums{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
span{
width: 24px;
margin: 2px 0;
margin: 2px 1px;
line-height: 24px;
text-align: center;
color: #888;
@ -300,9 +421,10 @@ export default {
border: 1px solid #e6e6e6;
border-radius: 50%;
}
&.active{
.active{
color: #fff;
background-color: #e80909;
border-color: #e80909;
}
}
}
@ -334,7 +456,7 @@ export default {
}
.name-wrap{
display: flex;
align-items: flex-start;
align-items: center;
margin-bottom: 10px;
font-size: 13px;
color: #444;
@ -342,6 +464,23 @@ export default {
font-size: 13px;
color: #444;
}
/deep/.input{
width: 100px;
height: 28px;
padding: 0 5px;
margin: 0 5px;
color: #444;
background-color: #fff;
border: 1px solid #ebebeb;
box-sizing: border-box;
&:focus{
outline: none;
}
&:disabled{
background-color: #e8e8e8;
cursor: not-allowed;
}
}
}
.options{
margin-top: 10px;

@ -27,14 +27,13 @@
<el-card shadow="hover">
<el-table :data="listData" class="table" ref="table" stripe header-align="center" row-key="id">
<el-table-column type="selection" width="55" align="center" :reserve-selection="true"></el-table-column>
<el-table-column type="index" width="100" label="序号" align="center">
<el-table-column type="index" width="60" label="序号" align="center">
<template slot-scope="scope">
{{scope.$index + (page - 1) * pageSize + 1}}
</template>
</el-table-column>
<el-table-column prop="assessmentName" label="考核名称" align="center"></el-table-column>
<el-table-column prop="courses" label="所属课程" align="center"></el-table-column>
<el-table-column prop="founder" label="知识点" align="center"></el-table-column>
<el-table-column prop="name" label="难易程度" align="center">
<template slot-scope="scope">
{{getDegreeName(scope.row.degree)}}
@ -42,17 +41,18 @@
</el-table-column>
<el-table-column prop="startTime" label="考生开始时间" align="center"></el-table-column>
<el-table-column prop="endTime" label="考试结束时间" align="center"></el-table-column>
<el-table-column prop="timeCost" label="用时(分钟)" align="center"></el-table-column>
<el-table-column prop="score" label="得分" align="center"></el-table-column>
<el-table-column prop="state" label="考试状态" align="center">
<el-table-column prop="timeCost" label="用时(分钟)" width="120" align="center"></el-table-column>
<el-table-column prop="score" label="得分" width="100" align="center"></el-table-column>
<el-table-column prop="state" label="考试状态" width="100" align="center">
<template slot-scope="scope">
{{getStateName(scope.row.state)}}
{{scope.row.state == 2 ? '已提交' : '未提交'}}
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="180">
<el-table-column label="操作" align="center" width="150">
<template slot-scope="scope">
<!-- <el-button type="text" @click="toExam(scope.row)" v-if="scope.row.assessmentState == 2" :disabled="scope.row.state != 0">进入考试</el-button> -->
<el-button type="text" @click="toExam(scope.row)">进入考试</el-button>
<el-button type="text" @click="query(scope.row)">成绩查询</el-button>
<el-button type="text" @click="query(scope.row)" v-if="scope.row.state == 2">成绩查询</el-button>
</template>
</el-table-column>
</el-table>
@ -106,7 +106,7 @@ export default {
'setInfo'
]),
getData() {
this.$get(`${this.api.queryExam}?type=${this.type}&assessmentName=${this.keyword}&userId=${1}`).then(res => {
this.$get(`${this.api.queryExam}?type=${this.type}&assessmentName=${this.keyword}&userId=${this.userId}`).then(res => {
this.listData = res.data.Assessment
this.total = res.data.total
}).catch(res => {});
@ -119,11 +119,18 @@ export default {
this.setInfo({
testPaperId: row.testPaperId,
assessmentId: row.assessmentId,
teacherId: row.teacherId,
classId: row.classId,
duration: row.duration
})
this.$router.push('do')
},
query(row){
this.setInfo({
testPaperId: row.testPaperId,
assessmentId: row.id
})
this.$router.push('detail')
}
}
};

@ -72,15 +72,15 @@ export default {
},
methods: {
getData() {
let data = {
classificationId: this.classificationId,
name: this.keyword,
schoolId: this.schoolId
}
this.$get(`${this.api.queryCourseByCondition}/${this.page}/${this.pageSize}`,data).then(res => {
this.listData = res.data.courseList
this.total = res.data.total
}).catch(res => {});
// let data = {
// classificationId: this.classificationId,
// name: this.keyword,
// schoolId: this.schoolId
// }
// this.$get(`${this.api.queryCourseByCondition}/${this.page}/${this.pageSize}`,data).then(res => {
// this.listData = res.data.courseList
// this.total = res.data.total
// }).catch(res => {})
},
handleDelete(row) {
this.$confirm('确定要删除吗?', '提示', {

@ -73,9 +73,9 @@ export default {
},
methods: {
getData() {
this.$get(this.api.queryAllClassification).then(res => {
this.listData = res.data.listData
}).catch(res => {});
// this.$get(this.api.queryAllClassification).then(res => {
// this.listData = res.data.listData
// }).catch(res => {})
},
handleSelectionChange(val) {
this.multipleSelection = val;

@ -1,6 +1,4 @@
import axios from 'axios';
import QS from 'qs';
// import store from '../store/index'
import { Message } from 'element-ui'
import router from '@/router/index'
import Setting from '@/setting'
@ -39,7 +37,7 @@ service.interceptors.response.use(
} else {
switch (res.code) {
case 201:
Message.error(res.message)
Message.error(res.message ? res.message : '数据请求异常')
break;
default:
Promise.reject(res).catch(e => {})

@ -23,6 +23,11 @@ export default {
path: `do`,
component: () => import('@/pages/exam/do'),
meta: { title: '我的考试' }
},{
name: `${pre}detail`,
path: `detail`,
component: () => import('@/pages/exam/detail'),
meta: { title: '成绩查询' }
},
]
};

@ -15,7 +15,8 @@ const Setting = {
// 页面切换时,是否显示模拟的进度条
showProgressBar: true,
// 接口请求地址
apiBaseURL: env === 'development' ? 'http://192.168.31.152:8001' : 'http://39.108.250.202:8000',
// apiBaseURL: env === 'development' ? 'http://192.168.31.152:8001' : 'http://39.108.250.202:8000',
apiBaseURL: env === 'development' ? 'http://39.108.250.202:9000' : 'http://39.108.250.202:9000',
// 接口请求返回错误时,弹窗的持续时间,单位:秒
modalDuration: 3,
// 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice
@ -50,7 +51,7 @@ const Setting = {
menuSideWidth: 256,
layout: {
// 需要隐藏顶栏的页面路径
hideNavList: ['index-do','setting-person','achievement-detail','exam-do'],
hideNavList: ['index-do','setting-person','achievement-detail','exam-do','exam-detail'],
// 侧边栏风格,可选值为 dark 或 light
siderTheme: 'dark',
// 顶栏风格,可选值为 light、dark 或 primary

@ -7,7 +7,7 @@ export default {
typeList: [
{
id: 1,
name: '期中开始'
name: '期中考试'
},{
id: 2,
name: '期末考试'
@ -18,14 +18,14 @@ export default {
],
stateList: [
{
id: 0,
name: '未考'
},{
id: 1,
name: '待开始'
name: '在考'
},{
id: 2,
name: '进行中'
},{
id: 3,
name: '已结束'
name: '已考'
}
],
degreeList: [
@ -46,8 +46,10 @@ export default {
assessmentName: '',
testPaperId: '',
assessmentId: '',
teacherId: '',
classId: '',
paperName: '',
totalDuration: ''
duration: ''
},
getters: {
getDegreeName: state => id => {
@ -64,9 +66,10 @@ export default {
SET_INFO: (state, info) => {
state.assessmentName = info.assessmentName
state.assessmentId = info.assessmentId
state.teacherId = info.teacherId
state.classId = info.classId
state.testPaperId = info.testPaperId
state.paperName = info.paperName
state.totalDuration = info.totalDuration
state.duration = info.duration
},
},
actions: {

@ -1,3 +1,5 @@
const Setting = require('./src/setting.env')
// 引入等比适配插件
const px2rem = require('postcss-px2rem')
@ -19,10 +21,11 @@ module.exports = {
}
}
},
publicPath: './',
  outputDir: 'dist',
  assetsDir: 'static'
// devServer: {
publicPath: Setting.publicPath,
  outputDir: Setting.outputDir,
  assetsDir: Setting.assetsDir,
devServer: {
port: 8085
// proxy: {
// "/api": {
// target: "http://192.168.0.102:8080",
@ -33,5 +36,5 @@ module.exports = {
// }
// }
// }
// }
}
}
Loading…
Cancel
Save