|
@@ -18,8 +18,8 @@
|
|
</el-select>
|
|
</el-select>
|
|
<el-date-picker v-model="getdataListParm.parammaps.createDate" type="date" placeholder="日期" style="width:140px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" />
|
|
<el-date-picker v-model="getdataListParm.parammaps.createDate" type="date" placeholder="日期" style="width:140px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" />
|
|
<el-date-picker v-model="getdataListParm.parammaps.inputDatetime" clearable class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;margin-right: 10px;" />
|
|
<el-date-picker v-model="getdataListParm.parammaps.inputDatetime" clearable class="inputDatetime filter-item" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" style="width: 250px;margin-right: 10px;" />
|
|
- <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
|
|
|
|
<div>
|
|
<div>
|
|
|
|
+ <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
|
|
<el-button v-if="isElecAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
|
|
<el-button v-if="isElecAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
|
|
<el-button v-waves class="filter-item" type="info" icon="el-icon-tickets" @click="handleDownloadTemp">模板</el-button>
|
|
<el-button v-waves class="filter-item" type="info" icon="el-icon-tickets" @click="handleDownloadTemp">模板</el-button>
|
|
<el-button v-if="isElecExport" v-waves class="filter-item" type="success" icon="el-icon-download" @click="handleDownload">导出数据</el-button>
|
|
<el-button v-if="isElecExport" v-waves class="filter-item" type="success" icon="el-icon-download" @click="handleDownload">导出数据</el-button>
|
|
@@ -27,6 +27,8 @@
|
|
<el-button v-if="isElecImport" v-waves class="filter-item" type="warning" icon="el-icon-upload2" @click="form_search">导入</el-button>
|
|
<el-button v-if="isElecImport" v-waves class="filter-item" type="warning" icon="el-icon-upload2" @click="form_search">导入</el-button>
|
|
</el-upload>
|
|
</el-upload>
|
|
<el-button class="filter-item" type="danger" icon="el-icon-download" @click="form_delete">删除</el-button>
|
|
<el-button class="filter-item" type="danger" icon="el-icon-download" @click="form_delete">删除</el-button>
|
|
|
|
+ <el-button class="filter-item" icon="el-icon-share" @click="formEchart">折线图</el-button>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -299,13 +301,27 @@
|
|
<el-button @click="dialogFormDelete = false;get_table_data()">关闭</el-button>
|
|
<el-button @click="dialogFormDelete = false;get_table_data()">关闭</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
+
|
|
|
|
+ <!-- 折线图 -->
|
|
|
|
+ <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogECharts" :close-on-click-modal="false" width="80%">
|
|
|
|
+ <div>
|
|
|
|
+ <div id="chart7" style="width: 100%;height:400px;" />
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <!-- <el-button type="primary" :disabled="isokDisable" @click="deleteData()">确认</el-button> -->
|
|
|
|
+ <el-button @click="dialogECharts = false">关闭</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
// 引入
|
|
// 引入
|
|
require('script-loader!file-saver')
|
|
require('script-loader!file-saver')
|
|
-import { GetDataByName, GetDataByNames, PostDataByName, checkButtons, ExecDataByConfig, GetAccount } from '@/api/common'
|
|
|
|
|
|
+import echarts from 'echarts'
|
|
|
|
+import { GetDataByName, GetDataByNames, PostDataByName, checkButtons, ExecDataByConfig, GetAccount,GetReportform } from '@/api/common'
|
|
// import { DownloadExcel, GetDataByNameXlsx } from '@/api/common'
|
|
// import { DownloadExcel, GetDataByNameXlsx } from '@/api/common'
|
|
import waves from '@/directive/waves' // waves directive
|
|
import waves from '@/directive/waves' // waves directive
|
|
// eslint-disable-next-line no-unused-vars
|
|
// eslint-disable-next-line no-unused-vars
|
|
@@ -414,7 +430,8 @@ export default {
|
|
update: '编辑',
|
|
update: '编辑',
|
|
create: '新增',
|
|
create: '新增',
|
|
DosageRecord: '用量记录',
|
|
DosageRecord: '用量记录',
|
|
- delete: '删除'
|
|
|
|
|
|
+ delete: '删除',
|
|
|
|
+ echarts: '每日用电量'
|
|
},
|
|
},
|
|
dialogFormDosageRecord: false,
|
|
dialogFormDosageRecord: false,
|
|
totalDosageRecord: 0,
|
|
totalDosageRecord: 0,
|
|
@@ -462,7 +479,19 @@ export default {
|
|
isPercentage: false,
|
|
isPercentage: false,
|
|
percentage: 1,
|
|
percentage: 1,
|
|
dialogFormDelete: false,
|
|
dialogFormDelete: false,
|
|
- deleteTemp: {}
|
|
|
|
|
|
+ deleteTemp: {},
|
|
|
|
+ dialogECharts: false,
|
|
|
|
+ isChart7: [],
|
|
|
|
+ chart_data7: {},
|
|
|
|
+ getChart7Parm: {
|
|
|
|
+ name: 'getpSumNowWater',
|
|
|
|
+ parammaps: {
|
|
|
|
+ receiveTime: new Date().getFullYear(),
|
|
|
|
+ pastureName: Cookies.get('pasturename'),
|
|
|
|
+ startTime: "",
|
|
|
|
+ endTime:""
|
|
|
|
+ }
|
|
|
|
+ },
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
@@ -498,6 +527,98 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
|
|
+
|
|
|
|
+ // 折线图
|
|
|
|
+ formEchart() {
|
|
|
|
+ this.dialogECharts = true;
|
|
|
|
+ this.dialogStatus = 'echarts'
|
|
|
|
+ this.getChart7();
|
|
|
|
+ },
|
|
|
|
+ // XX月每日用电量
|
|
|
|
+ getChart7() {
|
|
|
|
+ if(this.getdataListParm.parammaps.inputDatetime !== null && this.getdataListParm.parammaps.inputDatetime.length > 0){
|
|
|
|
+ this.getChart7Parm.parammaps.startTime = parseTime(this.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}')
|
|
|
|
+ this.getChart7Parm.parammaps.endTime = parseTime(this.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}')
|
|
|
|
+ this.getChart7Parm.parammaps.date = parseTime(this.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}')
|
|
|
|
+ }else{
|
|
|
|
+ this.getChart7Parm.parammaps.startTime = ''
|
|
|
|
+ this.getChart7Parm.parammaps.endTime = ''
|
|
|
|
+ this.getChart7Parm.parammaps.date = parseTime(new Date(), '{y}-{m}')
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ let data = {
|
|
|
|
+ name:"getPastureSumDayWater",
|
|
|
|
+ parammaps:{
|
|
|
|
+ startTime: this.getChart7Parm.parammaps.startTime || parseTime(new Date(), '{y}-{m}'),
|
|
|
|
+ endTime: this.getChart7Parm.parammaps.endTime || parseTime(new Date(), '{y}-{m}'),
|
|
|
|
+ pastureName: this.getdataListParm.parammaps.pastureName || Cookies.get('pasturename'),
|
|
|
|
+ },
|
|
|
|
+ }
|
|
|
|
+ GetReportform(data).then(response => {
|
|
|
|
+ console.log('XX月每日用电量==>图8', response)
|
|
|
|
+ // this.chart_data7 = response.data.chart_data
|
|
|
|
+ if(response.data){
|
|
|
|
+ this.chart_data7 = {
|
|
|
|
+ data1:response.data.chart_data.nowYear,
|
|
|
|
+ data_name:this.pastureName,
|
|
|
|
+ xdata:response.data.chart_data.day
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ this.chart_data7 = {
|
|
|
|
+ data1:[],
|
|
|
|
+ data_name:[],
|
|
|
|
+ xdata:[]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.roadChart7(this.chart_data7)
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ // XX月每日用电量
|
|
|
|
+ roadChart7(chart_data) {
|
|
|
|
+ console.log(chart_data,'chart_data')
|
|
|
|
+ if (this.chart7 != null) {
|
|
|
|
+ this.chart7.dispose()
|
|
|
|
+ }
|
|
|
|
+ this.chart7 = echarts.init(document.getElementById('chart7'))
|
|
|
|
+ var text = this.getChart7Parm.parammaps.date + '月每日用电量'
|
|
|
|
+ var option = {
|
|
|
|
+ title: { text: text, left:'left',textStyle: { color: '#769cfc' }},
|
|
|
|
+ tooltip: { trigger: 'axis' },
|
|
|
|
+ legend: {
|
|
|
|
+ data: chart_data.data_name,
|
|
|
|
+ left: 40,
|
|
|
|
+ bottom:0
|
|
|
|
+ },
|
|
|
|
+ color: ['#eb123a','#eba612','#124feb','#15ab2e','#b20fdb'],
|
|
|
|
+ grid: { left: '3%', right: '10%', bottom: '4%', containLabel: true },
|
|
|
|
+ xAxis: [{ type: 'category', name: '日',data: chart_data.xdata, axisLabel: { interval: 0, rotate: 30 }}],
|
|
|
|
+ yAxis: [{ type: 'value', name: '电量(度)'}],
|
|
|
|
+ series: (function() {
|
|
|
|
+ var serie = []
|
|
|
|
+ if(chart_data.data1 !== null){
|
|
|
|
+ for (var i = 0; i < chart_data.data1.length; i++) {
|
|
|
|
+ var item = {
|
|
|
|
+ name: chart_data.data_name && chart_data.data_name[i] ||'',
|
|
|
|
+ type: 'line',
|
|
|
|
+ data: chart_data.data1[i]
|
|
|
|
+ }
|
|
|
|
+ serie.push(item)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return serie
|
|
|
|
+ }())
|
|
|
|
+ }
|
|
|
|
+ this.chart7.setOption(option)
|
|
|
|
+ window.onresize = function() {
|
|
|
|
+ this.chart7.resize()
|
|
|
|
+ }
|
|
|
|
+ var that = this
|
|
|
|
+ this.chart7.on('click', function(param, i) {
|
|
|
|
+ // console.log(param)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
tableSort1(column) {
|
|
tableSort1(column) {
|
|
sortChange(column, this.list)
|
|
sortChange(column, this.list)
|
|
},
|
|
},
|