|  |  | 
 |  |  |                </div> | 
 |  |  |                <div nz-form-control class="flex-1"> | 
 |  |  |                   <nz-select [(ngModel)]="query.isDelete" name="isDelete" [nzSize]="'large'"> | 
 |  |  |                      <nz-option *ngFor="let option of options" [nzLabel]="option.label" [nzValue]="option.value" ></nz-option> | 
 |  |  |                      <nz-option *ngFor="let option of isDeleteOptions" [nzLabel]="option.label" [nzValue]="option.value" ></nz-option> | 
 |  |  |                      </nz-select> | 
 |  |  |                </div> | 
 |  |  |             </div> | 
 |  |  | 
 |  |  |  | 
 |  |  |    <nz-table   #nzTable | 
 |  |  |             [nzAjaxData]="data" | 
 |  |  |             [nzLoading]="http.loading" | 
 |  |  |             [nzLoading]="loading" | 
 |  |  |             [nzTotal]="total" | 
 |  |  |             [(nzPageIndex)]="query.pageIndex" | 
 |  |  |             [nzPageSize]="query.pageSize" | 
 |  |  | 
 |  |  |             <td nz-td>{{account.email}}</td> | 
 |  |  |             <td nz-td>{{account.weixin}}</td> | 
 |  |  |             <!-- <td nz-td>{{account.password}}</td> --> | 
 |  |  |             <td nz-td>{{account.organizationId}}</td> | 
 |  |  |             <td nz-td>{{account.organization?account.organization.name:account.organizationId}}</td> | 
 |  |  |             <td nz-td>{{format_date(account.createTime)}}</td> | 
 |  |  |             <td nz-td>{{format_date(account.expireTime)}}</td> | 
 |  |  |             <td nz-td> | 
 |  |  |                <a (click)="edit(account)">编辑</a> | 
 |  |  |                <ng-container *ngIf="account.isDelete == '0'"> | 
 |  |  |                   <span nz-table-divider></span> | 
 |  |  |                   <nz-popconfirm  [nzTitle]="'确定要删除该数据吗?'" [nzOkText]="'Yes'" [nzCancelText]="'No'" (nzOnConfirm)="remove(account.id)" > | 
 |  |  |                   <nz-popconfirm  [nzTitle]="'确定要删除该数据吗?'" [nzOkText]="'Yes'" [nzCancelText]="'No'" (nzOnConfirm)="delete(account.id)" > | 
 |  |  |                      <a nz-popconfirm>删除</a> | 
 |  |  |                   </nz-popconfirm> | 
 |  |  |                </ng-container> |