diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-12-09 10:43:27 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-12-09 10:43:37 +0800 |
commit | 4abc9917d8d474b5bd3ba4f570e39e3e594de4b6 (patch) | |
tree | 38f4908dff9e74064c608b39664b93a57a2bcec6 | |
parent | 776d3ae59e486d2152589ebe6c33267b63efc5fc (diff) |
feat: Modify the footer of the check-process component
Change-Id: I8087220bbc845a1a5c5ad149e27d08db78b669a7
Issue-ID: USECASEUI-368
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
-rw-r--r-- | usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/check-process-model/check-process-model.component.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/check-process-model/check-process-model.component.html b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/check-process-model/check-process-model.component.html index ebe1e15b..c5bb47b3 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/check-process-model/check-process-model.component.html +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/check-process-model/check-process-model.component.html @@ -2,8 +2,8 @@ [nzVisible]="showProcess" nzWidth="85%" [nzTitle]="moduleTitle" + [nzFooter]="modalFooter" (nzOnCancel)="handleCancel()" - (nzOnOk)="handleOk()" > <nz-spin [nzSpinning]="isSpinning"> <app-basic-info @@ -28,12 +28,14 @@ <nz-step [nzTitle]="item.currentProgress > 1 ? null : 'in progress'" [nzStatus]="item.status" nzIcon="anticon anticon-spin anticon-loading" - > </nz-step> + > + </nz-step> <nz-step [nzTitle]="item.status === 'finish' ? 'success' : null" [nzStatus]="item.status === 'finish' ? 'finish' : 'wait'" nzIcon='loading' - ></nz-step> + > + </nz-step> </nz-steps> </nz-list-item> @@ -41,3 +43,6 @@ </nz-list> </nz-spin> </nz-modal> +<ng-template #modalFooter> + <button nz-button nzType="primary" (click)="handleOk()">OK</button> + </ng-template> |