123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <template>
- <div class="container" id="exam-end" v-if="afterExamRemark !== null">
- <div class="instructions">
- <h1 class="">考试已结束</h1>
- <div><img class="user-avatar" :src="user.photoPath" alt="无底照" /></div>
- <div class="qm-big-text score-text" v-if="!examResult">
- 考试结果计算中...
- </div>
- <div
- class="qm-big-text score-text"
- v-if="!examResult && getResultTimes > 10"
- >
- 后台繁忙,请稍后在待考列表中查看客观题得分。
- </div>
- <div
- class="qm-big-text score-text"
- v-if="showObjectScore && !examResult.isWarn"
- >
- 客观题得分:
- <span style="color: red">{{ examResult.objectiveScore }}</span>
- </div>
- <div
- class="qm-big-text score-text"
- v-if="
- exam &&
- exam.examType !== 'ONLINE' &&
- showObjectScore &&
- !examResult.isWarn
- "
- >
- 客观题正确率:
- <span style="color: red">{{ examResult.objectiveAccuracy }}%</span>
- </div>
- <div class="qm-big-text score-text" v-if="examResult.isWarn">
- 客观题得分: 成绩待审核
- </div>
- <h1 v-if="examResult.isWarn" style="text-align: left;">违纪提示:</h1>
- <div
- v-if="examResult.isWarn"
- class=""
- style="text-align: left; padding-bottom: 20px"
- >
- <p v-html="cheatingRemark"></p>
- </div>
- <h1 style="text-align: left;">考后说明:</h1>
- <div style="text-align: left; padding-bottom: 20px">
- <p v-html="afterExamRemark"></p>
- </div>
- <router-link
- class="qm-primary-button"
- to="/online-exam"
- style="display: inline-block; width: 100%;"
- >
- 返回主页</router-link
- >
- </div>
- </div>
- <div v-else>正在等待数据返回...</div>
- </template>
- <script>
- import { mapState as globalMapState } from "vuex";
- import { createNamespacedHelpers } from "vuex";
- const { mapMutations } = createNamespacedHelpers("examingHomeModule");
- export default {
- name: "ExamingEnd",
- data() {
- return {
- exam: null,
- afterExamRemark: null,
- showObjectScore: null,
- cheatingRemark: null,
- examResult: null,
- getResultTimes: 0
- };
- },
- async mounted() {
- window._hmt.push(["_trackEvent", "考试结束页面", "进入页面"]);
- const examRecordDataId = this.$route.params.examRecordDataId;
- const examId = this.$route.params.examId;
- this.waitingNumber = 0;
- const f = async () => {
- if (this.$route.name !== "ExamingEnd") {
- // 非成绩页,不在查询成绩
- return;
- }
- try {
- this.getResultTimes = this.getResultTimes + 1;
- const examResult = (await this.$http.get(
- "/api/ecs_oe_student/examControl/getEndExamInfo?examRecordDataId=" +
- examRecordDataId
- )).data;
- if (examResult === undefined || examResult === null) {
- this.waitingNumber++;
- setTimeout(() => f(), 3000);
- return;
- }
- window._hmt.push([
- "_trackEvent",
- "考试结束页面",
- "等待分数",
- "等待次数=" + this.waitingNumber
- ]);
- this.examResult = examResult;
- } catch (error) {
- this.waitingNumber++;
- setTimeout(() => f(), 3000);
- }
- };
- await f();
- try {
- // if (!this.exam) {
- this.exam = (await this.$http.get(
- "/api/ecs_exam_work/exam/" + examId
- )).data;
- // }
- if (this.exam.examType === "PRACTICE") {
- this.$router.replace(
- `/online-practice/exam/${examId}/detail?examRecordDataId=${examRecordDataId}&disableGoBack=true`
- );
- return;
- }
- const afterExamRemark = await this.$http.get(
- "/api/ecs_exam_work/exam/examOrgProperty/" +
- examId +
- `/AFTER_EXAM_REMARK`
- );
- this.afterExamRemark = afterExamRemark.data || "";
- const showObjectScore = await this.$http.get(
- "/api/ecs_exam_work/exam/examOrgProperty/" +
- examId +
- `/IS_OBJ_SCORE_VIEW`
- );
- this.showObjectScore = showObjectScore.data || false;
- if (this.examResult.isWarn) {
- const cheatingRemark = await this.$http.get(
- "/api/ecs_exam_work/exam/examOrgProperty/" +
- examId +
- `/CHEATING_REMARK`
- );
- this.cheatingRemark = cheatingRemark.data || "";
- }
- } catch (error) {
- this.$Message.error({
- content: "获取考试设置错误,请在待考列表查看成绩!",
- duration: 15,
- closable: true
- });
- this.$router.push("/");
- }
- document.body.style = "";
- },
- beforeDestroy() {
- this.updateExamState({
- exam: null,
- paperStruct: null,
- examQuestionList: null,
- questionAudioFileUrl: []
- });
- },
- computed: {
- ...globalMapState(["user"])
- // ...mapState(["exam"])
- },
- methods: {
- ...mapMutations(["updateExamState"])
- }
- };
- </script>
- <style scoped>
- .container {
- margin: 0 auto;
- width: 80vw;
- overflow: auto;
- }
- .instructions {
- /* display: grid; */
- /* grid-template-rows: 40px 300px min(100px) 30px minmax(200px, auto) min(100px) min(
- 100px
- ) min(100px); */
- padding: 40px 20px;
- }
- .instructions > h1,
- .instructions > div {
- padding-bottom: 30px;
- }
- .user-avatar {
- display: inline-block;
- width: 140px;
- height: 140px;
- object-fit: contain;
- }
- .score-text {
- font-size: 40px;
- }
- /* .exam-detail {
- padding: 40px 20px;
- background-color: #f5f5f5;
- text-align: left;
- } */
- </style>
- <style>
- #exam-end img {
- max-width: 100%;
- height: auto !important;
- }
- </style>
|