调整竞赛系统逻辑
This commit is contained in:
parent
7382a0d1e2
commit
83343d54b8
@ -1,10 +1,12 @@
|
||||
<template>
|
||||
<div class="joylink-card">
|
||||
<b class="title-name">{{ examType }}</b>
|
||||
<!-- <img class="img_box" :src="applyImg" alt=""> -->
|
||||
<div class="btn-start">
|
||||
<el-button :disabled="disabled" type="primary" @click="exmaStart">{{ $t('exam.startTheExam') }}</el-button>
|
||||
</div>
|
||||
<template v-if="resultFlag">
|
||||
<b class="title-name">{{ examType }}</b>
|
||||
<!-- <img class="img_box" :src="applyImg" alt=""> -->
|
||||
<div class="btn-start">
|
||||
<el-button :disabled="disabled" type="primary" @click="exmaStart">{{ $t('exam.startTheExam') }}</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
@ -41,6 +43,7 @@ export default {
|
||||
examList: [],
|
||||
trainingOperateTypeMap: {},
|
||||
drawWay: false,
|
||||
resultFlag: false,
|
||||
lineCode: '' // 线路对应的皮肤
|
||||
};
|
||||
},
|
||||
@ -55,10 +58,14 @@ export default {
|
||||
watch: {
|
||||
'$route.params.examId': function (val) {
|
||||
this.loadInitPage(val);
|
||||
},
|
||||
$route() {
|
||||
this.getUserStatus();
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
// this.loadInitPage(this.$route.params.examId);
|
||||
this.getUserStatus();
|
||||
},
|
||||
methods: {
|
||||
async getList() {
|
||||
@ -149,40 +156,41 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
async getUserStatus() {
|
||||
this.resultFlag = false;
|
||||
const res = await getRaceUserById(this.$route.query.raceId);
|
||||
// console.log(res.data.status);
|
||||
if (this.$route.query.type == 'theory' && (res.data.status == 4 || res.data.status == 5)) {
|
||||
this.$router.replace({ path: `/jsxt/result`, query: { type: 'theory', raceId:this.$route.query.raceId } });
|
||||
} else if (this.$route.query.type == 'operation' && (res.data.status == 4 || res.data.status == 6)) {
|
||||
this.$router.replace({ path: `/jsxt/result`, query: { subSystem: this.$route.query.subSystem, mapId: this.$route.query.mapId, type: 'operate', raceId:this.$route.query.raceId } });
|
||||
} else {
|
||||
this.resultFlag = true;
|
||||
}
|
||||
},
|
||||
async exmaStart() {
|
||||
if (this.$route.query.type == 'theory') {
|
||||
const res = await getRaceUserById(this.$route.query.raceId);
|
||||
if (res.data.status != 4 && res.data.status != 5) {
|
||||
getTheoryQuestion(this.$route.query.raceId).then((resp)=>{
|
||||
if (resp.data) {
|
||||
this.$router.push(`/jsxt/theory/detail/${this.$route.query.mapId}?raceId=${this.$route.query.raceId}`);
|
||||
} else {
|
||||
this.$messageBox('试卷还没被加载');
|
||||
}
|
||||
getTheoryQuestion(this.$route.query.raceId).then((resp)=>{
|
||||
if (resp.data) {
|
||||
this.$router.push(`/jsxt/theory/detail/${this.$route.query.mapId}?raceId=${this.$route.query.raceId}`);
|
||||
} else {
|
||||
this.$messageBox('试卷还没被加载');
|
||||
}
|
||||
|
||||
}).catch(()=>{
|
||||
});
|
||||
} else {
|
||||
this.$router.replace({ path: `/jsxt/result`, query: { type: 'theory', raceId:this.$route.query.raceId } });
|
||||
}
|
||||
}).catch(()=>{});
|
||||
} else {
|
||||
const res = await getRaceUserById(this.$route.query.raceId);
|
||||
if (res.data.status != 4 && res.data.status != 6) {
|
||||
getPracticalQuestion(this.$route.query.raceId).then((responese)=>{
|
||||
if (responese.data) {
|
||||
participantCreatTrainingRoom(this.$route.query.raceId, {mapId: 41, prdType: '02'}).then(resp => {
|
||||
// const query = { lineCode: '11', mapId: '41', group: resp.data, prdType: '03', raceId: this.$route.query.raceId};
|
||||
// this.$router.replace({ path: `/displayNew/demon`, query: query});
|
||||
const query = { lineCode: '11', mapId: '41', group: resp.data, raceId: this.$route.query.raceId};
|
||||
this.$router.replace({ path: `/jointTrainingNew`, query: query});
|
||||
});
|
||||
} else {
|
||||
this.$messageBox('试卷还没被加载');
|
||||
}
|
||||
});
|
||||
} else {
|
||||
this.$router.replace({ path: `/jsxt/result`, query: { subSystem: this.$route.query.subSystem, mapId: this.$route.query.mapId, type: 'operate', raceId:this.$route.query.raceId } });
|
||||
}
|
||||
getPracticalQuestion(this.$route.query.raceId).then((responese)=>{
|
||||
if (responese.data) {
|
||||
participantCreatTrainingRoom(this.$route.query.raceId, {mapId: 41, prdType: '02'}).then(resp => {
|
||||
// const query = { lineCode: '11', mapId: '41', group: resp.data, prdType: '03', raceId: this.$route.query.raceId};
|
||||
// this.$router.replace({ path: `/displayNew/demon`, query: query});
|
||||
const query = { lineCode: '11', mapId: '41', group: resp.data, raceId: this.$route.query.raceId};
|
||||
this.$router.replace({ path: `/jointTrainingNew`, query: query});
|
||||
});
|
||||
} else {
|
||||
this.$messageBox('试卷还没被加载');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user