2 [nzVisible]="showProcess"
4 [nzTitle]="moduleTitle"
5 [nzFooter]="modalFooter"
6 (nzOnCancel)="handleCancel()"
8 <nz-spin [nzSpinning]="isSpinning">
10 [checkDetail]="checkDetail"
11 [businessRequirement]="businessRequirement"
15 <nz-list [nzDataSource]="data" nzBordered nzHeader="任务详情:" [nzFooter]="null" [nzRenderItem]="defaultItem" >
16 <ng-template #defaultItem let-item>
17 <nz-list-item nz-row nzType="flex" nzJustify="center" >
20 [nzCurrent]="item.currentProgress"
24 *ngFor="let item of data[0]; let i = index" class="task_progress"
25 [ngStyle]="{paddingBottom: i === data[0].length -1 ? '30px': '0px'}"
27 <nz-step [nzTitle]="item.title"></nz-step>
29 [nzTitle]="item.currentProgress > 1 ? null : 'in progress'"
30 [nzStatus]="item.status" nzIcon="anticon anticon-spin anticon-loading"
34 [nzTitle]="item.status === 'finish' ? 'success' : null"
35 [nzStatus]="item.status === 'finish' ? 'finish' : 'wait'"
46 <ng-template #modalFooter>
47 <button nz-button nzType="primary" (click)="handleOk()">OK</button>