Browse Source

fix(gameScore): 更新成绩导出接口和文件名

- 将导出接口从 exportScoresSummary 更改为 exportScoresDetail
- 修改导出文件名从"成绩汇总表"更新为"成绩详情表"
zhou 2 weeks ago
parent
commit
895ba5cf1b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/system/gameScore/index.vue

+ 2 - 2
src/views/system/gameScore/index.vue

@@ -722,11 +722,11 @@ const exportScoresNames = () => {
 
   // 使用 proxy?.download 方式导出
   proxy?.download(
-    'system/gameScore/exportScoresSummary',
+    'system/gameScore/exportScoresDetail',
     {
       eventId: eventId
     },
-    `成绩汇总表_${new Date().toLocaleDateString()}.xlsx`
+    `成绩详情表_${new Date().toLocaleDateString()}.xlsx`
   );
 };