summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/intent-management/intent-report-detail/intent-report-detail.component.ts
blob: aa65d9fe6be96fdbfe14994dd384d9f6ca90df1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';

@Component({
  selector: 'app-intent-report-detail',
  templateUrl: './intent-report-detail.component.html',
  styleUrls: ['../intent-management.component.less']
})
export class IntentReportDetailComponent implements OnInit {

  constructor() { }

  @Input() showModel: boolean;
  @Input() reportData;
  @Input() intentInfo;
  @Output() modalOpreation = new EventEmitter();

  ngOnInit() {
  }
  ngOnChanges(){
  }
  handleCancel(): void {
    this.showModel = false;
    this.modalOpreation.emit({ "cancel": false });
  }
}