Browse Source

Project Init

yigeren911 1 year ago
parent
commit
9a11b1affd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/excel.js

+ 1 - 1
src/utils/excel.js

@@ -48,6 +48,6 @@ export const exportExcel = (json, name, titleArr, sheetName) => {
   let wsrows = [{ hidden: true }];
   ws["!rows"] = wsrows; // ws - worksheet
   XLSX.utils.book_append_sheet(wb, ws, sheetName);
-  /* generate file and send to client */
+  // generate file and send to client
   XLSX.writeFile(wb, name + ".xlsx");
 };