xufenglei
2018-08-02 e97df5aa8edc8e2737d5cb0dab4314871cd3bf71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Component, OnInit } from '@angular/core';
import { _HttpClient } from '@delon/theme';
 
@Component({
  selector: 'app-statistical-query',
  templateUrl: './statistical-query.component.html',
})
export class StatisticalQueryComponent implements OnInit {
 
    constructor(
        private http: _HttpClient
    ) { }
 
    ngOnInit() {
    }
 
}