16 lines
864 B
HTML
16 lines
864 B
HTML
<div nz-row nzGutter="8">
|
|
<div nz-col nzSpan="20">
|
|
<sf #sf [schema]="searchSchema" [ui]="{ '*': { spanLabelFixed: 0,grid: { span: 8 } }}" [compact]="true"
|
|
[button]="'none'"></sf>
|
|
</div>
|
|
<div nz-col [nzSpan]="4" class="text-right mb-md">
|
|
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)">查询</button>
|
|
<button nz-button (click)="resetSF()">重置</button>
|
|
</div>
|
|
|
|
</div>
|
|
<st #st [data]="url" [columns]="columns" bordered size="small"
|
|
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
|
|
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
|
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
|
[loading]="false" [scroll]="{ y: '400px' }"></st> |