From 7f762717c4580a17377a33cf04351fa3abaea61d Mon Sep 17 00:00:00 2001
From: fengxiang <110431245@qq.com>
Date: Fri, 23 Mar 2018 15:25:18 +0800
Subject: [PATCH] Merge branch 'develop' of http://blit.7drlb.com:8888/r/screen-frontend into develop
---
src/app/routes/reports/demo/demo.component.ts | 134 ++++++++++++++++++++++++++------------------
1 files changed, 78 insertions(+), 56 deletions(-)
diff --git a/src/app/routes/reports/demo/demo.component.ts b/src/app/routes/reports/demo/demo.component.ts
index 5060607..990a166 100644
--- a/src/app/routes/reports/demo/demo.component.ts
+++ b/src/app/routes/reports/demo/demo.component.ts
@@ -12,32 +12,41 @@
})
export class DemoComponent implements OnInit {
- [x: string]: any;
- query: any = {
- };
- time: any = {
- format: 'YYYY',
- mode: 'month'
- };
- items = [{
- id: 0,
- monitorPoint: null,
- mac: '',
- time: null,
- formatTime: null
- }];
-
- public sensorOptions = [];
- public monitorPointOptions = [];
- public deviceOptions = [];
-
constructor(
public http: HttpClient,
public dateSrv: DateService,
public router: Router,
public msgSrv: NzMessageService
) {
+ this.query.timeType = this.typeOptions[1];
+ this.time.format = this.query.timeType.format.toUpperCase();
+ this.query.reportType = this.reportOptions[1].value;
}
+ [x: string]: any;
+ public query: any = {};
+ public sensorOptions = [];
+ public typeOptions = [
+ {value: 'year', label: '���', format: 'yyyy', typeFormat: '%Y-%m', timeLength: 12},
+ {value: 'month', label: '���', format: 'yyyy-MM', typeFormat: '%Y-%m-%d', timeLength: 28},
+ {value: 'day', label: '���', format: 'yyyy-MM-dd', typeFormat: '%Y-%m-%d %H', timeLength: 24},
+ {value: 'hour', label: '���', format: 'yyyy-MM-dd HH', typeFormat: '%Y-%m-%d %H:%i', timeLength: 60}
+ ];
+ public reportOptions = [
+ {value: 'bar', label: '���������'},
+ {value: 'line', label: '���������'}
+ ];
+ public monitorPointOptions = [];
+ public time: any = {};
+ public items = [{
+ id: 0,
+ monitorPoint: null,
+ monitorPointName: '',
+ monitorPointAddress: '',
+ mac: '',
+ deviceName: '',
+ time: null,
+ deviceOptions: []
+ }];
ngOnInit() {
this.http.get(environment.SERVER_BASH_URL + 'sensor/all').subscribe((res: any) => {
@@ -49,17 +58,27 @@
});
}
- 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: '',
- time: null,
- formatTime: null
+ typeChange(searchText) {
+ this.typeOptions.forEach(types => {
+ if (types === searchText) {
+ 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,
+ monitorPointName: '',
+ monitorPointAddress: '',
+ mac: '',
+ deviceName: '',
+ time: null,
+ deviceOptions: []
+ });
+ }
searchChange(searchText, i) {
if (searchText) {
@@ -77,30 +96,33 @@
}
monitorPointChange(value, i) {
- this.deviceOptions = [];
+ this.items[i].deviceOptions = [];
if (value) {
this.monitorPointOptions.forEach(monitorPoint => {
if (monitorPoint.id === value) {
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) => {
if (res.code === 0) {
this.msgSrv.error(res.message);
} else {
- this.deviceOptions = res.data;
+ this.items[i].deviceOptions = res.data;
+ this.items[i].mac = null;
}
});
} else {
this.items[i].monitorPoint = null;
- this.items[i].mac = '';
+ this.items[i].mac = null;
this.items[i].monitorPointName = '';
+ this.items[i].monitorPointAddress = '';
}
}
deviceChange(value, i) {
if (value) {
- this.deviceOptions.forEach(device => {
+ this.items[i].deviceOptions.forEach(device => {
if (device.mac === value) {
this.items[i].deviceName = device.name;
}
@@ -110,48 +132,48 @@
}
}
- public typeOptions = [
- {value: 'year', label: '���', mode: 'month', xAxisName: '���', format: 'yyyy', typeFormat: '%Y-%m', timeLength: 12},
- {value: 'month', label: '���', mode: 'month', xAxisName: '���', format: 'yyyy-MM', typeFormat: '%Y-%m-%d', timeLength: 28},
- {value: 'day', label: '���', mode: 'day', xAxisName: '���', format: 'yyyy-MM-dd', typeFormat: '%Y-%m-%d %H', timeLength: 24},
- {value: 'hour', label: '���', mode: 'day', xAxisName: '���', format: 'yyyy-MM-dd HH', typeFormat: '%Y-%m-%d %H:%i', timeLength: 60}
- ];
-
-
- 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;
let validate = true;
+ const queryItems = [];
for (let i = 0; i < this.items.length; i++) {
let item = this.items[i];
+ let queryItem: any = {};
if (item.monitorPoint && item.time) {
- item.formatTime = this.dateSrv.date_format(item.time, this.time.format);
+ queryItem.formatTime = this.dateSrv.date_format(item.time, this.time.format);
+ for (var key in item) {
+ if (item[key]) {
+ queryItem[key] = item[key];
+ }
+ }
+ queryItem.deviceCount = queryItem.deviceOptions.length;
+ delete queryItem.deviceOptions;
+ delete queryItem.time;
+ queryItems.push(queryItem);
} else {
validate = false;
break;
}
}
- if (validate && query.type) {
- query.format = this.timeType.format;
- query.typeFormat = this.timeType.typeFormat;
- query.xAxisName = this.timeType.xAxisName;
- query.label = this.timeType.label;
- query.timeLength = this.timeType.timeLength;
- query.items = JSON.stringify(this.items);
+ if (validate && query.timeType && 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.items = JSON.stringify(queryItems);
+ query.timeTypes = JSON.stringify(query.timeType);
this.router.navigate(['report'], {queryParams: query});
} else {
this.msgSrv.error('���������������������������������������');
}
}
-
}
--
Gitblit v1.8.0