提交 e45a88b1 authored 作者: lihuihui's avatar lihuihui

模拟测试代码优化

上级 0791ec45
......@@ -411,7 +411,6 @@ export default {
collectQuestion() {
this.setCurrentCollect()
const queIds = this.collect.currentId
// console.log(queIds)
this.collect.currentPages ? this.removeColl(queIds, () => {
Toast('取消收藏')
this.collect.currentPages = false
......@@ -751,7 +750,6 @@ export default {
Toast.clear()
const times = this.$route.query.id === undefined ? res.sheet.remainingTime ? res.sheet.remainingTime : res.sheet.duration : res.sheet.duration
parseInt(this.$route.query.id) === -1 ? this.errorQuestion(res) : this.questionsData = res
console.log(this.questionsData)
this.questionCount = res.sheet.question_count
window.localStorage.userId = res.user_id
this.remainingTime = this.secondToDate(times)
......
......@@ -82,6 +82,7 @@
<script>
import * as api from '@/api/courseExam.js'
import * as apiMy from '@/api/account.js'
export default {
metaInfo () {
return {
......@@ -96,10 +97,12 @@ export default {
}
},
mounted() {
const userRole = parseInt(this.$store.state.user.student_info.role)
if (userRole !== 0) {
this.roleChange = userRole
}
apiMy.getUser().then(res => {
const userRole = parseInt(res.student_info.role)
if (parseInt(userRole) !== 0) {
this.roleChange = userRole
}
})
if (window.localStorage.isExamEnd === 'true') {
if (this.$store.state.isVip) {
this.abilityExam()
......@@ -336,7 +339,7 @@ export default {
.btn{
width:2.6rem;
height:.7rem;
background:rgba(43,124,233,1);
background:#C62245;
border-radius:.12rem;
text-align: center;
line-height: .7rem;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论