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

模拟测试代码优化

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