Files
bbq/src/app/routes/download/components/list/list.component.html
2022-04-02 15:49:24 +08:00

13 lines
690 B
HTML

<page-header-wrapper [title]="'下载中心'"></page-header-wrapper>
<nz-card nzSize="small">
<!-- 搜索区 -->
<sf #sf mode="search" [schema]="schema" (formSubmit)="st.load(1)" (formReset)="resetSF()"></sf>
<!-- 数据列表 -->
<st #st multiSort [scroll]="{ x: '1200px' }" [size]="'small'" [data]="service.$api_get_page" [columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
[loading]="service.http.loading">
</st>
</nz-card>