|
|
@ -202,11 +202,11 @@ export class RequestApi extends Base { |
|
|
|
/** |
|
|
|
* 构建查询基本参数 |
|
|
|
* @param ops 当前分页排序信息 |
|
|
|
* @param noPageable 强制忽略表格分页配置 |
|
|
|
* @param pageable 是否分页 |
|
|
|
*/ |
|
|
|
buildFetchDataBaseParams(ops: any, noPageable: boolean = false) { |
|
|
|
buildFetchDataBaseParams(ops: any, pageable: boolean = true) { |
|
|
|
const reqParams: any = {}; |
|
|
|
if (noPageable) { |
|
|
|
if (!pageable) { |
|
|
|
reqParams.pageable = false; |
|
|
|
} else { |
|
|
|
if (this.props.pageable && !this.props.tree && !this.props.localMode) { |
|
|
|