Merge pull request #1966 from tank99tank/no_query_params

导出参数没有高级查询参数
pull/2646/head
JEECG开源社区 2020-11-11 15:47:27 +08:00 committed by GitHub
commit c5f51a17da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ export const JeecgListMixin = {
if(!fileName || typeof fileName != "string"){
fileName = "导出文件"
}
let param = {...this.queryParam};
let param = {...this.getQueryParams()};
if(this.selectedRowKeys && this.selectedRowKeys.length>0){
param['selections'] = this.selectedRowKeys.join(",")
}