From b4f1269a1ca0c61dbaab494c9f3c6395012406cd Mon Sep 17 00:00:00 2001 From: chenzhen <19553350107@163.com> Date: Tue, 18 Nov 2025 12:02:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E6=B5=8B=E7=BB=93=E6=9D=9F=EF=BC=8C?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E5=A4=8D=E6=B5=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 13 -- src/components/Question/QuestionSearch.vue | 60 +++++++-- src/components/Question/QuestionTable.vue | 26 +++- src/components/Tabs/TabNavigation.vue | 4 +- .../UserStatistics/UserStatisticsSearch.vue | 135 ++++++++++++++------- .../UserStatistics/UserStatisticsTable.vue | 49 +++++--- .../WrongQuestion/WrongQuestionSearch.vue | 108 ++++++++++++----- .../WrongQuestion/WrongQuestionTable.vue | 15 ++- src/router/index.js | 12 +- 9 files changed, 285 insertions(+), 137 deletions(-) diff --git a/src/App.vue b/src/App.vue index 216b5b7..257f29e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -16,11 +16,6 @@ - - - @@ -139,14 +134,6 @@ body { opacity: 0.5; } -/* 修改后的底部按钮定位样式 */ -.footer-btn { - position: fixed; /* 改为 fixed 定位 */ - bottom: 20px; /* 距离底部 20px */ - right: 20px; /* 距离右侧 20px */ - z-index: 1000; /* 确保在其他元素之上 */ -} - /* 搜索区域样式 */ .search-area { diff --git a/src/components/Question/QuestionSearch.vue b/src/components/Question/QuestionSearch.vue index 2303bcd..0400745 100644 --- a/src/components/Question/QuestionSearch.vue +++ b/src/components/Question/QuestionSearch.vue @@ -1,11 +1,14 @@