From 4d37a94546babab4d654150600ea3362f894b4f0 Mon Sep 17 00:00:00 2001
From: unknown <331404948@qq.com>
Date: Fri, 9 Aug 2024 14:02:00 +0800
Subject: [PATCH] =?UTF-8?q?=E8=80=83=E8=AF=95=E9=9D=99=E6=80=81=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/exercises/exam/exam.vue | 82 +++++++++++++++++++++++++++++++++++++------
1 file changed, 71 insertions(+), 11 deletions(-)
diff --git a/pages/exercises/exam/exam.vue b/pages/exercises/exam/exam.vue
index c42b37b..6b21b22 100644
--- a/pages/exercises/exam/exam.vue
+++ b/pages/exercises/exam/exam.vue
@@ -46,7 +46,17 @@
- 右边盒子
+
+
+
+ 题目 |
+ {{index+1}}列 |
+
+
+ {{index+1}} 行 |
+ {{ item2 }} |
+
+
@@ -74,13 +84,13 @@
-
+
-
+
+
+
@@ -166,8 +176,8 @@
.imgView {
position: relative;
background: none;
- max-width: 80%;
- padding: 50px;
+ // max-width: 80%;
+ // padding: 50px;
.closeIcon {
position: absolute;
color: #fff;
@@ -177,8 +187,11 @@
background-color: #333;
border-radius: 50%;
}
- .imgBox {
- width: 100%;
+ .img {
+ // width: calc(100vh - 200rpx);
+ // height: calc(100vw - 100rpx);
+ width: 750rpx;
+ height: 750rpx;
}
}
.content {
@@ -340,7 +353,52 @@
.rightBox {
flex: 1;
- background-color: blanchedalmond;
+ background-color: #fff;
+
+ table {
+ display: table;
+ border-collapse: collapse;
+ border-spacing: 0px;
+ td, th {
+ width: 9.09%;
+ // text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+ }
+ // border-color: gray;
+ }
+
+ .ansItem {
+ font-size: 24rpx;
+ text-align: center;
+ border-bottom: 1px solid #E1DFDF;
+ border-right: 1px solid #E1DFDF;
+ color: green;
+ &.green {
+ color: green;
+ }
+ &.red {
+ color: red;
+ }
+ }
+ .blueItem {
+ background-color: $themC;
+ color: #fff;
+ text-align: center;
+ font-size: 24rpx;
+ &.br {
+ border-right: 1px solid #fff;
+ &:last-child {
+ border: none;
+ }
+ }
+ &.bb {
+ border-top: 1px solid #fff;
+ // &:last-child {
+ // border: none;
+ // }
+ }
+ }
}
}
&.row1 {
@@ -431,4 +489,6 @@
}
}
}
+
+
\ No newline at end of file