修复异步树表查询条件无法带入分页问题
This commit is contained in:
parent
bfbaca1e30
commit
ebd91619a4
|
|
@ -171,6 +171,9 @@
|
|||
target.data_obj = {};
|
||||
// 设置请求分页参数
|
||||
if (options.pagination) {
|
||||
if (target.lastAjaxParams) {
|
||||
parms = $.extend({}, target.lastAjaxParams, parms);
|
||||
}
|
||||
var params = {};
|
||||
params.offset = options.pageSize * (options.pageNumber - 1);
|
||||
params.limit = options.pageSize;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user