25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
<page-header-wrapper [title]="params.title">
|
|
</page-header-wrapper>
|
|
|
|
<nz-card class="search-box">
|
|
<div nz-row nzGutter="8">
|
|
<div nz-col [nzSpan]="6">
|
|
<sf #sf [schema]="searchSchema" [ui]="{ '*': { spanLabelFixed: 90,grid: { span: 24 } }}" [compact]="true"
|
|
[button]="'none'"></sf>
|
|
</div>
|
|
<div nz-col [nzSpan]="8" nzOffset="1">
|
|
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)" acl [acl-ability]="['SYSTEM-ROLE-list']">查询</button>
|
|
<button nz-button (click)="resetSF()">重置</button>
|
|
</div>
|
|
</div>
|
|
</nz-card>
|
|
|
|
<nz-card>
|
|
<div class="d-flex justify-content-end mb-sm">
|
|
<div>
|
|
<button nz-button nzType="primary" (click)="roleAction()" acl [acl-ability]="['SYSTEM-ROLE-add']">新建角色</button>
|
|
</div>
|
|
</div>
|
|
<st #st [data]="params.listUrl" [columns]="columns" [req]="{ process: beforeReq }" [loading]="false" [page]="{}"
|
|
[scroll]="{ y: '370px' }"></st>
|
|
</nz-card> |