2019-07-26 13:32:43 +08:00
|
|
|
<template>
|
2019-08-14 10:36:55 +08:00
|
|
|
<el-card>
|
|
|
|
<div slot="header" style="text-align: center;">
|
2019-09-11 09:25:16 +08:00
|
|
|
<b>{{ $t('exam.nameOfTestPaper') +': ' + examDetails.name }}</b>
|
2019-08-14 10:36:55 +08:00
|
|
|
</div>
|
|
|
|
<div style="margin:50px; overflow-y: auto;">
|
|
|
|
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{ height: height - 190 +'px' }">
|
|
|
|
<p class="list-item">
|
2019-10-17 11:20:09 +08:00
|
|
|
<span class="list-label">{{ $t('exam.examStartTime') +':' }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
<span v-if="examDetails.startTime" class="list-elem">
|
|
|
|
{{ examDetails.startTime }} - {{ examDetails.endTime }}</span>
|
2019-09-11 09:25:16 +08:00
|
|
|
<span v-else class="list-elem">{{ $t('exam.theExamIsReadyAnyTime') }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
</p>
|
|
|
|
<p class="list-item">
|
2019-09-11 09:25:16 +08:00
|
|
|
<span class="list-label">{{ $t('exam.testExplanation') + ':' }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
<span class="list-elem">{{ examDetails.remarks }}</span>
|
|
|
|
</p>
|
|
|
|
<p class="list-item">
|
2019-09-11 09:25:16 +08:00
|
|
|
<span class="list-label">{{ $t('exam.examTimeAvailable') + ':' }}</span>
|
2019-10-17 11:20:09 +08:00
|
|
|
<span class="list-elem">{{ parseInt(examDetails.duration) / 60 + $t('exam.minutes') }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
</p>
|
|
|
|
<p class="list-item">
|
2019-09-11 09:25:16 +08:00
|
|
|
<span class="list-label">{{ $t('exam.fullMarksInTheExam') + ':' }}</span>
|
2019-10-17 11:20:09 +08:00
|
|
|
<span class="list-elem">{{ examDetails.fullPoint }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
</p>
|
|
|
|
<p class="list-item">
|
2019-09-11 09:25:16 +08:00
|
|
|
<span class="list-label">{{ $t('exam.passMarkTheExam') + ':' }}</span>
|
2019-10-17 11:20:09 +08:00
|
|
|
<span class="list-elem">{{ examDetails.passingPoint }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
</p>
|
|
|
|
<p class="list-item">
|
2019-09-11 09:25:16 +08:00
|
|
|
<span class="list-label">{{ $t('exam.examinationRules') + ':' }}</span>
|
2019-08-14 10:36:55 +08:00
|
|
|
<span class="list-elem">
|
|
|
|
<p class="list-table">
|
|
|
|
<el-table :data="examDetails.examDefinitionRulesVOList" border show-summary>
|
2019-09-11 09:25:16 +08:00
|
|
|
<el-table-column prop="name" :label="this.$t('exam.trainingType')" width="180" />
|
|
|
|
<el-table-column prop="num" :label="this.$t('exam.numberOfQuestions')" />
|
|
|
|
<el-table-column prop="point" :label="this.$t('exam.score')" />
|
|
|
|
<el-table-column prop="chapterIdLong" :label="this.$t('exam.totalScore')" />
|
2019-08-14 10:36:55 +08:00
|
|
|
</el-table>
|
|
|
|
</p>
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</el-scrollbar>
|
|
|
|
</div>
|
|
|
|
<div class="btn-start">
|
2019-09-11 09:25:16 +08:00
|
|
|
<el-button :loading="loading" type="primary" @click="exmaStart">{{ $t('exam.startTheExam') }}</el-button>
|
2019-09-25 09:18:28 +08:00
|
|
|
<el-button @click="back" >{{ $t('global.back') }}</el-button>
|
2019-08-14 10:36:55 +08:00
|
|
|
</div>
|
|
|
|
</el-card>
|
2019-07-26 13:32:43 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2019-08-14 10:36:55 +08:00
|
|
|
import { examNotify } from '@/api/simulation';
|
|
|
|
import { getExamLessonDetail } from '@/api/management/exam';
|
|
|
|
import { generateExamList } from '@/api/management/userexam';
|
|
|
|
import { getPublishLessonDetail } from '@/api/jmap/lesson';
|
|
|
|
import { PermissionType } from '@/scripts/ConstDic';
|
|
|
|
import { getDetailList } from '@/api/management/dictionary';
|
|
|
|
import { mapGetters } from 'vuex';
|
|
|
|
import { launchFullscreen } from '@/utils/screen';
|
|
|
|
import { UrlConfig } from '@/router/index';
|
2019-07-26 13:32:43 +08:00
|
|
|
|
2019-08-14 10:36:55 +08:00
|
|
|
export default {
|
|
|
|
name: 'ExamDetailView',
|
|
|
|
data() {
|
|
|
|
return {
|
2019-08-19 10:58:14 +08:00
|
|
|
loading: false,
|
2019-08-14 10:36:55 +08:00
|
|
|
examDetails: {
|
|
|
|
lessonId: '',
|
|
|
|
name: '',
|
|
|
|
remarks: '',
|
|
|
|
examDefinitionRulesVOList: [],
|
|
|
|
startTime: '',
|
|
|
|
endTime: '',
|
|
|
|
fullPoint: '',
|
|
|
|
passingPoint: '',
|
|
|
|
duration: '',
|
|
|
|
type: ''
|
|
|
|
},
|
|
|
|
typeList: [],
|
|
|
|
examList: [],
|
|
|
|
trainingOperateTypeMap: {}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapGetters('trainingList', [
|
|
|
|
'trainingList'
|
2019-09-02 15:37:57 +08:00
|
|
|
]),
|
|
|
|
height() {
|
|
|
|
return this.$store.state.app.height - 50;
|
|
|
|
}
|
2019-08-14 10:36:55 +08:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
'$route.params.examId': function (val) {
|
|
|
|
this.loadInitPage(val);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async mounted() {
|
|
|
|
this.trainingOperateTypeMap = {};
|
|
|
|
this.$Dictionary.stationControl().then(list => {
|
|
|
|
this.trainingOperateTypeMap['01'] = list; // 控制权实训
|
|
|
|
});
|
|
|
|
this.$Dictionary.signalOperation().then(list => {
|
|
|
|
this.trainingOperateTypeMap['02'] = list; // 信号机实训
|
|
|
|
});
|
|
|
|
this.$Dictionary.switchOperation().then(list => {
|
|
|
|
this.trainingOperateTypeMap['03'] = list; // 道岔实训
|
|
|
|
});
|
|
|
|
this.$Dictionary.sectionOperation().then(list => {
|
|
|
|
this.trainingOperateTypeMap['04'] = list; // 区段实训
|
|
|
|
});
|
|
|
|
this.$Dictionary.stationStandOperation().then(list => {
|
|
|
|
this.trainingOperateTypeMap['05'] = list; // 站台实训
|
|
|
|
});
|
|
|
|
this.$Dictionary.trainPlanOperation().then(list => {
|
|
|
|
this.trainingOperateTypeMap['06'] = list; // 行车计划实训
|
|
|
|
});
|
|
|
|
this.$Dictionary.trainOperation().then(list => {
|
|
|
|
this.trainingOperateTypeMap['07'] = list; // 列车实训
|
|
|
|
});
|
|
|
|
await this.getList();
|
|
|
|
this.loadInitPage(this.$route.params.examId);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async getList() {
|
|
|
|
this.typeList = [];
|
|
|
|
await getDetailList('training_type').then(res => {
|
|
|
|
this.typeList = res.data;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
async loadInitPage(examId) {
|
|
|
|
if (examId) {
|
|
|
|
const res = await getExamLessonDetail(examId);
|
|
|
|
this.examDetails = res.data;
|
|
|
|
this.examDetails.examDefinitionRulesVOList.forEach((res, index) => {
|
|
|
|
res.chapterIdLong = Number(res.num) * Number(res.point);
|
|
|
|
this.typeList.forEach(v => {
|
|
|
|
if (res.trainingType == v.code) {
|
|
|
|
this.examDetails.examDefinitionRulesVOList[index].name = v.name;
|
|
|
|
if (res.operateType) {
|
|
|
|
this.trainingOperateTypeMap[res.trainingType].forEach(item => {
|
|
|
|
if (item.code == res.operateType) {
|
|
|
|
this.examDetails.examDefinitionRulesVOList[index].name = `${this.examDetails.examDefinitionRulesVOList[index].name}-${item.name}`;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2019-09-04 19:06:55 +08:00
|
|
|
|
2019-08-14 10:36:55 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
buy() {
|
2019-08-19 10:58:14 +08:00
|
|
|
this.loading = true;
|
2019-08-14 10:36:55 +08:00
|
|
|
getPublishLessonDetail({ id: this.examDetails.lessonId }).then((res) => {
|
|
|
|
this.$router.push({
|
2019-09-25 09:18:28 +08:00
|
|
|
path: `${UrlConfig.trainingPlatform.pay}/${this.examDetails.lessonId}`,
|
|
|
|
query: { permissionType: PermissionType.EXAM,lessonId: this.examDetails.lessonId,prdCode: res.data.prdCode, mapId: res.data.mapId }
|
2019-08-14 10:36:55 +08:00
|
|
|
});
|
2019-08-19 10:58:14 +08:00
|
|
|
}).catch(() => {
|
2019-09-11 09:25:16 +08:00
|
|
|
this.$messageBox(this.$t('error.obtainCourseDetailsFailed'));
|
2019-08-19 10:58:14 +08:00
|
|
|
this.loading = false;
|
2019-08-14 10:36:55 +08:00
|
|
|
});
|
2019-07-26 13:32:43 +08:00
|
|
|
|
2019-08-14 10:36:55 +08:00
|
|
|
},
|
|
|
|
async examDetail() {
|
|
|
|
const data = this.examDetails;
|
|
|
|
try {
|
|
|
|
const response = await generateExamList(data.id);
|
2019-09-04 19:06:55 +08:00
|
|
|
this.examList = response.data.userExamQuestionsVOs;
|
2019-08-14 10:36:55 +08:00
|
|
|
this.userExam = response.data;
|
|
|
|
const list = response.data.userExamQuestionsVOs;
|
|
|
|
await this.$store.dispatch('exam/setUsedTime', this.userExam.usedTime);
|
|
|
|
await this.$store.dispatch('exam/setTotalTime', this.userExam.duration);
|
|
|
|
await this.$store.dispatch('trainingList/setTrainingList', list);
|
|
|
|
} catch (error) {
|
|
|
|
// 判断是否有考试权限,如果没有权限则跳到购买页面,否则报错
|
|
|
|
if (error.code === 500004) {
|
2019-09-11 09:25:16 +08:00
|
|
|
this.$confirm( this.$t('tip.noCourseAuthority'), this.$t('tip.hint'), {
|
|
|
|
cancelButtonText: this.$t('global.cancel'),
|
|
|
|
confirmButtonText: this.$t('global.confirm'),
|
2019-08-14 10:36:55 +08:00
|
|
|
type: 'warning',
|
|
|
|
center: true
|
|
|
|
}).then(() => {
|
|
|
|
this.buy();
|
|
|
|
}).catch(() => { });
|
|
|
|
} else if (error.code === 500005) {
|
2019-09-11 09:25:16 +08:00
|
|
|
this.$messageBox(this.$t('tip.notWithinTheScopeOfTheExamination'));
|
2019-08-14 10:36:55 +08:00
|
|
|
} else {
|
|
|
|
this.$messageBox(`${error.message}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-09-04 19:06:55 +08:00
|
|
|
async exmaStart() {
|
2019-08-19 10:58:14 +08:00
|
|
|
this.loading = true;
|
2019-09-04 19:06:55 +08:00
|
|
|
await this.examDetail();
|
2019-08-14 10:36:55 +08:00
|
|
|
if (this.examList.length) {
|
|
|
|
examNotify({ examId: this.$route.params.examId }).then(resp => {
|
|
|
|
const query = {
|
|
|
|
group: resp.data,
|
|
|
|
trainingId: this.examList[0].trainingId,
|
|
|
|
userExamId: this.userExam.id,
|
|
|
|
examQuestionId: this.examList[0].id
|
|
|
|
};
|
|
|
|
this.$router.push({ path: `${UrlConfig.display}/exam`, query: query });
|
|
|
|
launchFullscreen();
|
|
|
|
}).catch(error => {
|
2019-08-19 10:58:14 +08:00
|
|
|
this.loading = false;
|
2019-09-11 09:25:16 +08:00
|
|
|
this.$messageBox( this.$t('error.createSimulationFailed') +`: ${error.message}`);
|
2019-08-14 10:36:55 +08:00
|
|
|
});
|
2019-08-19 10:58:14 +08:00
|
|
|
} else {
|
|
|
|
this.loading = false;
|
2019-08-14 10:36:55 +08:00
|
|
|
}
|
2019-09-25 09:18:28 +08:00
|
|
|
},
|
|
|
|
back() {
|
|
|
|
this.$router.back();
|
|
|
|
}
|
2019-08-14 10:36:55 +08:00
|
|
|
}
|
|
|
|
};
|
2019-07-26 13:32:43 +08:00
|
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
@import "src/styles/mixin.scss";
|
|
|
|
|
|
|
|
.menu li {
|
|
|
|
border-right: solid white 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
line-height: 22px;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noList {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 20px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-buy {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding-right: 50px;
|
|
|
|
transform: translateY(-30px);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/deep/ {
|
|
|
|
.el-table__footer-wrapper {
|
|
|
|
.is-leaf:nth-child(3) {
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-weight: bold
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-item {
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-label {
|
|
|
|
display: -moz-inline-box;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-table {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 120px;
|
|
|
|
width: calc(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-elem {
|
|
|
|
color: #808080 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-start {
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
transform: translateY(-20px);
|
|
|
|
}
|
2019-08-09 15:52:55 +08:00
|
|
|
</style>
|