|  |  |  | 
|---|
|  |  |  | <div class="mb-md"> | 
|---|
|  |  |  | <nz-alert [nzType]="'info'" [nzShowIcon]="true"> | 
|---|
|  |  |  | <span alert-body> | 
|---|
|  |  |  | 已选择 <strong class="text-primary">{{selectedRows.length}}</strong> 项   | 
|---|
|  |  |  | 服务调用总计 <strong>{{totalCallNo}}</strong> 万 | 
|---|
|  |  |  | <a *ngIf="totalCallNo > 0" (click)="clear()" class="ml-lg">清空</a> | 
|---|
|  |  |  | 已选择 <strong class="text-primary">{{selectedRows.length}}</strong> 项 | 
|---|
|  |  |  | </span> | 
|---|
|  |  |  | </nz-alert> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | 
|---|
|  |  |  | <tbody nz-tbody> | 
|---|
|  |  |  | <tr nz-tbody-tr *ngFor="let i of nzTable.data"> | 
|---|
|  |  |  | <td nz-td [nzCheckbox]="true"> | 
|---|
|  |  |  | <label nz-checkbox [nzDisabled]="i.disabled" [(ngModel)]="i.checked" (ngModelChange)="refreshStatus($event)"> | 
|---|
|  |  |  | <label nz-checkbox [(ngModel)]="i.checked" (ngModelChange)="refreshStatus($event)"> | 
|---|
|  |  |  | </label> | 
|---|
|  |  |  | </td> | 
|---|
|  |  |  | <td nz-td>{{i.name}}</td> | 
|---|