Merge branch 'layui:2.x' into 2.x

pull/1273/head
sunxiaobin89 2023-06-02 17:13:11 +08:00 committed by GitHub
commit a9c271501e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View File

@ -20,6 +20,7 @@ toc: true
| API | 描述 |
| --- | --- |
| var table = layui.table | 获得 `table` 模块。 |
| [table.set(options)](#set) | 设定全局默认属性项 |
| [table.render(options)](#render) | table 组件渲染,核心方法。 |
| [table.init(filter, options)](#table.init) | 初始化渲染静态表格。 |
| [table.reload(id, options, deep)](#table.reload) | 表格完整重载。 |
@ -35,6 +36,25 @@ toc: true
| [table.on(\'event(filter)\', callback)](#table.on) | table 相关事件。 |
<h3 id="set" class="ws-anchor ws-bold">全局设置</h3>
- 参数 `options` : 基础属性配置项。[#详见属性](#options)
该方法主要用于初始化设置属性默认值。实际应用时,必须先设置该方法,再执行渲染、重载等操作。
```js
layui.use(function(){
var table = layui.table;
// 全局设置
table.set({
headers: {token: '123'}
});
// 渲染
table.render(options);
});
```
<h3 id="render" lay-toc="{level: 2}" class="ws-anchor ws-bold">渲染</h3>
table 提供了以下三种渲染模式,在实际使用时,一般按情况选择其中一种即可。

View File

@ -1772,7 +1772,7 @@ layui.define(['table'], function (exports) {
* @param {String} id 表格id
* @param {String} dataIndex 父节点的dataIndex
* */
treeTable.reAsync = function (id, dataIndex) {
treeTable.reloadAsyncNode = function (id, dataIndex) {
var that = getThisTable(id);
if (!that) {
return;