18 lines
964 B
HTML
18 lines
964 B
HTML
<nz-drawer [nzBodyStyle]="{ overflow: 'auto' }" [nzMaskClosable]="false" [nzWidth]="640" [nzVisible]="service.visible"
|
|
[nzMaskClosable]="true" nzTitle="筛选" [nzFooter]="footerTpl" (nzOnClose)="destroy()">
|
|
<div *nzDrawerContent>
|
|
<sf *ngIf="schema" #sf [schema]="schema" [ui]="ui" [compact]="true" [button]="'none'" [formData]="defaultValue"
|
|
layout="vertical">
|
|
</sf>
|
|
</div>
|
|
<ng-template #footerTpl>
|
|
<div style="display: flex;justify-content: space-between;">
|
|
<button nz-button (click)="destroy()">取消</button>
|
|
<div>
|
|
<button nz-button nzType="primary" (click)="search()" [nzLoading]="http.loading"><i nz-icon
|
|
nzType="search" nzTheme="outline"></i>查询</button>
|
|
<button nz-button (click)="resetSF()"><i nz-icon nzType="redo" nzTheme="outline"></i>重置</button>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
</nz-drawer> |