| | |
| | | e16: 6 |
| | | }; |
| | | public tableWidth = 2800; |
| | | private tableWidthOption = { |
| | | 'MONTH': 1400, |
| | | 'DAY': 2800, |
| | | 'HOUR': 2100, |
| | | 'MINUTE': 5000 |
| | | }; |
| | | // private tableWidthOption = { |
| | | // 'MONTH': 1400, |
| | | // 'DAY': 2800, |
| | | // 'HOUR': 2100, |
| | | // 'MINUTE': 5000 |
| | | // }; |
| | | public expandForm: boolean; // 搜索区 展开控制 |
| | | // public sensors: any[] = []; |
| | | public sensorOptions: any[] = []; |
| | |
| | | public grid: Grid<{sensor: Sensor, data: string [], weight?: number}> = new Grid(); |
| | | // public grid.data: {sensor: Sensor, data: string [], weight?: number} [] = []; |
| | | // 样式控制,设备名称列冻结偏移 |
| | | public sensorNameScrollLeft = '0px'; |
| | | public sensorNameScrollLeft = 0; |
| | | @ViewChild(NzTreeComponent) private tree: NzTreeComponent; |
| | | private _timeType: {showTime: boolean|{[key: string]: Function|boolean}, mode: 'month' | 'day', dateFormat: string } = {showTime: false, mode: 'day', dateFormat: 'YYYY年MM月DD日'}; |
| | | // 用key-value方式,暂存监测项目 |
| | |
| | | return ; |
| | | } |
| | | this.grid.loading = true; |
| | | this.sensorNameScrollLeft = '0px'; |
| | | this.sensorNameScrollLeft = 0; |
| | | this.grid.data = []; |
| | | const start: Date = this.getPeriodDate(this.actualTime , 'start'); |
| | | const end: Date = this.getPeriodDate(this.actualTime , 'end'); |
| | | this.dataCondition['actualTime'] = null; |
| | | this.dataCondition['timeUnits'] = this.timeUnit.value; |
| | | // 设置表格宽度,要在此处 |
| | | this.tableWidth = this.tableWidthOption[this.timeUnit.value]; |
| | | // 设置区域值 |
| | | const mptValue: number = !!this._monitorPoint ? this._monitorPoint.id : null; |
| | | const devValue: number = !!this._device ? this._device.id : null; |
| | |
| | | return {text: item}; |
| | | } |
| | | ); break; |
| | | } |
| | | } |
| | | // 设置表格宽度,要在此处 |
| | | this.tableWidth = this.grid.columns.length * 80 + 160; |
| | | this.reloadChart(); |
| | | // 清空数据 |
| | | this.grid.data = []; |
| | | this.http.post(environment.SERVER_BASH_URL + '/report/line-chart', lineChartCriteria).subscribe( |
| | | (res: ResultBean<{[key: string]: Array<Array<PairData>>}>) => { |
| | | if (res.code === 1) { |
| | |
| | | // pair.value 为null,权重后移 |
| | | weight = !!pair.value ? weight : weight + 1; |
| | | } |
| | | return !!pair.value ? String(Math.round(pair.value)) : '-'; |
| | | // 四舍五入,保留2位 |
| | | return !!pair.value ? String(Math.round(pair.value * 100) / 100) : '-'; |
| | | } |
| | | ); |
| | | this.grid.data.push({sensor: sensor, data: sensorData, weight: weight}); |
| | |
| | | ); |
| | | $('.ant-table-body').scroll( |
| | | () => { |
| | | this.sensorNameScrollLeft = $('.ant-table-body').scrollLeft() + 'px'; |
| | | this.sensorNameScrollLeft = $('.ant-table-body').scrollLeft(); |
| | | } |
| | | ); |
| | | } |
| | |
| | | } |
| | | return mo.toDate(); |
| | | } |
| | | |
| | | public sensorTableFocusIndex = -1; |
| | | public sensorTableFocus(index) { |
| | | this.sensorTableFocusIndex = index; |
| | | } |
| | | public sensorTableBlur(index) { |
| | | this.sensorTableFocusIndex = -1; |
| | | } |
| | | } |
| | | |
| | | |