Browse Source

fix 修复 登录日志excel导出名称错误

疯狂的狮子Li 7 months ago
parent
commit
9726df3966
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/monitor/logininfor/index.vue

+ 1 - 1
src/views/monitor/logininfor/index.vue

@@ -198,7 +198,7 @@ const handleExport = () => {
     {
       ...queryParams.value
     },
-    `config_${new Date().getTime()}.xlsx`
+    `logininfor_${new Date().getTime()}.xlsx`
   );
 };