Browse Source

🐞 fix: 修复操作日志无法下载的问题

Pchen. 10 months ago
parent
commit
99dc2df3c2
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/pages/lepao/accountList/index.vue

+ 1 - 0
src/pages/lepao/accountList/index.vue

@@ -289,6 +289,7 @@ const download = () => {
   const a = document.createElement('a');
   a.href = 'http:\/\/lepao-cloud.xxoo365.top\/down.php\/682d99f9694c6fe76b64b86c5741a2d8.pdf';
   a.download = 'RunForge操作说明.pdf'
+  a.target = '_blank'
   document.body.appendChild(a);
   a.click();
   document.body.removeChild(a);