|
|
|
@ -13,6 +13,7 @@ |
|
|
|
|
<nz-select nzShowSearch nzAllowClear formControlName="type"> |
|
|
|
|
<nz-option nzLabel="四川中石油" [nzValue]=1></nz-option> |
|
|
|
|
<nz-option nzLabel="贵州中石油" [nzValue]=2></nz-option> |
|
|
|
|
<nz-option nzLabel="中油优途卡券" [nzValue]=4></nz-option> |
|
|
|
|
</nz-select> |
|
|
|
|
</nz-form-control> |
|
|
|
|
</nz-form-item> |
|
|
|
@ -32,14 +33,14 @@ |
|
|
|
|
<span>共计 {{total}} 条数据</span> |
|
|
|
|
<nz-table #basicTable [nzData]="requestData"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th>编码</th> |
|
|
|
|
<th>名称</th> |
|
|
|
|
<th>面额</th> |
|
|
|
|
<th>库存</th> |
|
|
|
|
<th>类型</th> |
|
|
|
|
<th>有效天数</th> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<th>编码</th> |
|
|
|
|
<th>名称</th> |
|
|
|
|
<th>面额</th> |
|
|
|
|
<th>库存</th> |
|
|
|
|
<th>类型</th> |
|
|
|
|
<th>有效天数</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr *ngFor="let data of basicTable.data"> |
|
|
|
@ -49,8 +50,6 @@ |
|
|
|
|
<td>{{ data.qty}}</td> |
|
|
|
|
<td>{{ data.bizType | scPrinter}}</td> |
|
|
|
|
<td>{{ data.validDate}}</td> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr> |
|
|
|
|
</tbody> |
|
|
|
|
</nz-table> |
|
|
|
|