mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改layui分页
This commit is contained in:
parent
e64952022d
commit
200b503456
@ -751,17 +751,11 @@ $(function () {
|
||||
});
|
||||
// 实例并绑定事件
|
||||
$table.data('this', layui.table.render(bindData(option)));
|
||||
$table.bind('reload render reloadData', function (evt, opts, next) {
|
||||
$table.bind('reload render reloadData', function (evt, opts) {
|
||||
data = $.extend({}, data, (opts || {}).where || {});
|
||||
opts = bindData($.extend({}, opts || {}, {loading: true}));
|
||||
if (evt.type.indexOf('reload') > -1) {
|
||||
if (layui.table.reloadData) {
|
||||
next = $table.data('next'), next.where = data;
|
||||
next.sort = next.initSort = opts.initSort || {};
|
||||
layui.table.reloadData(table.id, (opts.page || {}).curr || 1);
|
||||
} else {
|
||||
layui.table.reload(table.id, opts);
|
||||
}
|
||||
layui.table.reloadData(table.id, opts);
|
||||
} else {
|
||||
layui.table.render(table.id, opts);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user