|
@@ -0,0 +1,197 @@
|
|
|
|
+<!--
|
|
|
|
+ - Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
|
|
+ -
|
|
|
|
+ - Redistribution and use in source and binary forms, with or without
|
|
|
|
+ - modification, are permitted provided that the following conditions are met:
|
|
|
|
+ -
|
|
|
|
+ - Redistributions of source code must retain the above copyright notice,
|
|
|
|
+ - this list of conditions and the following disclaimer.
|
|
|
|
+ - Redistributions in binary form must reproduce the above copyright
|
|
|
|
+ - notice, this list of conditions and the following disclaimer in the
|
|
|
|
+ - documentation and/or other materials provided with the distribution.
|
|
|
|
+ - Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
|
+ - contributors may be used to endorse or promote products derived from
|
|
|
|
+ - this software without specific prior written permission.
|
|
|
|
+ - Author: lengleng (wangiegie@gmail.com)
|
|
|
|
+ -->
|
|
|
|
+<template>
|
|
|
|
+ <div class="execution">
|
|
|
|
+ <div style="display: inline-block">
|
|
|
|
+ <div class="startTime" style="display: inline-block">
|
|
|
|
+ <span class="timeText" style="font-weight: bold;font-size: 14px"> 起始时间:</span>
|
|
|
|
+ <el-date-picker
|
|
|
|
+ v-model="startTime"
|
|
|
|
+ :clearable="false"
|
|
|
|
+ type="datetime"
|
|
|
|
+ value-format="timestamp"
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="endTime" style="display: inline-block">
|
|
|
|
+ <span class="timeText" style="font-weight: bold;font-size: 14px"> 截止时间:</span>
|
|
|
|
+ <el-date-picker
|
|
|
|
+ v-model="endTime"
|
|
|
|
+ :clearable="false"
|
|
|
|
+ type="datetime"
|
|
|
|
+ value-format="timestamp"
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </div>
|
|
|
|
+ <span style="font-weight: bold;font-size: 14px"> 场站名称:</span>
|
|
|
|
+ <el-select style="width:250px" v-model="stationCode" @change="getAllInverterInfo" size="small">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in stationList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ <span style="float: left">{{ item.label }}</span>
|
|
|
|
+ <span style="float: right; color: #8492a6;font-size: 13px">{{ item.value }}</span>
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+
|
|
|
|
+ <span style="font-weight: bold;font-size: 14px"> 所属设备:</span>
|
|
|
|
+ <el-select style="width:250px" v-model="equipmentId" filterable size="small">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in inverterInfoList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ <span style="float: left">{{ item.label }}</span>
|
|
|
|
+ <span style="float: right; color: #8492a6;font-size: 13px">{{ item.value }}</span>
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+
|
|
|
|
+ <div class="timeQuery" style="display: inline-block">
|
|
|
|
+ <el-button size="small" :loading="loading" @click="dateQuery">查询</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <basic-container>
|
|
|
|
+ <avue-crud ref="crud"
|
|
|
|
+ :page.sync="page"
|
|
|
|
+ :data="tableData"
|
|
|
|
+ :table-loading="tableLoading"
|
|
|
|
+ :option="tableOption"
|
|
|
|
+ @on-load="getGridOnloadData">
|
|
|
|
+ </avue-crud>
|
|
|
|
+ </basic-container>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+export default {
|
|
|
|
+ name: 'inverterstatusdata',
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ startTime: new Date(new Date().toLocaleDateString()).getTime(),
|
|
|
|
+ endTime: new Date(new Date().toLocaleDateString()).getTime() + 60 * 60 * 24 * 1000 - 1,
|
|
|
|
+ stationList: [],
|
|
|
|
+ stationCode: [],
|
|
|
|
+ loading: false,
|
|
|
|
+ inverterInfoList: [],
|
|
|
|
+ equipmentId: '',
|
|
|
|
+ searchForm: {},
|
|
|
|
+ tableData: [],
|
|
|
|
+ page: {
|
|
|
|
+ total: 0, // 总页数
|
|
|
|
+ currentPage: 1, // 当前页数
|
|
|
|
+ pageSize: 20 // 每页显示多少条
|
|
|
|
+ },
|
|
|
|
+ tableLoading: false,
|
|
|
|
+ tableOption: tableOption
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapGetters(['permissions']),
|
|
|
|
+ permissionList() {
|
|
|
|
+ return {
|
|
|
|
+ addBtn: this.vaildData(this.permissions.idp_inverterstatusdata_add, false),
|
|
|
|
+ delBtn: this.vaildData(this.permissions.idp_inverterstatusdata_del, false),
|
|
|
|
+ editBtn: this.vaildData(this.permissions.idp_inverterstatusdata_edit, false)
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getStationCode();
|
|
|
|
+ this.getAllInverterInfo()
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ getGridOnloadData() {
|
|
|
|
+ const param = new URLSearchParams()
|
|
|
|
+ param.append('currentPage', this.page.currentPage)
|
|
|
|
+ param.append('pageSize', this.page.pageSize)
|
|
|
|
+ param.append('stationCode', this.stationCode)
|
|
|
|
+ param.append("equipmentId", this.equipmentId)
|
|
|
|
+ param.append('startTime', this.startTime)
|
|
|
|
+ param.append('endTime', this.endTime)
|
|
|
|
+ getByStationCodeAndEquipmentIdAndTimeBetween(param).then(response => {
|
|
|
|
+ this.tableData = response.data.data.records
|
|
|
|
+ this.page.total = response.data.data.total
|
|
|
|
+ this.page.pageSize = response.data.data.size
|
|
|
|
+ this.tableLoading = false
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ this.tableLoading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ dateQuery() {
|
|
|
|
+ if (this.equipmentId === '' || this.equipmentId == null) {
|
|
|
|
+ return alert("请选择所属设备")
|
|
|
|
+ }
|
|
|
|
+ this.tableLoading = true
|
|
|
|
+ const param = new URLSearchParams()
|
|
|
|
+ param.append('currentPage', this.page.currentPage)
|
|
|
|
+ param.append('pageSize', this.page.pageSize)
|
|
|
|
+ param.append('stationCode', this.stationCode)
|
|
|
|
+ param.append("equipmentId", this.equipmentId)
|
|
|
|
+ param.append('startTime', this.startTime)
|
|
|
|
+ param.append('endTime', this.endTime)
|
|
|
|
+
|
|
|
|
+ getByStationCodeAndEquipmentIdAndTimeBetween(param).then(response => {
|
|
|
|
+ this.tableData = response.data.data.records
|
|
|
|
+ this.page.total = response.data.data.total
|
|
|
|
+ this.tableLoading = false
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ this.tableLoading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ getStationCode() {
|
|
|
|
+ this.tableLoading = true
|
|
|
|
+ getStation().then(response => {
|
|
|
|
+ this.stationList = response.data.data
|
|
|
|
+ if (this.stationList.length > 0) {
|
|
|
|
+ this.stationCode = this.stationList[0].value
|
|
|
|
+ }
|
|
|
|
+ this.tableLoading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ getAllInverterInfo() {
|
|
|
|
+ this.inverterInfoList = []
|
|
|
|
+ this.equipmentId = ''
|
|
|
|
+ this.tableLoading = true
|
|
|
|
+ const param = new URLSearchParams()
|
|
|
|
+ param.append('stationCode', this.stationCode)
|
|
|
|
+ getAllInverterInfo(param).then(response => {
|
|
|
|
+ this.inverterInfoList = response.data.data
|
|
|
|
+ if (this.inverterInfoList.length > 0) {
|
|
|
|
+ this.equipmentId = this.inverterInfoList[0].value
|
|
|
|
+ }
|
|
|
|
+ this.tableLoading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ sizeChange(pageSize) {
|
|
|
|
+ this.page.pageSize = pageSize
|
|
|
|
+ },
|
|
|
|
+ currentChange(current) {
|
|
|
|
+ this.page.currentPage = current
|
|
|
|
+ },
|
|
|
|
+ searchChange(form, done) {
|
|
|
|
+ this.searchForm = form
|
|
|
|
+ this.page.currentPage = 1
|
|
|
|
+ this.getList(this.page, form)
|
|
|
|
+ done()
|
|
|
|
+ },
|
|
|
|
+ refreshChange() {
|
|
|
|
+ this.getList(this.page)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|