|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
|
|
|
- <div class="container" v-if="startInfo && paperStruct">
|
|
|
+ <div class="container" id="exam-overview" v-if="startInfo && paperStruct">
|
|
|
<div class="instructions">
|
|
|
<h1 class="">考试说明</h1>
|
|
|
<div class="" style="text-align: left; padding-bottom: 20px">
|
|
@@ -56,9 +56,9 @@ export default {
|
|
|
this.intervalId = setInterval(() => {
|
|
|
this.remainTime -= 1;
|
|
|
this.isForceRead = TOTAL_READ_TIME - this.remainTime < FORCE_READ_TIME;
|
|
|
- if (this.remainTime === 0) {
|
|
|
- this.goToPaper();
|
|
|
- }
|
|
|
+ // if (this.remainTime === 0) {
|
|
|
+ // this.goToPaper();
|
|
|
+ // }
|
|
|
}, 1000);
|
|
|
|
|
|
const exam = await this.$http.get(
|
|
@@ -160,3 +160,11 @@ export default {
|
|
|
float: right;
|
|
|
}
|
|
|
</style>
|
|
|
+
|
|
|
+<style>
|
|
|
+#exam-overview img {
|
|
|
+ max-width: 100%;
|
|
|
+ height: auto !important;
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|