43 lines
2.0 KiB
HTML
43 lines
2.0 KiB
HTML
<!-- <page-header [title]="'订单管理'"> </page-header> -->
|
||
<nz-card [nzBordered]="false">
|
||
<!-- 搜索表单 -->
|
||
<div nz-row nzGutter="8">
|
||
<!-- 查询字段小于或等于3个时,不显示伸缩按钮 -->
|
||
<div nz-col nzSpan="24" *ngIf="queryFieldCount <= 4">
|
||
<sf #sf mode="search" [schema]="schema" [button]="'none'">
|
||
<button nz-button nzType="primary" [disabled]="!sf.valid" [nzLoading]="false"
|
||
(click)="st?.load(1)" acl [acl-ability]="['companyStaff-search']">查询</button>
|
||
<button nz-button (click)="resetSF()">重置</button>
|
||
</sf>
|
||
</div>
|
||
|
||
<!-- 查询字段大于3个时,根据展开状态调整布局 -->
|
||
<ng-container *ngIf="queryFieldCount > 4">
|
||
<div nz-col [nzSpan]="_$expand ? 24 : 18">
|
||
<sf #sf [schema]="schema" [ui]="ui" [compact]="true" [button]="'none'"></sf>
|
||
</div>
|
||
<div nz-col [nzSpan]="_$expand ? 24 : 6" [class.text-right]="_$expand">
|
||
<button nz-button nzType="primary" [disabled]="!sf.valid" [nzLoading]="false"
|
||
(click)="st?.load(1)" acl [acl-ability]="['companyStaff-search']">查询</button>
|
||
<button nz-button (click)="resetSF()">重置</button>
|
||
<button nz-button nzType="link" (click)="expandToggle()">
|
||
{{ !_$expand ? '展开' : '收起' }}
|
||
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
|
||
</button>
|
||
</div>
|
||
</ng-container>
|
||
</div>
|
||
|
||
</nz-card>
|
||
<nz-card>
|
||
<div class="list-table-header-btn">
|
||
<!-- <button nz-button nzType="default" (click)="gotoInviteRecord()">员工邀请记录</button> -->
|
||
</div>
|
||
<!-- 数据列表 -->
|
||
<st #st multiSort bordered [data]="service.$api_listOperationalReportPage" [columns]="columns" [ps]="20"
|
||
[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: [20, 50, 100] }" [loading]="false">
|
||
</st>
|
||
|
||
</nz-card> |