@newview/ui 1.1.85 → 1.1.86
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.
- package/package.json +1 -1
- package/types/GridJava.d.ts +9 -0
package/package.json
CHANGED
package/types/GridJava.d.ts
CHANGED
|
@@ -385,6 +385,10 @@ export interface GridSettingJava {
|
|
|
385
385
|
* 显示标题
|
|
386
386
|
*/
|
|
387
387
|
showHeader?: boolean;
|
|
388
|
+
/**
|
|
389
|
+
* 显示表尾
|
|
390
|
+
*/
|
|
391
|
+
showFooter?: boolean
|
|
388
392
|
/**
|
|
389
393
|
* 给行附加 className
|
|
390
394
|
*/
|
|
@@ -523,6 +527,11 @@ export interface GridEventJava extends VxeTableListeners {
|
|
|
523
527
|
* @returns
|
|
524
528
|
*/
|
|
525
529
|
event_pageChangeBefore?: () => boolean;
|
|
530
|
+
/**
|
|
531
|
+
* 表尾自定义方法
|
|
532
|
+
* @returns
|
|
533
|
+
*/
|
|
534
|
+
event_footerMethod?: ({columns,data}) => void
|
|
526
535
|
}
|
|
527
536
|
|
|
528
537
|
/**
|