From e38d0c2676989085f9d70bde66c403f3471c4114 Mon Sep 17 00:00:00 2001 From: chenzhen <19553350107@163.com> Date: Sun, 16 Nov 2025 14:49:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E6=B5=8B=E5=AE=8C=E6=AF=95=EF=BC=8C?= =?UTF-8?q?=E5=BE=85=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Question/QuestionSearch.vue | 2 +- src/components/UserStatistics/UserStatisticsSearch.vue | 2 +- src/components/WrongQuestion/WrongQuestionSearch.vue | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/components/Question/QuestionSearch.vue b/src/components/Question/QuestionSearch.vue index 8c75aab..2303bcd 100644 --- a/src/components/Question/QuestionSearch.vue +++ b/src/components/Question/QuestionSearch.vue @@ -271,7 +271,7 @@ export default { const url = window.URL.createObjectURL(new Blob([response.data])); const link = document.createElement('a'); link.href = url; - link.setAttribute('download', 'question.xlsx'); + link.setAttribute('download', '题库详细数据表.xlsx'); document.body.appendChild(link); link.click(); document.body.removeChild(link); diff --git a/src/components/UserStatistics/UserStatisticsSearch.vue b/src/components/UserStatistics/UserStatisticsSearch.vue index 705f6b3..74ed34d 100644 --- a/src/components/UserStatistics/UserStatisticsSearch.vue +++ b/src/components/UserStatistics/UserStatisticsSearch.vue @@ -83,7 +83,7 @@ export default { const url = window.URL.createObjectURL(new Blob([response.data])); const link = document.createElement('a'); link.href = url; - link.setAttribute('download', 'user_statistics.xlsx'); + link.setAttribute('download', '用户统计数据表.xlsx'); document.body.appendChild(link); link.click(); document.body.removeChild(link); diff --git a/src/components/WrongQuestion/WrongQuestionSearch.vue b/src/components/WrongQuestion/WrongQuestionSearch.vue index ecd623b..8c92b82 100644 --- a/src/components/WrongQuestion/WrongQuestionSearch.vue +++ b/src/components/WrongQuestion/WrongQuestionSearch.vue @@ -31,7 +31,6 @@