QueryField
作者:王书硕
列表数据会查询哪些字段一般是在预置数据里设置的。也可以通过代码控制。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export class ProjectConfirmationListListPresenter extends QueryListPagePresenter {
getQueryListOption(): IQueryListSolutionPresenterOptions {
return {
...super.getQueryListOption(),
resourceId: ResourceConstants.Res_ProjectConfirmation,
getDynamicQueryFields: () => {
return ['task.project.id'];
}
};
}
}
|