|
|
@ -1,4 +1,4 @@ |
|
|
|
<div class="box" id="statisticsList"> |
|
|
|
<div class="box" id="statisticsList2"> |
|
|
|
<div class="search"> |
|
|
|
<div class="search"> |
|
|
|
<div class="legendbox"> |
|
|
|
<div class="legendbox"> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -29,13 +29,14 @@ |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
<nz-form-item class="btn"> |
|
|
|
<nz-form-item class="btn"> |
|
|
|
<nz-form-control> |
|
|
|
<nz-form-control> |
|
|
|
<button [nzLoading]="isLoading" nz-button type="submit" class="submit"><i nz-icon [nzType]="'search'"></i>查询</button> |
|
|
|
<button [nzLoading]="isLoading" nz-button type="submit" class="submit"><i nz-icon |
|
|
|
|
|
|
|
[nzType]="'search'"></i>查询</button> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
<nz-form-item class="btn"> |
|
|
|
<nz-form-item class="btn"> |
|
|
|
<nz-form-control> |
|
|
|
<nz-form-control> |
|
|
|
<button [nzLoading]="isLoading" nz-button type="button" class="reset" (click)="resetForm($event)"><i nz-icon |
|
|
|
<button [nzLoading]="isLoading" nz-button type="button" class="reset" (click)="resetForm($event)"><i |
|
|
|
[nzType]="'sync'"></i>重置</button> |
|
|
|
nz-icon [nzType]="'sync'"></i>重置</button> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
<nz-form-item class="btn"> |
|
|
|
<nz-form-item class="btn"> |
|
|
@ -47,12 +48,13 @@ |
|
|
|
</form> |
|
|
|
</form> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="tablebox" id="tablebox"> |
|
|
|
<div class="tablebox" id="tablebox"> |
|
|
|
<nz-table [nzLoading]="tableSpin" [nzPageSize]='999' #headerTable [nzData]="list" [nzShowPagination]="false" |
|
|
|
<nz-table [nzLoading]="tableSpin" [nzPageSize]='99999' #headerTable [nzData]="list" [nzShowPagination]="false" |
|
|
|
[nzScroll]="{ y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed"> |
|
|
|
[nzScroll]="{ x: tableScrollWeight,y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed"> |
|
|
|
<thead> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<tr> |
|
|
|
<th style="text-align: center">序号</th> |
|
|
|
<th style="text-align: center" nzLeft="0px" nzWidth="60px">序号</th> |
|
|
|
<th *ngFor="let item of headerTable.data[0]"> |
|
|
|
<th *ngFor="let item of headerTable.data[0];let k = index" |
|
|
|
|
|
|
|
[nzLeft]=" k <=2 ? (k*120 + 60)+'px' : false" [nzWidth]="k <= 2 ? '120px' : '200px'"> |
|
|
|
{{item.name}} |
|
|
|
{{item.name}} |
|
|
|
</th> |
|
|
|
</th> |
|
|
|
|
|
|
|
|
|
|
@ -60,9 +62,9 @@ |
|
|
|
</thead> |
|
|
|
</thead> |
|
|
|
<tbody id="table"> |
|
|
|
<tbody id="table"> |
|
|
|
<tr *ngFor="let item of headerTable.data;let key = index"> |
|
|
|
<tr *ngFor="let item of headerTable.data;let key = index"> |
|
|
|
<td style="text-align: center">{{key + 1}}</td> |
|
|
|
<td style="text-align: center" nzLeft="0px">{{key + 1}}</td> |
|
|
|
|
|
|
|
<td style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;" |
|
|
|
<td *ngFor="let i of item"> |
|
|
|
*ngFor="let i of item;let k = index" [nzLeft]=" k <=2 ? (k*120 +60)+'px' : false"> |
|
|
|
<ng-container *ngIf="i.value; else elseTemplate"> |
|
|
|
<ng-container *ngIf="i.value; else elseTemplate"> |
|
|
|
<ng-container *ngIf="i.value.validityType; else elseTemplate"> |
|
|
|
<ng-container *ngIf="i.value.validityType; else elseTemplate"> |
|
|
|
<span> |
|
|
|
<span> |
|
|
@ -70,7 +72,7 @@ |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</ng-container> |
|
|
|
</ng-container> |
|
|
|
<ng-template #elseTemplate> |
|
|
|
<ng-template #elseTemplate> |
|
|
|
{{i.value}} |
|
|
|
<span [title]="i.value">{{i.value}}</span> |
|
|
|
</ng-template> |
|
|
|
</ng-template> |
|
|
|
</ng-container> |
|
|
|
</ng-container> |
|
|
|
<ng-template #elseTemplate> |
|
|
|
<ng-template #elseTemplate> |
|
|
|