| | |
| | | private http2: HttpClient) {} |
| | | |
| | | ngOnInit() { |
| | | this.http.get('/chart').subscribe((res: any) => { |
| | | res.offlineData.forEach((item: any) => { |
| | | item.chart = Object.assign([], res.offlineChartData); |
| | | }); |
| | | this.data = res; |
| | | this.loading = false; |
| | | this.changeSaleType(); |
| | | }); |
| | | // this.http.get('/chart').subscribe((res: any) => { |
| | | // res.offlineData.forEach((item: any) => { |
| | | // item.chart = Object.assign([], res.offlineChartData); |
| | | // }); |
| | | // this.data = res; |
| | | // this.loading = false; |
| | | // this.changeSaleType(); |
| | | // }); |
| | | } |
| | | |
| | | setDate(type: any) { |