|
@@ -1,98 +1,94 @@
|
|
|
<template>
|
|
|
<div class="table-container">
|
|
|
<vab-query-form>
|
|
|
- <vab-query-form-left-panel>
|
|
|
- <el-form ref="form" :model="queryForm" :inline="true" @submit.native.prevent>
|
|
|
- <el-form-item>
|
|
|
- <el-select v-model="queryForm.stationId" placeholder="请选择" clearable>
|
|
|
- <el-option v-for="item in stationList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button icon="el-icon-search" type="primary" native-type="submit" @click="handleQuery">
|
|
|
- 查询
|
|
|
- </el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </vab-query-form-left-panel>
|
|
|
- <vab-query-form-right-panel>
|
|
|
- <el-button icon="el-icon-plus" type="primary" @click="handleAdd">
|
|
|
- 添加
|
|
|
- </el-button>
|
|
|
- <el-button icon="el-icon-delete" type="danger" @click="handleDelete">
|
|
|
- 删除
|
|
|
- </el-button>
|
|
|
- </vab-query-form-right-panel>
|
|
|
+ <div class="title">
|
|
|
+ <div class="left">
|
|
|
+ <div class="left-item">
|
|
|
+ <div style="width: 70px;">型号:</div>
|
|
|
+ <el-input v-model="fuzzyQuery_name" placeholder="请输入" clearable />
|
|
|
+ </div>
|
|
|
+ <el-button icon="el-icon-search" type="primary" native-type="submit" @click="searchFetchData">
|
|
|
+ 查询
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <div class="right">
|
|
|
+ <el-button icon="el-icon-plus" type="primary" @click="handleAdd">
|
|
|
+ 添加
|
|
|
+ </el-button>
|
|
|
+ <el-button icon="el-icon-delete" type="danger" @click="handleDelete">
|
|
|
+ 删除
|
|
|
+ </el-button>
|
|
|
+ <UploadExcel style="margin-left: 10px;" @getResult="getMyExcelData"></UploadExcel>
|
|
|
+ <ExportExcel :exportList="exportExcel" :useType="'export'" partsName="可延电量"></ExportExcel>
|
|
|
+ <ExportExcel :exportList="templateExcel" :useType="'template'" partsName="可延电量模板"></ExportExcel>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!--
|
|
|
+ id 编号 VARCHAR2 50 编号
|
|
|
+ project_id 工程编号 VARCHAR2 50 ✓ 工程编号
|
|
|
+ generating_capacity 计划发电量 NUMBER 18,2 ✓ 计划发电量
|
|
|
+ outage_hours 计划停运小时 NUMBER 18,2 ✓ 计划停运小时
|
|
|
+ year 年 VARCHAR2 50 ✓ 年
|
|
|
+ month 月 VARCHAR2 50 ✓ 月
|
|
|
+ windpowerstation_id 场站编号冗余 VARCHAR2 50 ✓ 场站编号(冗余)
|
|
|
+ -->
|
|
|
+ <el-table header-cell-class-name="table_header_style" border ref="tableSort" v-loading="listLoading" :data="list"
|
|
|
+ :element-loading-text="elementLoadingText" :height="height" @selection-change="setSelectRows">
|
|
|
+ <el-table-column show-overflow-tooltip type="selection" align="center" width="40"></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="编码" prop="id" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="工程编号" prop="projectId" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="计划发电量" prop="generatingCapacity" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="计划停运小时" prop="outageHours" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="年" prop="year" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="月" prop="month" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="场站编号冗余" prop="windpowerstationId" align="center" sortable></el-table-column>
|
|
|
+ <el-table-column show-overflow-tooltip label="操作" width="100px" fixed="right">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button type="text" @click="handleEdit(row)">编辑</el-button>
|
|
|
+ <el-button type="text" @click="handleDelete(row)">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination :background="background" :current-page="queryForm.pageNo" :layout="layout"
|
|
|
+ :page-size="queryForm.pageSize" :total="total" @current-change="handleCurrentChange"
|
|
|
+ @size-change="handleSizeChange"></el-pagination>
|
|
|
+ <table-edit ref="edit" :options="options" :stationList="stationList" @save-success="fetchData"></table-edit>
|
|
|
</vab-query-form>
|
|
|
-
|
|
|
- <el-table header-cell-class-name="table_header_style" border ref="tableSort" v-loading="listLoading" :data="list"
|
|
|
- :element-loading-text="elementLoadingText" :height="height" @selection-change="setSelectRows"
|
|
|
- @sort-change="tableSortChange" show-summary :summary-method="getSummaries">
|
|
|
- <el-table-column show-overflow-tooltip type="selection" align="center" width="65"></el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="风场编号" prop="windpower" width="200" align="center" sortable>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="工程编号" prop="projectid" align="center" sortable></el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="计划发电量" prop="generatingcapacity" align="center" sortable>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="计划停运小时" prop="outagehours" align="center" sortable>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="年份" prop="year" align="center" sortable></el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="月份" prop="month" align="center" sortable></el-table-column>
|
|
|
- <el-table-column show-overflow-tooltip label="操作" width="180px">
|
|
|
- <template #default="{ row }">
|
|
|
- <el-button type="text" @click="handleEdit(row)">编辑</el-button>
|
|
|
- <el-button type="text" @click="handleDelete(row)">删除</el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- <el-pagination :background="background" :current-page="queryForm.pageNo" :layout="layout"
|
|
|
- :page-size="queryForm.pageSize" :total="total" @current-change="handleCurrentChange"
|
|
|
- @size-change="handleSizeChange"></el-pagination>
|
|
|
- <table-edit ref="edit" :options="options" @handleSuccess="fetchData"></table-edit>
|
|
|
</div>
|
|
|
</template>
|
|
|
-
|
|
|
<script>
|
|
|
-import api from '@/api/table'
|
|
|
+import UploadExcel from '@/components/UploadExcel/index'
|
|
|
+import ExportExcel from '@/components/ExportExcel/index'
|
|
|
+import api from '@/api/realtimeDatabaseConfiguration'
|
|
|
import stationApi from '@/api/station'
|
|
|
import TableEdit from './components/TableEdit'
|
|
|
export default {
|
|
|
- name: 'ComprehensiveTable',
|
|
|
components: {
|
|
|
- TableEdit
|
|
|
- },
|
|
|
- filters: {
|
|
|
- statusFilter(status) {
|
|
|
- const statusMap = {
|
|
|
- published: 'success',
|
|
|
- draft: 'gray',
|
|
|
- deleted: 'danger',
|
|
|
- }
|
|
|
- return statusMap[status]
|
|
|
- },
|
|
|
+ UploadExcel,
|
|
|
+ ExportExcel,
|
|
|
+ TableEdit,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- imgShow: true,
|
|
|
- list: [],
|
|
|
- cascaderSel: [],
|
|
|
- imageList: [],
|
|
|
- stationList: [],
|
|
|
+ fuzzyQuery_name: '',
|
|
|
listLoading: true,
|
|
|
+ list: [],
|
|
|
+ options: [],
|
|
|
+ exportExcel: [],
|
|
|
+ templateExcel: [],
|
|
|
+ elementLoadingText: '正在加载...',
|
|
|
+ selectRows: '',
|
|
|
layout: 'total, sizes, prev, pager, next, jumper',
|
|
|
total: 0,
|
|
|
background: true,
|
|
|
- selectRows: '',
|
|
|
- elementLoadingText: '正在加载...',
|
|
|
+ exportList: [],
|
|
|
queryForm: {
|
|
|
- stationId: '',
|
|
|
pageNo: 1,
|
|
|
pageSize: 20,
|
|
|
- title: '',
|
|
|
},
|
|
|
- options: []
|
|
|
- }
|
|
|
+ stationList: [],
|
|
|
+ selectValue: ''
|
|
|
+ };
|
|
|
},
|
|
|
computed: {
|
|
|
height() {
|
|
@@ -100,35 +96,86 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
created() {
|
|
|
- this.getStation()
|
|
|
+ // this.getStation()
|
|
|
this.fetchData()
|
|
|
},
|
|
|
- beforeDestroy() { },
|
|
|
- mounted() { },
|
|
|
methods: {
|
|
|
+ getMyExcelData(val) {
|
|
|
+ val.forEach(item => {
|
|
|
+ api.addProjectstudy(item).then(res => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '添加成功!'
|
|
|
+ });
|
|
|
+ this.fetchData()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
getStation() {
|
|
|
stationApi.windpowerstationList({
|
|
|
id: '',
|
|
|
name: '',
|
|
|
companyid: '',
|
|
|
pageNum: 1,
|
|
|
- pageSize: 10000,
|
|
|
+ pageSize: 1000,
|
|
|
}).then(res => {
|
|
|
if (res.data) {
|
|
|
- this.queryForm.stationId = ''
|
|
|
+ this.listLoading = false
|
|
|
this.stationList = res.data.records
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- tableSortChange() {
|
|
|
- const imageList = []
|
|
|
- this.$refs.tableSort.tableData.forEach((item, index) => {
|
|
|
- imageList.push(item.img)
|
|
|
+ searchFetchData(){
|
|
|
+ this.queryForm.pageNo = 1
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ fetchData() {
|
|
|
+ api.projectstudy({
|
|
|
+ projectId: this.fuzzyQuery_name,
|
|
|
+ pageNum: this.queryForm.pageNo,
|
|
|
+ pageSize: this.queryForm.pageSize,
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data) {
|
|
|
+ this.listLoading = false
|
|
|
+ this.total = res.data.total
|
|
|
+ this.list = res.data.records
|
|
|
+ this.templateExcel = [
|
|
|
+ {
|
|
|
+ id: "",
|
|
|
+ projectId: "",
|
|
|
+ generatingCapacity: "",
|
|
|
+ outageHours: "",
|
|
|
+ year: "",
|
|
|
+ month: "",
|
|
|
+ windpowerstationId: "",
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ // 导出
|
|
|
+ let exportExcel = []
|
|
|
+ res.data.records.forEach(item => {
|
|
|
+ exportExcel.push({
|
|
|
+ id: item.id,
|
|
|
+ projectId: item.projectId,
|
|
|
+ generatingCapacity: item.generatingCapacity,
|
|
|
+ outageHours: item.outageHours,
|
|
|
+ year: item.year,
|
|
|
+ month: item.month,
|
|
|
+ windpowerstationId: item.windpowerstationId,
|
|
|
+ })
|
|
|
+ })
|
|
|
+ this.exportExcel = exportExcel
|
|
|
+ }
|
|
|
})
|
|
|
- this.imageList = imageList
|
|
|
},
|
|
|
- setSelectRows(val) {
|
|
|
- this.selectRows = val
|
|
|
+ handleSizeChange(val) {
|
|
|
+ this.queryForm.pageSize = val
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.queryForm.pageNo = val
|
|
|
+ this.fetchData()
|
|
|
},
|
|
|
handleAdd() {
|
|
|
this.$refs['edit'].showEdit()
|
|
@@ -137,125 +184,51 @@ export default {
|
|
|
this.$refs['edit'].showEdit(row)
|
|
|
},
|
|
|
handleDelete(row) {
|
|
|
- if (row.id) {
|
|
|
- this.$baseConfirm('你确定要删除当前项吗', null, async () => {
|
|
|
+ if (row.id || this.selectRows.length > 0) {
|
|
|
+ this.$baseConfirm('你确定要删除吗', null, async () => {
|
|
|
+ let ids = ''
|
|
|
+ if (this.selectRows.length > 0) {
|
|
|
+ ids = this.selectRows.map((item) => item.id).join()
|
|
|
+ }
|
|
|
api.deleteProjectstudy({
|
|
|
- id: row.id
|
|
|
+ id: row.id || ids
|
|
|
}).then(res => {
|
|
|
- if (res.code == 200) {
|
|
|
+ if (res.data) {
|
|
|
this.$baseMessage('删除成功', 'success')
|
|
|
this.fetchData()
|
|
|
}
|
|
|
})
|
|
|
})
|
|
|
} else {
|
|
|
- if (this.selectRows.length > 0) {
|
|
|
- const ids = this.selectRows.map((item) => item.id).join()
|
|
|
- this.$baseConfirm('你确定要删除选中项吗', null, async () => {
|
|
|
- api.deleteProjectstudy({
|
|
|
- id: ids
|
|
|
- }).then(res => {
|
|
|
- if (res.code == 200) {
|
|
|
- this.$baseMessage('删除成功', 'success')
|
|
|
- this.fetchData()
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
- } else {
|
|
|
- this.$baseMessage('未选中任何行', 'error')
|
|
|
- return false
|
|
|
- }
|
|
|
+ this.$baseMessage('未选中任何行', 'error')
|
|
|
+ return false
|
|
|
}
|
|
|
},
|
|
|
- handleSizeChange(val) {
|
|
|
- this.queryForm.pageSize = val
|
|
|
- this.fetchData()
|
|
|
- },
|
|
|
- handleCurrentChange(val) {
|
|
|
- this.queryForm.pageNo = val
|
|
|
- this.fetchData()
|
|
|
- },
|
|
|
- handleQuery() {
|
|
|
- this.queryForm.pageNo = 1
|
|
|
- this.fetchData()
|
|
|
- },
|
|
|
- async fetchData() {
|
|
|
- this.listLoading = true
|
|
|
- api.projectstudy({
|
|
|
- windpower: this.queryForm.stationId,
|
|
|
- pageNum: this.queryForm.pageNo,
|
|
|
- pageSize: this.queryForm.pageSize,
|
|
|
- }).then(res => {
|
|
|
- if (res.data) {
|
|
|
- this.total = res.data.total
|
|
|
- this.list = res.data.records
|
|
|
- setTimeout(() => {
|
|
|
- this.listLoading = false
|
|
|
- }, 500)
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
- },
|
|
|
- testMessage() {
|
|
|
- this.$baseMessage('test1', 'success')
|
|
|
- },
|
|
|
- testALert() {
|
|
|
- this.$baseAlert('11')
|
|
|
- this.$baseAlert('11', '自定义标题', () => {
|
|
|
- /* 可以写回调; */
|
|
|
- })
|
|
|
- this.$baseAlert('11', null, () => {
|
|
|
- /* 可以写回调; */
|
|
|
- })
|
|
|
- },
|
|
|
- testConfirm() {
|
|
|
- this.$baseConfirm(
|
|
|
- '你确定要执行该操作?',
|
|
|
- null,
|
|
|
- () => {
|
|
|
- /* 可以写回调; */
|
|
|
- },
|
|
|
- () => {
|
|
|
- /* 可以写回调; */
|
|
|
- }
|
|
|
- )
|
|
|
- },
|
|
|
- testNotify() {
|
|
|
- this.$baseNotify('测试消息提示', 'test', 'success', 'bottom-right')
|
|
|
+ setSelectRows(val) {
|
|
|
+ this.selectRows = val
|
|
|
},
|
|
|
- getSummaries(param) {
|
|
|
- console.log(11111);
|
|
|
- const { columns, data } = param;
|
|
|
- const sums = [];
|
|
|
- columns.forEach((column, index) => {
|
|
|
- if (index === 0) {
|
|
|
- sums[index] = '总计';
|
|
|
- return;
|
|
|
- }
|
|
|
- else if (index === 3) {
|
|
|
- let totle = 0
|
|
|
- data.forEach(item => {
|
|
|
- totle = totle + Number(item.generatingcapacity)
|
|
|
- })
|
|
|
- sums[index] = totle;
|
|
|
- }
|
|
|
- else if (index === 4) {
|
|
|
- let totle = 0
|
|
|
- data.forEach(item => {
|
|
|
- totle = totle + Number(item.outagehours)
|
|
|
- })
|
|
|
- sums[index] = totle;
|
|
|
- } else {
|
|
|
- sums[index] = '--';
|
|
|
- }
|
|
|
- });
|
|
|
- return sums;
|
|
|
- }
|
|
|
},
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
-.cascaders {
|
|
|
- width: 300px;
|
|
|
+.title {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.left {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .left-item {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|