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 @@