From d6836305986df618fc6be6a46305b75b6b1dddf3 Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Wed, 21 Mar 2018 10:13:54 +0800 Subject: [PATCH] 报表优化 --- src/app/routes/reports/demo/demo.component.ts | 154 +++++++++++++++++++++++++++------------------------ 1 files changed, 82 insertions(+), 72 deletions(-) diff --git a/src/app/routes/reports/demo/demo.component.ts b/src/app/routes/reports/demo/demo.component.ts index 1fcaee6..54f635f 100644 --- a/src/app/routes/reports/demo/demo.component.ts +++ b/src/app/routes/reports/demo/demo.component.ts @@ -4,8 +4,6 @@ import {Component, OnInit} from '@angular/core'; import {HttpClient} from '@angular/common/http'; import {Router} from '@angular/router'; -import * as $ from 'jquery' - @Component({ selector: 'app-demo', @@ -14,32 +12,45 @@ }) export class DemoComponent implements OnInit { - [x: string]: any; - query: any = { - }; - time: any = { - format: 'YYYY', - mode: 'month' - }; - items = [{ - id: 0, - monitorPoint: null, - mac: null, - time: null, - formatTime: null - }]; - - public sensorOptions = []; - public monitorPointOptions = []; - public deviceOptions = []; - constructor( public http: HttpClient, public dateSrv: DateService, public router: Router, public msgSrv: NzMessageService ) { + const timeType = this.timeType = this.typeOptions[1]; + this.query.type = timeType.value; + this.time.format = timeType.format.toUpperCase(); + this.query.reportType = this.reportOptions[1].value; } + [x: string]: any; + public query: any = {}; + public sensorOptions = []; + public typeOptions = [ + {value: 'year', label: '���', xAxisName: '���', format: 'yyyy', typeFormat: '%Y-%m', timeLength: 12}, + {value: 'month', label: '���', xAxisName: '���', format: 'yyyy-MM', typeFormat: '%Y-%m-%d', timeLength: 28}, + {value: 'day', label: '���', xAxisName: '���', format: 'yyyy-MM-dd', typeFormat: '%Y-%m-%d %H', timeLength: 24}, + {value: 'hour', label: '���', xAxisName: '���', format: 'yyyy-MM-dd HH', typeFormat: '%Y-%m-%d %H:%i', timeLength: 60} + ]; + public reportOptions = [ + {value: 'bar', label: '���������'}, + {value: 'line', label: '���������'} + ]; + public monitorPointOptions = []; + public deviceOptions = []; + public time: any = {}; + public timeType: any = {}; + public items = [{ + id: 0, + monitorPoint: null, + mac: '', + time: null, + formatTime: null, + monitorPointName: '', + deviceName: '', + monitorPointAddress: '', + deviceCount: '' + }]; ngOnInit() { this.http.get(environment.SERVER_BASH_URL + 'sensor/all').subscribe((res: any) => { @@ -51,17 +62,29 @@ }); } - addItem() { - const id = (this.items.length > 0) ? this.items[this.items.length - 1].id + 1 : 0; - const index = this.items.push({ - id, - monitorPoint: null, - mac: null, - time: null, - formatTime: null + typeChange(searchText) { + this.typeOptions.forEach(types => { + if (types.value === searchText) { + this.timeType = types; + this.time.format = types.format.toUpperCase(); + } }); } + addItem() { + const id = (this.items.length > 0) ? this.items[this.items.length - 1].id + 1 : 0; + const index = this.items.push({ + id: id, + monitorPoint: null, + mac: '', + time: null, + formatTime: null, + monitorPointName: '', + deviceName: '', + monitorPointAddress: '', + deviceCount: '' + }); + } searchChange(searchText, i) { if (searchText) { @@ -83,7 +106,8 @@ if (value) { this.monitorPointOptions.forEach(monitorPoint => { if (monitorPoint.id === value) { - this.monitorPoint = monitorPoint; + this.items[i].monitorPointName = monitorPoint.name; + this.items[i].monitorPointAddress = monitorPoint.address; } }); this.http.get(environment.SERVER_BASH_URL + 'device/monitorPointId', {params: {monitorPointId: value}}).subscribe((res: any) => { @@ -91,58 +115,54 @@ this.msgSrv.error(res.message); } else { this.deviceOptions = res.data; + this.items[i].deviceCount = res.data.length; } }); } else { this.items[i].monitorPoint = null; - this.items[i].mac = null; + this.items[i].mac = ''; + this.items[i].monitorPointName = ''; } } deviceChange(value, i) { - this.device = null; if (value) { this.deviceOptions.forEach(device => { if (device.mac === value) { - this.device = device; + this.items[i].deviceName = device.name; } }); + } else { + this.items[i].deviceName = ''; } } - public typeOptions = [ - {value: 'year', label: '���', mode: 'month', xAxisName: '���', format: 'yyyy', typeFormat: '%Y-%m'}, - {value: 'month', label: '���', mode: 'month', xAxisName: '���', format: 'yyyy-MM', typeFormat: '%Y-%m-%d'}, - {value: 'day', label: '���', mode: 'day', xAxisName: '���', format: 'yyyy-MM-dd', typeFormat: '%Y-%m-%d %H'}, - {value: 'hour', label: '���', mode: 'day', xAxisName: '���', format: 'yyyy-MM-dd HH', typeFormat: '%Y-%m-%d %H:%i'} - ]; - - - typeChange(searchText) { - this.typeOptions.forEach(types => { - if (types.value === searchText) { - this.timeType = types; - this.time.format = types.format.toUpperCase(); - this.time.mode = types.mode; - } - }); + _disabledDate(current: Date): boolean { + return current && current.getTime() > Date.now(); } reportQuery() { const query = this.query; - if (query.type) { - this.items.forEach(item => { - if (item.monitorPoint && item.time) { - item.formatTime = this.dateSrv.date_format(item.time, this.time.format); - } else { - this.msgSrv.error('���������������������������������������'); - return; - } - }); - query.format = this.timeType.format; - query.typeFormat = this.timeType.typeFormat; - query.xAxisName = this.timeType.xAxisName; - query.label = this.timeType.label; + let validate = true; + for (let i = 0; i < this.items.length; i++) { + let item = this.items[i]; + if (item.monitorPoint && item.time) { + item.formatTime = this.dateSrv.date_format(item.time, this.time.format); + } else { + validate = false; + break; + } + } + if (validate && query.type && query.reportType) { + query.sensors = null; + if (query.sensorKey && query.sensorKey.length > 0) { + const sensors = []; + query.sensorKey.forEach(sensor => { + sensors.push(sensor.sensorKey + '-' + sensor.name + '-' + sensor.unit); + }); + query.sensors = JSON.stringify(sensors); + } + query.timeType = JSON.stringify(this.timeType); query.items = JSON.stringify(this.items); this.router.navigate(['report'], {queryParams: query}); } else { @@ -150,14 +170,4 @@ } } - - sensorChange(value) { - this.sensor = {}; - this.sensorOptions.forEach(sensor => { - if (sensor.sensorKey === value) { - this.sensor = sensor; - } - }); - } - } -- Gitblit v1.8.0