<template>
|
|
<div class="dashboard-editor-container">
|
<el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
|
<el-form-item label="日期" label-width="40px">
|
<el-radio-group v-model="queryParams.timeType">
|
<el-radio style="margin-right: 10px" v-for="dict in dateTypeOptions" :key="dict.dictValue" :label="dict.dictValue" @change="handleTime(dict.dictValue)">{{dict.dictLabel}}</el-radio>
|
</el-radio-group>
|
<el-date-picker
|
v-model="queryParams.beginTime"
|
:type="dateTypes"
|
style="width: 150px"
|
:value-format="valueFormat"
|
placeholder="开始日期">
|
</el-date-picker>
|
到
|
<el-date-picker
|
v-model="queryParams.endTime"
|
:type="dateTypes"
|
style="width: 150px"
|
:value-format="valueFormat"
|
placeholder="结束日期">
|
</el-date-picker>
|
</el-form-item>
|
<el-form-item>
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
|
<el-button type="warning" icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['workforce:rosteringManagement:export']">导出</el-button>
|
</el-form-item>
|
</el-form>
|
<el-row :gutter="32">
|
<el-col :xs="24" :sm="24" :lg="24" >
|
<div class="chart-wrapper">
|
<line-chart ref="lineChart" :chart-data="lineChartData" />
|
</div>
|
</el-col>
|
</el-row>
|
<el-row :gutter="32">
|
<el-col :xs="24" :sm="24" :lg="24" >
|
<div class="chart-wrapper" >
|
<el-button type="warning" icon="el-icon-download" size="mini" style="float: right" @click="handleExport" >导出</el-button>
|
<el-table v-loading="loading" :data="arraylist">
|
<el-table-column prop="dataTime" label="日期" align="center" width="150" show-overflow-tooltip>
|
<template slot-scope="scope">
|
<span>{{ changeTime(parseTime(scope.row.dataTime)) }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column prop="currentValue" label="设备1" align="center"></el-table-column>
|
<el-table-column prop="lastYearValue" label="设备2" align="center"></el-table-column>
|
<el-table-column prop="unitId" label="单位" align="center"></el-table-column>
|
</el-table>
|
</div>
|
</el-col>
|
</el-row>
|
</div>
|
|
|
</template>
|
<script>
|
import {getSettingDevice,getSettingIndex,exportEnergyCurveindex,getEnergyCurveTrend} from "@/api/energyStatistics/statistics";
|
import LineChart from "./lineChart";
|
export default {
|
name: 'curve',
|
components:{LineChart},
|
props: ["modelCode"],
|
data() {
|
return {
|
// 遮罩层
|
loading: true,
|
total: 0,
|
dateTypeOptions:[],
|
// 查询参数
|
queryParams: {
|
pageNum: 1,
|
pageSize: 10,
|
beginTime: undefined,
|
endTime: undefined,
|
dataTime: undefined,
|
timeType:undefined,
|
indexId: undefined,
|
procedure: undefined,
|
},
|
list:[],
|
arraylist:[],
|
lineChartData:{
|
newVisitis:null,
|
},
|
//dateTypes: 'monthrange',//时间范围
|
dateTypes: 'month',
|
valueFormat:'yyyy-MM',
|
title:"",
|
skinName:"",
|
curvename:[]
|
}
|
},
|
watch: {
|
modelCode: {
|
deep: true,
|
handler(val) {
|
this.getList(val)
|
}
|
},
|
},
|
created() {
|
//this.getList();
|
this.getDicts("timeType_device").then(response => {
|
this.dateTypeOptions = response.data;
|
this.queryParams.timeType = this.dateTypeOptions.find(f => f.isDefault === 'Y').dictValue;
|
});
|
this.getConfigKey("energyStatistics.energyStatisticsTrend").then(response => {
|
this.skinName=response.msg;
|
});
|
let endTtime=(new Date().getFullYear()) +'-' +((new Date().getMonth() + 1)>9?(new Date().getMonth() + 1):"0"+(new Date().getMonth() + 1));
|
let starTtime= (new Date().getFullYear()-1)+'-' +((new Date().getMonth() + 1)>9?(new Date().getMonth() + 1):"0"+(new Date().getMonth() + 1));
|
this.queryParams.beginTime=starTtime;
|
this.queryParams.endTime=endTtime;
|
},
|
methods: {
|
modelNodeChange(modelNode) {
|
this.queryParams.id=modelNode.id;
|
let source=[];
|
let xAxis=[];
|
this.loading = true;
|
this.queryParams.indexId=this.queryParams.procedure;
|
if(this.queryParams.timeType=='YEAR'){
|
this.queryParams.beginTime=this.queryParams.beginTime.substring(0, 4)+'-01-01';
|
this.queryParams.endTime=this.queryParams.endTime.substring(0, 4)+'-01-01';
|
}else if(this.queryParams.timeType=='MONTH'){
|
this.queryParams.beginTime=this.queryParams.beginTime.substring(0, 7);
|
this.queryParams.endTime=this.queryParams.endTime.substring(0, 7);
|
}else if(this.queryParams.timeType=='DATE'){
|
this.queryParams.beginTime=this.queryParams.beginTime.substring(0, 10);
|
this.queryParams.endTime=this.queryParams.endTime.substring(0, 10);
|
/* this.queryParams.beginTime=this.formatDate(new Date(this.queryParams.beginTime).getTime()- 72 * 60 * 60 * 1000);
|
this.queryParams.endTime=this.formatDate(new Date(this.queryParams.endTime).getTime()- 72 * 60 * 60 * 1000);*/
|
}
|
//获取模型下的指标
|
getSettingIndex(this.queryParams.id).then(response => {
|
let result = response.data;
|
this.list = result.filter(f => f.indexType === 'STATISTIC');
|
/* this.curvename=result.*/
|
this.loading = false;
|
if (this.list.length > 0) {
|
if (modelNode.title == undefined) {
|
this.queryParams.procedure = this.list[0].indexId;
|
}
|
} else {
|
this.queryParams.procedure = '';
|
this.title = ''
|
}
|
this.queryParams.indexId = this.queryParams.procedure;
|
if (this.queryParams.timeType == 'YEAR') {
|
this.queryParams.beginTime = this.queryParams.beginTime.substring(0, 4) + '-01-01';
|
this.queryParams.endTime = this.queryParams.endTime.substring(0, 4) + '-01-01';
|
} else if (this.queryParams.timeType == 'MONTH') {
|
this.queryParams.beginTime = this.queryParams.beginTime.substring(0, 7);
|
this.queryParams.endTime = this.queryParams.endTime.substring(0, 7);
|
} else if (this.queryParams.timeType == 'DATE') {
|
this.queryParams.beginTime = this.queryParams.beginTime.substring(0, 10);
|
this.queryParams.endTime = this.queryParams.endTime.substring(0, 10);
|
}
|
//获取模型下的设备
|
getSettingDevice(this.queryParams.id).then(response => {
|
let results = response.data;
|
/* console.log(results);*/
|
this.curvename=results.meterName;
|
//能耗指标趋势分析
|
getEnergyCurveTrend(this.queryParams).then(response => {
|
this.arraylist = response.rows;
|
this.total = response.total;
|
let currentValue = [];
|
let lastYearValue = [];
|
for (let i = 0; i < this.arraylist.length; i++) {
|
currentValue.push(this.arraylist[i].currentValue);
|
lastYearValue.push(this.arraylist[i].lastYearValue);
|
if (this.queryParams.timeType == 'DATE') {
|
xAxis.push(this.arraylist[i].dataTime.substring(0, 10))
|
} else if (this.queryParams.timeType == 'MONTH') {
|
xAxis.push(this.arraylist[i].dataTime.substring(0, 7))
|
} else if (this.queryParams.timeType == 'YEAR') {
|
xAxis.push(this.arraylist[i].dataTime.substring(0, 4))
|
}
|
/* if(this.queryParams.timeType=='MONTH') {
|
xAxis.push(this.arraylist[i].dataTime.substring(0, 7))
|
}else if(this.queryParams.timeType=='YEAR'){
|
xAxis.push(this.arraylist[i].dataTime.substring(0, 4))
|
}*/
|
}
|
source.push(currentValue);//本期值(需要)
|
source.push(lastYearValue);//同期值(不需要)
|
let titleName = "";
|
let yAxis = "";
|
let actualData = [];
|
if (this.arraylist > 0) {
|
titleName = this.arraylist[0].indexName + "(" + this.arraylist[0].unitId + ")";
|
yAxis = this.arraylist[0].unitId
|
}
|
this.title = titleName
|
this.lineChartData.newVisitis = source;
|
this.lineChartData.actualData = ['设备1','设备2'];
|
this.lineChartData.xAxis = xAxis;
|
this.lineChartData.title = this.title;
|
this.lineChartData.yAxis = yAxis;
|
this.$refs.lineChart.initChart(this.lineChartData);
|
});
|
});
|
});
|
|
},
|
numFilter(value) {// 截取当前数据到小数点后的几位
|
let realVal = '' ;
|
if (!isNaN(value) && value !== '') {
|
realVal = parseFloat(value).toFixed(this.skinName)
|
} else {
|
realVal = '--'
|
}
|
return realVal
|
},
|
handleTime(date){
|
if(date=='YEAR'){
|
this.dateTypes= 'year',
|
this.valueFormat='yyyy'
|
}else if(date=='MONTH'){
|
//this.dateTypes='monthrange'
|
this.dateTypes= 'month',
|
this.valueFormat='yyyy-MM'
|
}else if(date=='DATE'){
|
//this.dateTypes='monthrange'
|
this.dateTypes= 'date',
|
this.valueFormat='yyyy-MM-dd'
|
}
|
},
|
/** 搜索按钮操作 */
|
handleQuery() {
|
this.queryParams.pageNum = 1;
|
this.queryParams.title=this.title;
|
this.modelNodeChange(this.queryParams);
|
},
|
/** 重置按钮操作 */
|
resetQuery() {
|
this.resetForm("queryForm");
|
this.handleQuery();
|
},
|
/** 导出按钮操作 */
|
handleExport() {
|
const queryParams = this.queryParams;
|
this.$confirm('是否确认导出所有能耗指标趋势分析数据项?', "警告", {
|
confirmButtonText: "确定",
|
cancelButtonText: "取消",
|
type: "warning"
|
}).then(function () {
|
return exportEnergyCurveindex(queryParams);
|
}).then(response => {
|
this.download(response.msg);
|
}).catch(function () {
|
});
|
},
|
changeTime(time) {
|
if (time !== null && time !== undefined && time !== "") {
|
return time.substring(0, 10);
|
} else {
|
return "";
|
}
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.dashboard-editor-container {
|
padding: 32px;
|
background-color: rgb(240, 242, 245);
|
position: relative;
|
.chart-wrapper {
|
background: #fff;
|
padding: 16px 16px 0;
|
margin-bottom: 32px;
|
}
|
}
|
.chart-title{
|
display: block;
|
background: #f2f6fc;
|
height: 30px;
|
line-height: 30px;
|
padding: 0 10px;
|
}
|
@media (max-width:1024px) {
|
.chart-wrapper {
|
padding: 8px;
|
}
|
}
|
</style>
|