Explorar o código

fix(gameTeam): 修正导出文件名显示错误

将导出的Excel文件名从"队伍详情.xlsx"更正为"队伍列表.xlsx",
以准确反映导出内容的实际性质。
zhou hai 2 semanas
pai
achega
7fc569f692
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/views/system/gameTeam/index.vue

+ 1 - 1
src/views/system/gameTeam/index.vue

@@ -444,7 +444,7 @@ const handleExport = () => {
     {
       ...queryParams.value
     },
-    `${gameEventStore.defaultEventInfo?.eventCode || ''}_队伍详情.xlsx`
+    `${gameEventStore.defaultEventInfo?.eventCode || ''}_队伍列表.xlsx`
   );
 };