沈斌
2018-07-13 f1f04f429285a8f034da5f278f1892f00a45e14c
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
import { Component, OnInit, OnDestroy } from '@angular/core';
import { NzMessageService } from 'ng-zorro-antd';
import { _HttpClient } from '@delon/theme';
import { HttpClient } from '@angular/common/http';
import * as moment from 'moment';
import { DeviceService } from '@business/services/http/device.service';
 
@Component({
    selector: 'statistics-calender',
    templateUrl: './calendar.component.html',
    styleUrls: ['./calendar.component.less'],
    providers: [DeviceService]
})
export class CalendarComponent implements OnInit, OnDestroy {
 
    data: any = {};
 
    constructor(
        private deviceService: DeviceService,
        private http: _HttpClient,
        public msg: NzMessageService,
        private http2: HttpClient) {
    }
 
    ngOnInit() {
 
    }
 
    ngOnDestroy(): void {
    }
}