import { Component } from '@angular/core'; @Component({ selector: 'cm-modal-doc-2', templateUrl: './modal-doc-2.component.html', }) export class ModalDoc2Component { isVisible = false; isConfirmLoading = false; showModal = () => { this.isVisible = true; } handleOk = (e: any) => { this.isConfirmLoading = true; setTimeout(() => { this.isVisible = false; this.isConfirmLoading = false; }, 3000); } handleCancel = (e: any) => { this.isVisible = false; } constructor() {} }