diff --git a/.gitignore b/.gitignore
index 8ee54e8..062a83e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,4 @@ coverage
*.sw?
*.tsbuildinfo
+/web/
diff --git a/src/styles/common.scss b/src/styles/common.scss
index 3f888a7..8b0c643 100644
--- a/src/styles/common.scss
+++ b/src/styles/common.scss
@@ -50,7 +50,7 @@ img {
max-width: 100%;
max-height: 100%;
vertical-align: middle;
- background: #ebebeb url('@/assets/images/200.png') no-repeat center / contain;
+ // background: #ebebeb url('@/assets/images/200.png') no-repeat center / contain;
}
ul {
list-style: none;
diff --git a/src/views/Exam/index.vue b/src/views/Exam/index.vue
index db92299..18fd6a1 100644
--- a/src/views/Exam/index.vue
+++ b/src/views/Exam/index.vue
@@ -1,7 +1,7 @@
@@ -157,7 +157,8 @@ async function submit() {
})
if (res.data) {
- router.push({ path: '/examDetail', query: { data: JSON.stringify(res.data) } })
+ localStorage.setItem('examDetail', JSON.stringify(res.data))
+ router.push({ path: '/examDetail', query: { } })
} else {
router.replace({ path: '/' })
}
@@ -176,14 +177,14 @@ async function submit() {
.header {
height: 60px;
- color: #41515C;
background-color: #FFF;
text-align: center;
- font-size: 18px;
- padding-top: 15px;
.desc {
margin-left: 20px;
+ color: #41515C;
+ font-size: 18px;
+ padding-top: 15px;
}
}
diff --git a/src/views/ExamDetail/index.vue b/src/views/ExamDetail/index.vue
index 6895fe5..b6f7914 100644
--- a/src/views/ExamDetail/index.vue
+++ b/src/views/ExamDetail/index.vue
@@ -1,5 +1,8 @@
-
+
@@ -12,7 +15,7 @@
-
@@ -21,7 +24,7 @@
@@ -29,19 +32,30 @@