element-assits 0.0.71 → 0.0.73

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.
Files changed (3) hide show
  1. package/README.md +3 -2
  2. package/lib/index.js +246 -245
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -45,9 +45,9 @@ Vue 原型上挂载了 `$asyncLoad` 方法(与asyncLoad相同)
45
45
  |:---|:---|:---|:---|
46
46
  | column | 列信息数组| Array | [] |
47
47
  | data | 表格数据 | Array | [] |
48
- | pageRequest | 分页请求 | Function | undefined |
48
+ | pageRequest | 分页请求 | Function <br>() => Promise<{data:any[], total:number}> | undefined |
49
49
  | loading | 表格加载状态 | Boolean | undefined |
50
- | initRequest | 是否初始化发送请求 | Boolean | true |
50
+ | initRequest | 是否初始化发送请求 | Boolean \| Function <br> boolean \| (search: () => void) => void | true |
51
51
  | innerForm | 内部 - 表单(搜索栏) | Boolean \| Object | undefined |
52
52
  | &nbsp;&nbsp;&nbsp;&nbsp;.model | 搜索表单的值 | Object | undefined |
53
53
  | &nbsp;&nbsp;&nbsp;&nbsp;.limit|限制默认显示的搜索条件数量|Number \| auto \| all|auto|
@@ -290,6 +290,7 @@ el-scrollbar 衍生,优化样式
290
290
  |height|组件高度|Number \| String| auto |
291
291
  |maxHeight|当自动高度时,限制最大高度|Number| 500 |
292
292
  |itemSize|单项高度|Number|32|
293
+ |redundancy|渲染总数,影响流畅度和性能|Number|60|
293
294
  |checkbox|是否显示多选框|Boolean|false|
294
295
  |disableCheckbox|是否禁止多选框|Boolean|false|
295
296
  |noDataText|无数据时的文本|String|暂无数据|