@lambo-design/shared 1.0.0-beta.252 → 1.0.0-beta.253

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63,3 +63,11 @@ input[type='number'] {
63
63
  min-height: 16px !important;
64
64
  max-height: 16px !important;
65
65
  }
66
+
67
+ .ag-body-viewport,
68
+ .ag-center-cols-viewport {
69
+ &::-webkit-scrollbar {
70
+ width: 0 !important;
71
+ height: 0 !important;
72
+ }
73
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/shared",
3
- "version": "1.0.0-beta.252",
3
+ "version": "1.0.0-beta.253",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
package/utils/excel.js CHANGED
@@ -496,7 +496,7 @@ export const export_json_to_excel = ({data, key, title, filename, spanColumns, a
496
496
  auto_width(ws, arr);
497
497
  }
498
498
  merge_content(ws, data, spanColumns)
499
- XLSX.utils.book_append_sheet(wb, ws, filename);
499
+ XLSX.utils.book_append_sheet(wb, ws, '');
500
500
  XLSX.writeFile(wb, filename + '.' + format);
501
501
  }
502
502
 
@@ -517,7 +517,7 @@ export const export_array_to_excel = ({key, data, title, filename, spanColumns,
517
517
  }
518
518
  merge_content(ws, data, spanColumns, title.length)
519
519
  add_style(ws, title)
520
- XLSX.utils.book_append_sheet(wb, ws, filename);
520
+ XLSX.utils.book_append_sheet(wb, ws, '');
521
521
  if(format === 'csv'){
522
522
  XLSX.writeFile(wb, filename + '.' + format,{
523
523
  // 要生成的文件类型
package/utils/platform.js CHANGED
@@ -752,7 +752,7 @@ export const isOpenBlank = (menu) => {
752
752
 
753
753
  /**
754
754
  * 判断应用是否为移动应用
755
- * @param menu
755
+ * @param app
756
756
  */
757
757
  export const isMobileApp = (app) => {
758
758
  try{