修复异步树表查询条件无法带入分页问题
This commit is contained in:
parent
d4e0f3e3a8
commit
702c1e0673
|
|
@ -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