From 38b2ebcdd71d5f59b79c2e9db9f6a857fef34c63 Mon Sep 17 00:00:00 2001 From: zhongshujie <2862698242@qq.com> Date: 星期四, 04 七月 2024 12:00:33 +0800 Subject: [PATCH] 艺术戏剧(文本框样式修改) --- src/components/examinations/index.vue | 31 +++++++++++++++++++------------ 1 files changed, 19 insertions(+), 12 deletions(-) diff --git a/src/components/examinations/index.vue b/src/components/examinations/index.vue index 3eb2645..ac8b3ba 100644 --- a/src/components/examinations/index.vue +++ b/src/components/examinations/index.vue @@ -464,20 +464,24 @@ >淇濆瓨</el-button > <el-button - @click="(e) =>{ - handleQuestion() - saveAnswer(e) - }" + @click=" + (e) => { + handleQuestion(); + saveAnswer(e); + } + " class="examinations-btn-box" :style="{ borderColor: primaryColor }" >鎻愪氦</el-button > <el-button @click="redo" class="examinations-btn-box">閲嶅仛</el-button> <el-button - @click="(e) => { - openAnswers() - saveAnswer(e) - }" + @click=" + (e) => { + openAnswers(); + saveAnswer(e); + } + " class="examinations-btn-box" :style="{ borderColor: primaryColor }" >鏌ョ湅绛旀</el-button @@ -682,7 +686,7 @@ ).errorList; for (let index = 0; index < errorId.length; index++) { const item = errorId[index]; - if (oldErrodId.indexOf(item == -1)) { + if (oldErrodId.indexOf(item) == -1) { oldErrodId.push(item); } } @@ -853,6 +857,7 @@ ).errorList; } } catch (error) {} + console.log('閿欓鍒楄〃',this.allError) }) .catch(() => {}); }, @@ -1204,9 +1209,6 @@ .referBox { display: flex; margin-bottom: 10px; - /deep/ math { - display: flex; - } span { width: 80px; color: #999; @@ -1376,4 +1378,9 @@ width: 18px; object-fit: contain; } +/deep/ .examination-math { + display: flex; + align-items: center; + flex-wrap: wrap; +} </style> -- Gitblit v1.9.1