35 lines
1.5 KiB
HTML
35 lines
1.5 KiB
HTML
<!--
|
|
* @Author: your name
|
|
* @Date: 2022-01-04 14:44:59
|
|
* @LastEditTime: 2022-01-04 15:00:42
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
* @FilePath: \tms-obc-web\src\app\routes\sys-setting\components\system-waybill-logs\system-waybill-logs.component.html
|
|
-->
|
|
<page-header-wrapper title="订单操作日志"> </page-header-wrapper>
|
|
|
|
<nz-card class="search-box">
|
|
<div nz-row nzGutter="8">
|
|
<div nz-col [nzSpan]="_$expand ? 24 : 18">
|
|
<sf #sf [schema]="searchSchema" [ui]="{ '*': { spanLabelFixed: 90, grid: { span: 8 } } }" [compact]="true" [button]="'none'"></sf>
|
|
</div>
|
|
<div nz-col [nzSpan]="6" [nzOffset]="_$expand ? 18 : 0" [class.expend-options]="_$expand" class="text-right">
|
|
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)" acl [acl-ability]="['LOGS-USER-LOGS-list']">查询</button>
|
|
<button nz-button (click)="resetSF()">重置</button>
|
|
</div>
|
|
</div>
|
|
</nz-card>
|
|
|
|
<nz-card class="content-box">
|
|
<st
|
|
#st
|
|
[data]="service.$api_get_systemt_logs"
|
|
[columns]="columns"
|
|
[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]="service.http.loading"
|
|
[scroll]="{ y: '370px' }"
|
|
></st>
|
|
</nz-card>
|