1 import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
4 selector: 'app-intent-report-detail',
5 templateUrl: './intent-report-detail.component.html',
6 styleUrls: ['../intent-management.component.less']
8 export class IntentReportDetailComponent implements OnInit {
12 @Input() showModel: boolean;
15 @Output() modalOpreation = new EventEmitter();
21 handleCancel(): void {
22 this.showModel = false;
23 this.modalOpreation.emit({ "cancel": false });