element-assits 0.0.71 → 0.0.72
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/README.md +2 -2
- package/lib/index.js +691 -691
- 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
|
| .model | 搜索表单的值 | Object | undefined |
|
|
53
53
|
| .limit|限制默认显示的搜索条件数量|Number \| auto \| all|auto|
|