summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/report.component.ts
blob: f0c50eacff6032311e958da6059e157c2538d600 (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
26
27
28
29
30
31
32
33
34
35
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { ActivatedRoute, Router } from '@angular/router';

@Component({
  selector: 'app-root',
  templateUrl: './report.component.html',
  styleUrls: ['./report.component.css']
})
export class ReportComponent implements OnInit{
  
  finalGETObj : {};
  finalGETObjRowsArr : [][];
  rowArr : {}[];
  reportIdArr : string[];
  toggle : boolean;

  constructor(private _http : HttpClient, private _router : Router)
  {
      this.finalGETObj = new Object();
      this.finalGETObjRowsArr = new Array();
      this.rowArr = new Array();
      this.reportIdArr = new Array();
      this.toggle = false;
  }

  ngOnInit(): void {

    
  }



  title = 'TitleProject';
}