71 lines
2.4 KiB
HTML
71 lines
2.4 KiB
HTML
<!--
|
||
* @Description :
|
||
* @Version : 1.0
|
||
* @Author : Shiming
|
||
* @Date : 2022-02-24 20:09:49
|
||
* @LastEditors : Shiming
|
||
* @LastEditTime : 2022-04-27 10:17:31
|
||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\rebate-management\\components\\particulars\\particulars.component.html
|
||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||
-->
|
||
<page-header-wrapper [title]="''"> </page-header-wrapper>
|
||
<nz-card>
|
||
<div nz-row nzGutter="8">
|
||
<!-- 查询字段小于或等于3个时,不显示伸缩按钮 -->
|
||
<div nz-col nzSpan="24" *ngIf="queryFieldCount <= 4">
|
||
<sf
|
||
#sf
|
||
[schema]="schema"
|
||
[ui]="ui"
|
||
[mode]="'search'"
|
||
[disabled]="!sf?.valid"
|
||
[loading]="service.http.loading"
|
||
(formSubmit)="st?.load(1)"
|
||
(formReset)="resetSF()"
|
||
></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">
|
||
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1);">查询</button>
|
||
<button nz-button nzType="primary" [disabled]="service.http.loading" >导出</button>
|
||
<button nz-button [disabled]="service.http.loading" (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 class="table-box">
|
||
<div class="tab_header">
|
||
<nz-tabset (nzSelectedIndexChange)="selectChange($event)" >
|
||
<nz-tab [nzTitle]="'付款单'"></nz-tab>
|
||
<nz-tab [nzTitle]="'退款单'"></nz-tab>
|
||
</nz-tabset>
|
||
</div>
|
||
<!-- 数据列表 -->
|
||
<div>
|
||
|
||
<st
|
||
#st
|
||
[bordered]="true"
|
||
[data]="data"
|
||
[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] }"
|
||
[loadingDelay]="500"
|
||
[loading]="service.http.loading"
|
||
>
|
||
</st>
|
||
</div>
|
||
|
||
</nz-card>
|