venus-design 0.6.3 → 0.6.4
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/dist/VenusTable/index.js
CHANGED
|
@@ -16,7 +16,6 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try
|
|
|
16
16
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
17
17
|
import { DataView, getColumnData, storage, deleteSessionKeysWithPrefix, getMenuId, handleColumnFilterFns, handleColumnFns } from "./..";
|
|
18
18
|
import React, { useState, useEffect } from 'react';
|
|
19
|
-
import "./style.less";
|
|
20
19
|
/**
|
|
21
20
|
* 动态表格
|
|
22
21
|
* @param props
|
|
@@ -319,7 +318,8 @@ var VenusTable = function VenusTable(props) {
|
|
|
319
318
|
current: pageInfo.current,
|
|
320
319
|
pageSize: pageInfo.pageSize,
|
|
321
320
|
pageSizeOptions: [10, 20, 50, 100, 500]
|
|
322
|
-
}
|
|
321
|
+
},
|
|
322
|
+
ghost: true
|
|
323
323
|
}, props, {
|
|
324
324
|
//传递的其他属性
|
|
325
325
|
//toolBarRender={() =>toolsAndOptions.tools}
|
package/package.json
CHANGED