This commit is contained in:
朱菊兰 2024-04-08 10:41:43 +08:00
parent f960ece594
commit c85c6e4323
24 changed files with 1651 additions and 1564 deletions

View File

@ -187,8 +187,11 @@
@click="resetBtn"> @click="resetBtn">
重置 重置
</el-button> </el-button>
<span class="separateStyle"></span> <span
class="separateStyle"
v-hasPermi="['analysis:contrast-analysis:export']"></span>
<el-button <el-button
v-hasPermi="['analysis:contrast-analysis:export']"
type="primary" type="primary"
size="small" size="small"
plain plain

View File

@ -80,10 +80,13 @@
</el-button> </el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<span class="separateStyle"></span> <span
class="separateStyle"
v-hasPermi="['analysis:qoq-analysis:export']"></span>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button
v-hasPermi="['analysis:qoq-analysis:export']"
type="primary" type="primary"
size="small" size="small"
@click="exportData" @click="exportData"

View File

@ -170,8 +170,11 @@
@click="resetBtn"> @click="resetBtn">
重置 重置
</el-button> </el-button>
<span class="separateStyle"></span> <span
class="separateStyle"
v-hasPermi="['analysis:trend-analysis:export']"></span>
<el-button <el-button
v-hasPermi="['analysis:trend-analysis:export']"
type="primary" type="primary"
size="small" size="small"
plain plain

View File

@ -69,10 +69,13 @@
</el-button> </el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<span class="separateStyle"></span> <span
class="separateStyle"
v-hasPermi="['analysis:yoy-analysis:export']"></span>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button
v-hasPermi="['analysis:yoy-analysis:export']"
type="primary" type="primary"
size="small" size="small"
@click="exportData" @click="exportData"

View File

@ -1,197 +1,219 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 -->
<!-- 搜索工作栏 --> <search-bar
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" /> :formConfigs="formConfig"
<!-- 列表 --> ref="searchBarForm"
<base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list" @headBtnClick="buttonClick" />
:max-height="tableH"> <!-- 列表 -->
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn" <base-table
@clickBtn="handleClick" /> :page="queryParams.pageNo"
</base-table> :limit="queryParams.pageSize"
<pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total" :table-props="tableProps"
@pagination="getList" /> :table-data="list"
<!-- 新增 --> :max-height="tableH">
<base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel" <method-btn
@confirm="handleConfirm" :before-close="handleCancel"> v-if="tableBtn.length"
<energy-plc-add ref="energyPlc" @successSubmit="successSubmit" /> slot="handleBtn"
</base-dialog> :width="80"
</div> label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" />
</base-table>
<pagination
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" />
<!-- 新增 -->
<base-dialog
:dialogTitle="addOrEditTitle"
:dialogVisible="centervisible"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel">
<energy-plc-add
ref="energyPlc"
@successSubmit="successSubmit" />
</base-dialog>
</div>
</template> </template>
<script> <script>
import { getEnergyPlcPage, deleteEnergyPlc } from "@/api/base/energyPlc"; import { getEnergyPlcPage, deleteEnergyPlc } from '@/api/base/energyPlc';
// import { publicFormatter } from '@/utils/dict' import EnergyPlcAdd from './components/energyPlcAdd.vue';
import EnergyPlcAdd from './components/energyPlcAdd.vue' import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'plcTableName', prop: 'plcTableName',
label: '关联表名', label: '关联表名',
showOverflowtooltip: true showOverflowtooltip: true,
}, },
{ {
prop: 'code', prop: 'code',
label: '关联表编码', label: '关联表编码',
minWidth: 150, minWidth: 150,
showOverflowtooltip: true showOverflowtooltip: true,
}, },
{ {
prop: 'name', prop: 'name',
label: '标识名', label: '标识名',
minWidth: 150, minWidth: 150,
showOverflowtooltip: true showOverflowtooltip: true,
}, },
{ {
prop: 'enName', prop: 'enName',
label: '英文标识名' label: '英文标识名',
}, },
{ {
prop: 'collection', prop: 'collection',
label: '是否采集' label: '是否采集',
}, },
{ {
prop: 'description', prop: 'description',
label: '描述', label: '描述',
showOverflowtooltip: true showOverflowtooltip: true,
} },
] ];
export default { export default {
name: "EnergyPlc", name: 'EnergyPlc',
components: { EnergyPlcAdd }, components: { EnergyPlcAdd },
data() { mixins: [tableHeightMixin],
return { data() {
formConfig: [ return {
{ formConfig: [
type: 'input', {
label: '标识名', type: 'input',
placeholder: '标识名', label: '标识名',
param: 'name' placeholder: '标识名',
}, param: 'name',
{ },
type: 'button', {
btnName: '查询', type: 'button',
name: 'search', btnName: '查询',
color: 'primary' name: 'search',
}, color: 'primary',
{ },
type: 'separate' {
}, type: 'separate',
{ },
type: this.$auth.hasPermi('base:energy-plc:create') ? 'button' : '', {
btnName: '新增', type: this.$auth.hasPermi('base:energy-plc:create') ? 'button' : '',
name: 'add', btnName: '新增',
color: 'success', name: 'add',
plain: true color: 'success',
} plain: true,
], },
tableProps, ],
tableBtn: [ tableProps,
this.$auth.hasPermi('base:energy-plc:update') tableBtn: [
? { this.$auth.hasPermi('base:energy-plc:update')
type: 'edit', ? {
btnName: '编辑' type: 'edit',
} btnName: '编辑',
: undefined, }
this.$auth.hasPermi('base:energy-plc:delete') : undefined,
? { this.$auth.hasPermi('base:energy-plc:delete')
type: 'delete', ? {
btnName: '删除' type: 'delete',
} btnName: '删除',
: undefined }
].filter((v) => v), : undefined,
tableH: this.tableHeight(260), ].filter((v) => v),
collectionList: [ collectionList: [
{ value: 0, label: '否' }, { value: 0, label: '否' },
{ value: 1, label: '是' } { value: 1, label: '是' },
], ],
// //
total: 0, total: 0,
// //
list: [], list: [],
// //
addOrEditTitle: "", addOrEditTitle: '',
// //
centervisible: false, centervisible: false,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
name: null name: null,
} },
}; };
}, },
created() { created() {
window.addEventListener('resize', () => { this.getList();
this.tableH = this.tableHeight(260) },
}) methods: {
this.getList(); buttonClick(val) {
}, switch (val.btnName) {
methods: { case 'search':
buttonClick(val) { this.queryParams.pageNo = 1;
switch (val.btnName) { this.queryParams.name = val.name;
case 'search': this.getList();
this.queryParams.pageNo = 1; break;
this.queryParams.name = val.name default:
this.getList() this.addOrEditTitle = '新增';
break this.centervisible = true;
default: this.$nextTick(() => {
this.addOrEditTitle = '新增' this.$refs.energyPlc.init();
this.centervisible = true });
this.$nextTick(() => { }
this.$refs.energyPlc.init() },
}) /** 查询列表 */
} getList() {
}, getEnergyPlcPage(this.queryParams).then((response) => {
/** 查询列表 */ let arr = response.data.list || [];
getList() { arr &&
getEnergyPlcPage(this.queryParams).then(response => { arr.map((item) => {
let arr = response.data.list || []; this.collectionList.map((i) => {
arr && arr.map(item => { if (item.collection === i.value) {
this.collectionList.map(i => { item.collection = i.label;
if (item.collection === i.value) { }
item.collection = i.label });
} });
}) this.list = arr;
}) this.total = response.data.total;
this.list = arr });
this.total = response.data.total; },
}); handleClick(val) {
}, switch (val.type) {
handleClick(val) { case 'edit':
switch (val.type) { this.addOrEditTitle = '编辑';
case 'edit': this.$nextTick(() => {
this.addOrEditTitle = '编辑' this.$refs.energyPlc.init(val.data.id);
this.$nextTick(() => { });
this.$refs.energyPlc.init(val.data.id) this.centervisible = true;
}) break;
this.centervisible = true default:
break this.handleDelete(val.data);
default: }
this.handleDelete(val.data) },
} handleCancel() {
}, this.$refs.energyPlc.formClear();
handleCancel() { this.centervisible = false;
this.$refs.energyPlc.formClear() this.addOrEditTitle = '';
this.centervisible = false },
this.addOrEditTitle = '' handleConfirm() {
}, this.$refs.energyPlc.submitForm();
handleConfirm() { },
this.$refs.energyPlc.submitForm() successSubmit() {
}, this.handleCancel();
successSubmit() { this.getList();
this.handleCancel() },
this.getList() /** 删除按钮操作 */
}, handleDelete(row) {
/** 删除按钮操作 */ this.$modal
handleDelete(row) { .confirm('是否确认删除关联表名为"' + row.name + '"的数据项?')
this.$modal.confirm('是否确认删除关联表名为"' + row.name + '"的数据项?').then(function () { .then(function () {
return deleteEnergyPlc(row.id); return deleteEnergyPlc(row.id);
}).then(() => { })
this.queryParams.pageNo = 1; .then(() => {
this.getList(); this.queryParams.pageNo = 1;
this.$modal.msgSuccess("删除成功"); this.getList();
}).catch(() => { }); this.$modal.msgSuccess('删除成功');
} })
} .catch(() => {});
},
},
}; };
</script> </script>

View File

@ -1,226 +1,258 @@
<template> <template>
<div> <div>
<el-drawer :title="drawerTitle" :visible.sync="visible" size="70%" @close='closeD' :show-close='false'> <el-drawer
<div class="box"> :title="drawerTitle"
<el-form :inline="true"> :visible.sync="visible"
<el-form-item label="关联表名"> size="70%"
<el-input v-model="plcTableName" size='small' readonly></el-input> @close="closeD"
</el-form-item> :show-close="false">
<el-form-item label="对象"> <div class="box">
<el-input v-model="objName" size='small' readonly></el-input> <el-form :inline="true">
</el-form-item> <el-form-item label="关联表名">
<el-form-item v-if="showBtn"> <el-input
<el-button type="success" size='small' plain @click="addNew">新增</el-button> v-model="plcTableName"
</el-form-item> size="small"
</el-form> readonly
<base-table style="width: 250px"></el-input>
:page="queryParams.pageNo" </el-form-item>
:limit="queryParams.pageSize" <el-form-item label="对象">
:table-props="tableProps" <el-input
:table-data="tableData" v-model="objName"
:max-height="tableH" size="small"
> readonly
<method-btn style="width: 250px"></el-input>
v-if="tableBtn.length" </el-form-item>
slot="handleBtn" <el-form-item v-if="showBtn">
:width="100" <el-button
label="操作" type="success"
:method-list="tableBtn" size="small"
@clickBtn="handleClick" plain
/> @click="addNew">
</base-table> 新增
<pagination </el-button>
:page.sync="queryParams.pageNo" </el-form-item>
:limit.sync="queryParams.pageSize" </el-form>
:total="total" <base-table
@pagination="getList" :page="queryParams.pageNo"
/> :limit="queryParams.pageSize"
</div> :table-props="tableProps"
</el-drawer> :table-data="tableData"
<!-- 新增 --> :max-height="tableH">
<base-dialog <method-btn
:dialogTitle="addOrEditTitle" v-if="tableBtn.length"
:dialogVisible="centervisible" slot="handleBtn"
@cancel="handleCancel" :width="100"
@confirm="handleConfirm" label="操作"
:before-close="handleCancel" :method-list="tableBtn"
> @clickBtn="handleClick" />
<energy-plc-param-add ref="energyPlcParam" @successSubmit="successSubmit" /> </base-table>
</base-dialog> <pagination
</div> :page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" />
</div>
</el-drawer>
<!-- 新增 -->
<base-dialog
:dialogTitle="addOrEditTitle"
:dialogVisible="centervisible"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel">
<energy-plc-param-add
ref="energyPlcParam"
@successSubmit="successSubmit" />
</base-dialog>
</div>
</template> </template>
<script> <script>
import { getEnergyPlcParamPage, deleteEnergyPlcParam } from '@/api/base/energyPlcParam' import {
import EnergyPlcParamAdd from './energyPlcParamAdd' getEnergyPlcParamPage,
import { publicFormatter } from '@/utils/dict' deleteEnergyPlcParam,
} from '@/api/base/energyPlcParam';
import EnergyPlcParamAdd from './energyPlcParamAdd';
import { publicFormatter } from '@/utils/dict';
const tableProps = [ const tableProps = [
{ {
prop: 'typeId', prop: 'typeId',
label: '能源类型' label: '能源类型',
}, filter: publicFormatter('energy_type'),
{ },
prop: 'plcParamName', {
label: '参数列名' prop: 'plcParamName',
}, label: '参数列名',
{ },
prop: 'name', {
label: '参数名称' prop: 'name',
}, label: '参数名称',
{ },
prop: 'unit', {
label: '单位', prop: 'unit',
filter: publicFormatter('energy_unit') label: '单位',
}, filter: publicFormatter('unit_dict'),
{ },
prop: 'collection', {
label: '是否采集' prop: 'collection',
}, label: '是否采集',
{ },
prop: 'description', {
label: '描述' prop: 'description',
} label: '描述',
] },
];
export default { export default {
name: 'EnergyPlcParam', name: 'EnergyPlcParam',
props: { props: {
energyTypeList: { energyTypeList: {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return [] return [];
} },
} },
}, },
data() { data() {
return { return {
visible: false, visible: false,
drawerTitle: '', drawerTitle: '',
tableProps, tableProps,
tableData: [], tableData: [],
tableBtn: [], tableBtn: [],
tableH: this.tableHeight(115), tableH: this.tableHeight(115),
total: 0, total: 0,
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 30, pageSize: 30,
connectId: null connectId: null,
}, },
plcTableName: '', plcTableName: '',
objName: '', objName: '',
// //
addOrEditTitle: "", addOrEditTitle: '',
// //
centervisible: false, centervisible: false,
collectionList: [ collectionList: [
{value: 0,label: '否'}, { value: 0, label: '否' },
{value: 1,label: '是'} { value: 1, label: '是' },
], ],
showBtn: true showBtn: true,
} };
}, },
components: { EnergyPlcParamAdd }, components: { EnergyPlcParamAdd },
created() { created() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.tableH = this.tableHeight(115) this.tableH = this.tableHeight(115);
}) });
}, },
methods: { methods: {
init(data,title) { init(data, title) {
this.visible = true this.visible = true;
this.queryParams.connectId = data.id this.queryParams.connectId = data.id;
this.plcTableName = data.plcTableName this.plcTableName = data.plcTableName;
this.objName = data.objName this.objName = data.objName;
this.getList() this.getList();
if (title === 'detail') { if (title === 'detail') {
this.drawerTitle = '查看参数' this.drawerTitle = '查看参数';
this.showBtn = false this.showBtn = false;
this.tableBtn = [] this.tableBtn = [];
} else { } else {
this.drawerTitle = '参数绑定' this.drawerTitle = '参数绑定';
this.showBtn = true this.showBtn = true;
this.tableBtn = [ this.tableBtn = [
{ {
type: 'edit', type: 'edit',
btnName: '编辑' btnName: '编辑',
}, },
{ {
type: 'delete', type: 'delete',
btnName: '删除' btnName: '删除',
} },
] ];
} }
}, },
getList() { getList() {
getEnergyPlcParamPage({...this.queryParams}).then((res) => { getEnergyPlcParamPage({ ...this.queryParams }).then((res) => {
let arr = res.data.list || [] let arr = res.data.list || [];
arr&&arr.map(item => { arr &&
this.collectionList.map(i => { arr.map((item) => {
if (item.collection === i.value) { this.collectionList.map((i) => {
item.collection = i.label if (item.collection === i.value) {
} item.collection = i.label;
}) }
this.energyTypeList.map(j => { });
if (item.typeId === j.id) { this.energyTypeList.map((j) => {
item.typeId = j.name if (item.typeId === j.id) {
} item.typeId = j.name;
}) }
}) });
this.tableData = arr });
this.total = res.data.total; this.tableData = arr;
}) this.total = res.data.total;
}, });
// },
addNew() { //
this.addOrEditTitle = '新增' addNew() {
this.centervisible = true this.addOrEditTitle = '新增';
this.$nextTick(() => { this.centervisible = true;
this.$refs.energyPlcParam.init({'connectId': this.queryParams.connectId, id: ''}) this.$nextTick(() => {
}) this.$refs.energyPlcParam.init({
}, connectId: this.queryParams.connectId,
handleCancel() { id: '',
this.$refs.energyPlcParam.formClear() });
this.centervisible = false });
this.addOrEditTitle = '' },
}, handleCancel() {
handleConfirm() { this.$refs.energyPlcParam.formClear();
this.$refs.energyPlcParam.submitForm() this.centervisible = false;
}, this.addOrEditTitle = '';
successSubmit() { },
this.handleCancel() handleConfirm() {
this.getList() this.$refs.energyPlcParam.submitForm();
}, },
handleClick(val) { successSubmit() {
console.log(val) this.handleCancel();
switch (val.type) { this.getList();
case 'edit': },
this.addOrEditTitle = '编辑' handleClick(val) {
this.centervisible = true console.log(val);
this.$nextTick(() => { switch (val.type) {
this.$refs.energyPlcParam.init({'connectId': this.queryParams.connectId, id: val.data.id}) case 'edit':
}) this.addOrEditTitle = '编辑';
break this.centervisible = true;
default: this.$nextTick(() => {
this.handleDelete(val.data) this.$refs.energyPlcParam.init({
} connectId: this.queryParams.connectId,
}, id: val.data.id,
/** 删除按钮操作 */ });
handleDelete(row) { });
this.$modal.confirm('是否确认删除参数列名为"' + row.plcParamName + '"的数据项?').then(function() { break;
return deleteEnergyPlcParam(row.id); default:
}).then(() => { this.handleDelete(val.data);
this.queryParams.pageNo = 1; }
this.getList(); },
this.$modal.msgSuccess("删除成功"); /** 删除按钮操作 */
}).catch(() => {}); handleDelete(row) {
}, this.$modal
closeD() { .confirm('是否确认删除参数列名为"' + row.plcParamName + '"的数据项?')
this.$emit('closeDrawer') .then(function () {
} return deleteEnergyPlcParam(row.id);
} })
} .then(() => {
this.queryParams.pageNo = 1;
this.getList();
this.$modal.msgSuccess('删除成功');
})
.catch(() => {});
},
closeD() {
this.$emit('closeDrawer');
},
},
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.box { .box {
padding: 0 32px; padding: 0 32px;
} }
</style> </style>

View File

@ -57,14 +57,18 @@ import { getTree } from '@/api/analysis/energyAnalysis';
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from '@/api/base/energyType';
import EnergyPlcConnectAdd from './components/energyPlcConnectAdd'; import EnergyPlcConnectAdd from './components/energyPlcConnectAdd';
import EnergyPlcParam from './components/energyPlcParam'; import EnergyPlcParam from './components/energyPlcParam';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '对象', label: '对象',
minWidth: 130,
showOverflowtooltip: true,
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码', label: '对象编码',
minWidth: 150,
showOverflowtooltip: true, showOverflowtooltip: true,
}, },
{ {
@ -86,11 +90,13 @@ const tableProps = [
{ {
prop: 'varNum', prop: 'varNum',
label: '绑定参数数量', label: '绑定参数数量',
width: 110,
}, },
]; ];
export default { export default {
name: 'EnergyPlcConnect', name: 'EnergyPlcConnect',
components: { EnergyPlcConnectAdd, EnergyPlcParam }, components: { EnergyPlcConnectAdd, EnergyPlcParam },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -144,7 +150,6 @@ export default {
} }
: undefined, : undefined,
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
@ -165,9 +170,6 @@ export default {
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260);
});
this.getList(); this.getList();
}, },
mounted() { mounted() {

View File

@ -1,38 +0,0 @@
<template>
<div class="tableInner">
<!-- <el-input v-model="list[itemProp]" @blur="changeInput" /> -->
<el-input-number v-model="list[itemProp]" @change="changeInput" :min="0" :max="999999999" style='width: 100%;' :controls='false' :precision='2'></el-input-number>
</div>
</template>
<script>
export default {
name: 'InputArea',
props: {
injectData: {
type: Object,
default: () => ({})
},
itemProp: {
type: String
}
},
data() {
return {
list: this.injectData
}
},
methods: {
changeInput() {
console.log(this.list)
this.$emit('emitData', this.list)
}
}
}
</script>
<style scoped>
.tableInner .el-input__inner {
border: none;
padding: 0;
height: 33px;
}
</style>

View File

@ -1,44 +0,0 @@
<template>
<div class="tableInner">
<el-select v-model="list[itemProp]" placeholder="请选择" style="width: 100%;" @change="changeSelect">
<el-option
v-for="item in getDictDatas(DICT_TYPE.TABLE_NAME)"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</div>
</template>
<script>
export default {
name: 'SelectArea',
props: {
injectData: {
type: Object,
default: () => ({})
},
itemProp: {
type: String
}
},
data() {
return {
list: this.injectData
}
},
methods: {
changeSelect() {
console.log(this.list)
this.$emit('emitData', this.list)
}
}
}
</script>
<style scoped>
.tableInner .el-input__inner {
border: none;
padding: 0;
height: 33px;
}
</style>

View File

@ -40,18 +40,10 @@
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="24"> <el-col :span="24">
<add-table <add-table
:table-props="tableProps"
:table-data="tableData" :table-data="tableData"
:table-name-list="tableNameList" :table-name-list="tableNameList"
@emitFun="inputChange" @emitFun="inputChange"
@emitButtonClick="emitButtonClick" /> @emitButtonClick="emitButtonClick" />
<!-- <base-table
border
:table-props="tableProps"
:table-data="tableData"
:add-button-show="addButtonShow"
@emitFun="inputChange"
@emitButtonClick="emitButtonClick" /> -->
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
@ -64,21 +56,7 @@ import {
} from '@/api/base/energyQuantityManual'; } from '@/api/base/energyQuantityManual';
import moment from 'moment'; import moment from 'moment';
import AddTable from './AddTable'; import AddTable from './AddTable';
import InputArea from './InputArea';
import SelectArea from './SelectArea';
import { energyTableGet } from '@/api/base/energyQuantityManual'; import { energyTableGet } from '@/api/base/energyQuantityManual';
const tableProps = [
{
prop: 'tableName',
label: '表名*',
subcomponent: SelectArea,
},
{
prop: 'readingQuantity',
label: '抄表数*',
subcomponent: InputArea,
},
];
export default { export default {
name: 'EnergyQuantityManualAdd', name: 'EnergyQuantityManualAdd',
props: { props: {
@ -92,7 +70,6 @@ export default {
}, },
data() { data() {
return { return {
tableProps,
tableData: [], tableData: [],
tableNameList: [], //list tableNameList: [], //list
addButtonShow: '新增', addButtonShow: '新增',
@ -122,6 +99,7 @@ export default {
} else if (params.type === 'meterReading') { } else if (params.type === 'meterReading') {
this.isEdit = false; this.isEdit = false;
this.form.energyTypeId = params.energyTypeId; this.form.energyTypeId = params.energyTypeId;
this.selEnergyType(this.form.energyTypeId);
let obj = {}; let obj = {};
obj.tableName = params.tableName + ''; obj.tableName = params.tableName + '';
obj.readingQuantity = 0; obj.readingQuantity = 0;
@ -133,6 +111,7 @@ export default {
energyQuantityManualGet({ id: this.form.id }).then((res) => { energyQuantityManualGet({ id: this.form.id }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.form.energyTypeId = res.data.energyTypeId; this.form.energyTypeId = res.data.energyTypeId;
this.selEnergyType(this.form.energyTypeId);
this.form.recordTime = res.data.recordTime this.form.recordTime = res.data.recordTime
? res.data.recordTime ? res.data.recordTime
: null; : null;
@ -164,6 +143,11 @@ export default {
this.tableNameList = []; this.tableNameList = [];
energyTableGet({ energyTypeId: id }).then((res) => { energyTableGet({ energyTypeId: id }).then((res) => {
this.tableNameList = res.data.tableObjs || []; this.tableNameList = res.data.tableObjs || [];
if (this.tableNameList.length === 0) {
this.$modal.msgWarning(
'当前能源类型暂无配置表名,请先到《表名配置》页面配置'
);
}
}); });
}, },
submitForm() { submitForm() {

View File

@ -52,12 +52,12 @@ import { publicFormatter } from '@/utils/dict';
import { parseTimeTable } from '@/utils/ruoyi'; import { parseTimeTable } from '@/utils/ruoyi';
import EnergyQuantityManualAdd from './components/energyQuantityManualAdd'; import EnergyQuantityManualAdd from './components/energyQuantityManualAdd';
import moment from 'moment'; import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'energyType', prop: 'energyTypeLabel',
label: '能源类型', label: '能源类型',
minWidth: 110, minWidth: 110,
filter: publicFormatter('energy_type'),
showOverflowtooltip: true, showOverflowtooltip: true,
}, },
{ {
@ -142,7 +142,6 @@ export default {
}, },
], ],
tableProps, tableProps,
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
@ -181,10 +180,8 @@ export default {
}; };
}, },
components: { EnergyQuantityManualAdd }, components: { EnergyQuantityManualAdd },
mixins: [tableHeightMixin],
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260);
});
let end = moment(moment().format('YYYY-MM-DD 23:59:59')).valueOf(); let end = moment(moment().format('YYYY-MM-DD 23:59:59')).valueOf();
let start = moment( let start = moment(
moment().subtract(7, 'days').format('YYYY-MM-DD 00:00:00') moment().subtract(7, 'days').format('YYYY-MM-DD 00:00:00')
@ -244,6 +241,11 @@ export default {
? item.amount.toFixed(2) ? item.amount.toFixed(2)
: '' : ''
: ''; : '';
this.getDictDatas('energy_type').map((subItem) => {
if (item.energyType === subItem.value) {
item.energyTypeLabel = subItem.label;
}
});
}); });
this.list = arr; this.list = arr;
this.total = response.data.total; this.total = response.data.total;
@ -305,7 +307,7 @@ export default {
handleDelete(row) { handleDelete(row) {
console.log(row.id); console.log(row.id);
this.$modal this.$modal
.confirm('是否确认删除能源类型为"' + row.energyType + '"的数据项?') .confirm('是否确认删除能源类型为"' + row.energyTypeLabel + '"的数据项?')
.then(function () { .then(function () {
return energyQuantityManualDelete({ id: row.id }); return energyQuantityManualDelete({ id: row.id });
}) })

View File

@ -1,220 +1,254 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 -->
<!-- 搜索工作栏 --> <search-bar
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" /> :formConfigs="formConfig"
<!-- 列表 --> ref="searchBarForm"
<base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list" @headBtnClick="buttonClick" />
:selectWidth="55" :max-height="tableH" @selection-change="selectChange" /> <!-- 列表 -->
<pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total" <base-table
@pagination="getList" /> :page="queryParams.pageNo"
</div> :limit="queryParams.pageSize"
:table-props="tableProps"
:table-data="list"
:selectWidth="55"
:max-height="tableH"
@selection-change="selectChange" />
<pagination
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" />
</div>
</template> </template>
<script> <script>
import { getEnergyQuantityRealtimePage } from "@/api/base/energyQuantityRealtime" import { getEnergyQuantityRealtimePage } from '@/api/base/energyQuantityRealtime';
import { getEnergyTypeListAll } from "@/api/base/energyType" import { getEnergyTypeListAll } from '@/api/base/energyType';
// import { publicFormatter } from '@/utils/dict' // import { publicFormatter } from '@/utils/dict';
import FileSaver from "file-saver" import FileSaver from 'file-saver';
import * as XLSX from 'xlsx/xlsx.mjs' import * as XLSX from 'xlsx/xlsx.mjs';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '统计对象', label: '统计对象',
showOverflowtooltip: true showOverflowtooltip: true,
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码', label: '对象编码',
showOverflowtooltip: true showOverflowtooltip: true,
}, },
{ {
prop: 'energyTypeName', prop: 'energyTypeLabel',
label: '能源类型', label: '能源类型',
showOverflowtooltip: true showOverflowtooltip: true,
}, },
{ {
prop: 'startValue', prop: 'startValue',
label: '初始值' label: '初始值',
}, },
{ {
prop: 'endValue', prop: 'endValue',
label: '当前值' label: '当前值',
}, },
{ {
prop: 'diffValue', prop: 'diffValue',
label: '差值' label: '差值',
}, },
{ {
prop: 'amount', prop: 'amount',
label: '金额' label: '金额',
} },
] ];
export default { export default {
name: "EnergyQuantityRealtime", name: 'EnergyQuantityRealtime',
data() { mixins: [tableHeightMixin],
return { data() {
formConfig: [ return {
{ formConfig: [
type: 'select', {
label: '能源类型', type: 'select',
selectOptions: [], label: '能源类型',
param: 'energyTypeId', labelField: 'labelName',
filterable: true selectOptions: [],
}, param: 'energyTypeId',
{ filterable: true,
type: 'datePicker', },
label: '时间', {
dateType: 'datetimerange', type: 'datePicker',
format: 'yyyy-MM-dd HH:mm:ss', label: '时间',
valueFormat: "timestamp", dateType: 'datetimerange',
rangeSeparator: '-', format: 'yyyy-MM-dd HH:mm:ss',
startPlaceholder: '开始时间', valueFormat: 'timestamp',
endPlaceholder: '结束时间', rangeSeparator: '-',
param: 'timeVal', startPlaceholder: '开始时间',
defaultSelect: [], endPlaceholder: '结束时间',
width: 350 param: 'timeVal',
}, defaultSelect: [],
{ width: 350,
type: 'button', },
btnName: '查询', {
name: 'search', type: 'button',
color: 'primary' btnName: '查询',
}, name: 'search',
{ color: 'primary',
type: 'separate' },
}, {
{ type: 'separate',
type: this.$auth.hasPermi('base:energy-quantity-realtime:export') ? 'button' : '', },
btnName: '导出', {
name: 'export', type: this.$auth.hasPermi('base:energy-quantity-realtime:export')
color: 'primary', ? 'button'
plain: true : '',
} btnName: '导出',
], name: 'export',
tableProps, color: 'primary',
tableH: this.tableHeight(260), plain: true,
// },
total: 0, ],
// tableProps,
list: [], //
// total: 0,
queryParams: { //
pageNo: 1, list: [],
pageSize: 20, //
energyTypeId: '', queryParams: {
startTime: null, pageNo: 1,
endTime: null pageSize: 20,
}, energyTypeId: '',
energyTypeList: [], startTime: null,
exportList: [] endTime: null,
}; },
}, energyTypeList: [],
created() { exportList: [],
window.addEventListener('resize', () => { };
this.tableH = this.tableHeight(260) },
}) created() {
if (location.href.indexOf('?') > 0) { if (location.href.indexOf('?') > 0) {
let arr = location.href.split('?')[1].split('&') let arr = location.href.split('?')[1].split('&');
this.formConfig[1].defaultSelect = [arr[0].split('=')[1], arr[1].split('=')[1]] this.formConfig[1].defaultSelect = [
} else { arr[0].split('=')[1],
this.formConfig[1].defaultSelect = [Date.now() - 7 * 24 * 3600000, Date.now()] arr[1].split('=')[1],
} ];
this.queryParams.startTime = this.formConfig[1].defaultSelect[0] } else {
this.queryParams.endTime = this.formConfig[1].defaultSelect[1] this.formConfig[1].defaultSelect = [
this.getList(); Date.now() - 7 * 24 * 3600000,
this.getTypeList() Date.now(),
}, ];
watch: { }
$route: 'initData' this.queryParams.startTime = this.formConfig[1].defaultSelect[0];
}, this.queryParams.endTime = this.formConfig[1].defaultSelect[1];
methods: { this.getList();
initData(to) { this.getTypeList();
if (to.name === 'EnergyQuantityRealtime') { },
if (location.href.indexOf('?') > 0) { watch: {
let arr = location.href.split('?')[1].split('&') $route: 'initData',
this.formConfig[1].defaultSelect = [arr[0].split('=')[1], arr[1].split('=')[1]] },
} else { methods: {
this.formConfig[1].defaultSelect = [Date.now() - 7 * 24 * 3600000, Date.now()] initData(to) {
} if (to.name === 'EnergyQuantityRealtime') {
this.queryParams.startTime = this.formConfig[1].defaultSelect[0] if (location.href.indexOf('?') > 0) {
this.queryParams.endTime = this.formConfig[1].defaultSelect[1] let arr = location.href.split('?')[1].split('&');
this.getList() this.formConfig[1].defaultSelect = [
} arr[0].split('=')[1],
}, arr[1].split('=')[1],
buttonClick(val) { ];
this.queryParams.pageNo = 1; } else {
this.queryParams.energyTypeId = val.energyTypeId this.formConfig[1].defaultSelect = [
this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null Date.now() - 7 * 24 * 3600000,
this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null Date.now(),
switch (val.btnName) { ];
case 'search': }
this.getList() this.queryParams.startTime = this.formConfig[1].defaultSelect[0];
break this.queryParams.endTime = this.formConfig[1].defaultSelect[1];
default: this.getList();
this.exportTable() }
} },
}, buttonClick(val) {
/** 查询列表 */ this.queryParams.pageNo = 1;
getList() { this.queryParams.energyTypeId = val.energyTypeId;
getEnergyQuantityRealtimePage(this.queryParams).then(response => { this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null;
let arr = response.data.list || [] this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null;
arr && arr.map(item => { switch (val.btnName) {
item.amount = item.amount ? (!isNaN(parseFloat(item.amount)) && isFinite(item.amount) ? item.amount.toFixed(2) : '') : '' case 'search':
}) this.getList();
this.list = arr break;
this.total = response.data.total; default:
this.exportList = [] this.exportTable();
}); }
}, },
getTypeList() { /** 查询列表 */
getEnergyTypeListAll().then((res) => { getList() {
this.formConfig[0].selectOptions = res.data || [] getEnergyQuantityRealtimePage(this.queryParams).then((response) => {
this.energyTypeList = res.data || [] let arr = response.data.list || [];
}) arr &&
}, arr.map((item) => {
selectChange(val) { item.amount = item.amount
console.log(val) ? !isNaN(parseFloat(item.amount)) && isFinite(item.amount)
this.exportList = val ? item.amount.toFixed(2)
}, : ''
// : '';
exportTable() { this.getDictDatas('energy_type').map((subItem) => {
if (this.exportList.length > 0) { if (item.energyTypeName === subItem.value) {
let body = this.exportList.map((x) => [ item.energyTypeLabel = subItem.label;
x.objName, }
x.objCode, });
x.energyTypeName, });
x.startValue, this.list = arr;
x.endValue, this.total = response.data.total;
x.diffValue, this.exportList = [];
x.amount });
]) },
let header = [] getTypeList() {
this.tableProps.map((y) => { getEnergyTypeListAll().then((res) => {
header.push(y.label) this.formConfig[0].selectOptions = res.data || [];
}) this.energyTypeList = res.data || [];
body.unshift(header) });
console.log(body) },
const filename = '能源抄表.xlsx' selectChange(val) {
const ws_name = 'Sheet1' console.log(val);
const wb = XLSX.utils.book_new() this.exportList = val;
const ws = XLSX.utils.aoa_to_sheet(body) },
XLSX.utils.book_append_sheet(wb, ws, ws_name) //
let wbout = XLSX.write(wb, { exportTable() {
bookType: 'xlsx', if (this.exportList.length > 0) {
bookSST: false, let body = this.exportList.map((x) => [
type: 'array' x.objName,
}) x.objCode,
FileSaver.saveAs( x.energyTypeLabel,
new Blob([wbout], { x.startValue,
type: 'application/octet-stream' x.endValue,
}), x.diffValue,
filename x.amount,
) ]);
} else { let header = [];
this.$modal.msgWarning('请勾选需要导出的数据') this.tableProps.map((y) => {
} header.push(y.label);
} });
} body.unshift(header);
console.log(body);
const filename = '能源抄表.xlsx';
const ws_name = 'Sheet1';
const wb = XLSX.utils.book_new();
const ws = XLSX.utils.aoa_to_sheet(body);
XLSX.utils.book_append_sheet(wb, ws, ws_name);
let wbout = XLSX.write(wb, {
bookType: 'xlsx',
bookSST: false,
type: 'array',
});
FileSaver.saveAs(
new Blob([wbout], {
type: 'application/octet-stream',
}),
filename
);
} else {
this.$modal.msgWarning('请勾选需要导出的数据');
}
},
},
}; };
</script> </script>

View File

@ -40,6 +40,7 @@ import { getEnergyTypePage, deleteEnergyType } from '@/api/base/energyType';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import InnerTable from './components/InnerTable'; import InnerTable from './components/InnerTable';
import EnergyTypeAdd from './components/energyTypeAdd'; import EnergyTypeAdd from './components/energyTypeAdd';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'code', prop: 'code',
@ -48,9 +49,8 @@ const tableProps = [
minWidth: 150, minWidth: 150,
}, },
{ {
prop: 'name', prop: 'energyTypeLabel',
label: '能源类型', label: '能源类型',
filter: publicFormatter('energy_type'),
}, },
{ {
prop: 'unit', prop: 'unit',
@ -70,6 +70,7 @@ const tableProps = [
export default { export default {
name: 'EnergyType', name: 'EnergyType',
components: { EnergyTypeAdd }, components: { EnergyTypeAdd },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -96,7 +97,7 @@ export default {
} }
: undefined, : undefined,
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(220), heightNum: 220,
pricingMethodList: [ pricingMethodList: [
{ value: 0, label: '分时间段计价' }, { value: 0, label: '分时间段计价' },
{ value: 1, label: '分使用量计价' }, { value: 1, label: '分使用量计价' },
@ -118,9 +119,6 @@ export default {
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(220);
});
this.getList(); this.getList();
}, },
methods: { methods: {
@ -142,6 +140,11 @@ export default {
item.pricingMethod = i.label; item.pricingMethod = i.label;
} }
}); });
this.getDictDatas('energy_type').map((subItem) => {
if (item.name === subItem.value) {
item.energyTypeLabel = subItem.label;
}
});
}); });
this.list = arr; this.list = arr;
this.total = response.data.total; this.total = response.data.total;
@ -174,8 +177,9 @@ export default {
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
console.log(row);
this.$modal this.$modal
.confirm('是否确认删除能源类型为"' + row.name + '"的数据项?') .confirm('是否确认删除能源类型为"' + row.energyTypeLabel + '"的数据项?')
.then(function () { .then(function () {
return deleteEnergyType(row.id); return deleteEnergyType(row.id);
}) })

View File

@ -32,6 +32,7 @@
import { energyTablePage } from '@/api/base/energyQuantityManual'; import { energyTablePage } from '@/api/base/energyQuantityManual';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableNameConfigUpdate from './components/tableNameConfigUpdate.vue'; import tableNameConfigUpdate from './components/tableNameConfigUpdate.vue';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'energyType', prop: 'energyType',
@ -63,10 +64,11 @@ export default {
pageNo: 1, pageNo: 1,
pageSize: 100, pageSize: 100,
}, },
tableH: this.tableHeight(165), heightNum: 165,
centervisible: false, centervisible: false,
}; };
}, },
mixins: [tableHeightMixin],
created() { created() {
this.getList(); this.getList();
}, },

View File

@ -182,6 +182,7 @@ export default {
limitType: '', limitType: '',
minValue: 0, minValue: 0,
maxValue: 0, maxValue: 0,
tableName: '',
}, },
objIds: [], // objIds: [], //
isEdit: false, // isEdit: false, //
@ -214,6 +215,9 @@ export default {
if (res.code === 0) { if (res.code === 0) {
this.form = res.data; this.form = res.data;
this.form.plcParamId = res.data.plcParamId || ''; this.form.plcParamId = res.data.plcParamId || '';
this.form.tableName = this.form.tableName
? this.form.tableName + ''
: '';
this.form.method = this.form.method ? this.form.method + '' : ''; this.form.method = this.form.method ? this.form.method + '' : '';
this.form.limitType = this.form.limitType this.form.limitType = this.form.limitType
? this.form.limitType + '' ? this.form.limitType + ''

View File

@ -51,6 +51,7 @@ import { getEnergyTypeListAll } from '@/api/base/energyType';
import { getTree } from '@/api/analysis/energyAnalysis'; import { getTree } from '@/api/analysis/energyAnalysis';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import EnergyLimitAdd from './components/energyLimitAdd'; import EnergyLimitAdd from './components/energyLimitAdd';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'method', prop: 'method',
@ -104,6 +105,7 @@ const tableProps = [
export default { export default {
name: 'EnergyLimit', name: 'EnergyLimit',
components: { EnergyLimitAdd }, components: { EnergyLimitAdd },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -156,7 +158,6 @@ export default {
} }
: undefined, : undefined,
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
@ -181,9 +182,6 @@ export default {
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260);
});
this.getList(); this.getList();
this.getTypeList(); this.getTypeList();
// //

View File

@ -45,6 +45,7 @@ import { getEnergyOverlimitLogPage } from '@/api/monitoring/energyOverlimitLog';
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from '@/api/base/energyType';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import { parseTime } from '@/utils/ruoyi'; import { parseTime } from '@/utils/ruoyi';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
@ -123,6 +124,7 @@ const tableProps2 = [
]; ];
export default { export default {
name: 'EnergyOverlimitLog', name: 'EnergyOverlimitLog',
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -151,10 +153,10 @@ export default {
activeName: 'auto', activeName: 'auto',
tableProps, tableProps,
tableProps2, tableProps2,
tableH: this.tableHeight(260),
total: 0, total: 0,
list: [], list: [],
list2: [], list2: [],
heightNum: 300,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
@ -170,9 +172,6 @@ export default {
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260);
});
this.getList(); this.getList();
this.getTypeList(); this.getTypeList();
}, },

View File

@ -72,7 +72,7 @@ const tableProps = [
}, },
]; ];
export default { export default {
name: 'EnergyLimit', name: 'EnergyReport',
data() { data() {
return { return {
isFold: false, isFold: false,
@ -181,7 +181,7 @@ export default {
return energyReportPageExportAuto({ ...this.queryParams }); return energyReportPageExportAuto({ ...this.queryParams });
}) })
.then((response) => { .then((response) => {
this.$download.excel(response, '能统计报表.xls'); this.$download.excel(response, '能统计报表.xls');
}) })
.catch(() => {}); .catch(() => {});
} }

View File

@ -1,161 +1,171 @@
<template> <template>
<div class="app-container" id='energyReportSearchBox'> <div
class="app-container"
<!-- 搜索工作栏 --> id="energyReportSearchBox">
<search-bar <!-- 搜索工作栏 -->
:formConfigs="formConfig" <search-bar
ref="searchBarForm" :formConfigs="formConfig"
:isFold="isFold" ref="searchBarForm"
@headBtnClick="buttonClick" :isFold="isFold"
/> @headBtnClick="buttonClick" />
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
:max-height="tableH" :max-height="tableH" />
/> <pagination
<pagination :page.sync="queryParams.pageNo"
:page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
:limit.sync="queryParams.pageSize" :total="total"
:total="total" @pagination="getList" />
@pagination="getList" </div>
/>
</div>
</template> </template>
<script> <script>
import { energyReportPage, energyReportPageExport } from "@/api/monitoring/energyReport"; import {
import { getEnergyTypeListAll } from "@/api/base/energyType" energyReportPage,
energyReportPageExport,
} from '@/api/monitoring/energyReport';
import { publicFormatter } from '@/utils/dict';
import { getEnergyTypeListAll } from '@/api/base/energyType';
const tableProps = [ const tableProps = [
{ {
prop: 'statisticName', prop: 'statisticName',
label: '统计方案' label: '统计方案',
}, },
{ {
prop: 'energyType', prop: 'energyType',
label: '能源类型' label: '能源类型',
}, filter: publicFormatter('energy_type'),
{ },
prop: 'startValue', {
label: '抄表数(起始)' prop: 'startValue',
}, label: '抄表数(起始)',
{ },
prop: 'endValue', {
label: '抄表数(结束)' prop: 'endValue',
}, label: '抄表数(结束)',
{ },
prop: 'diffValue', {
label: '消耗量' prop: 'diffValue',
} label: '消耗量',
] },
];
export default { export default {
name: "EnergyReportSearch", name: 'EnergyReportSearch',
data() { data() {
return { return {
isFold: false, isFold: false,
formConfig: [ formConfig: [
{ {
type: 'input', type: 'input',
label: '统计方案', label: '统计方案',
param: 'statisticName' param: 'statisticName',
}, },
{ {
type: 'select', type: 'select',
label: '能源类型', label: '能源类型',
selectOptions: [], labelField: 'labelName',
param: 'energyTypeId', selectOptions: [],
filterable: true param: 'energyTypeId',
}, filterable: true,
{ },
type: 'datePicker', {
label: '时间', type: 'datePicker',
dateType: 'datetimerange', label: '时间',
format: 'yyyy-MM-dd HH:mm:ss', dateType: 'datetimerange',
valueFormat: "timestamp", format: 'yyyy-MM-dd HH:mm:ss',
rangeSeparator: '-', valueFormat: 'timestamp',
startPlaceholder: '开始时间', rangeSeparator: '-',
endPlaceholder: '结束时间', startPlaceholder: '开始时间',
param: 'timeVal', endPlaceholder: '结束时间',
defaultSelect: [], param: 'timeVal',
width: 350, defaultSelect: [],
clearable: false width: 350,
}, clearable: false,
{ },
type: 'button', {
btnName: '查询', type: 'button',
name: 'search', btnName: '查询',
color: 'primary' name: 'search',
}, color: 'primary',
{ },
type: 'separate' {
}, type: 'separate',
{ },
type: this.$auth.hasPermi('monitoring:energy-report-search:export') ? 'button' : '', {
btnName: '导出', type: this.$auth.hasPermi('monitoring:energy-report-search:export')
name: 'add', ? 'button'
color: 'primary', : '',
plain: true btnName: '导出',
} name: 'add',
], color: 'primary',
tableProps, plain: true,
tableH: this.tableHeight(260), },
// ],
total: 0, tableProps,
// tableH: this.tableHeight(260),
list: [], //
// total: 0,
queryParams: { //
pageNo: 1, list: [],
pageSize: 20, //
statisticName: null, queryParams: {
startTime: null, pageNo: 1,
endTime: null pageSize: 20,
}, statisticName: null,
energyTypeList: [] startTime: null,
}; endTime: null,
}, },
mounted() { energyTypeList: [],
window.addEventListener('resize', () => { };
this.tableH = this.tableHeight(260) },
this.isFold = this.searchBarWidth('energyReportSearchBox', 1180) mounted() {
}) window.addEventListener('resize', () => {
this.getList() this.tableH = this.tableHeight(260);
this.getTypeList() this.isFold = this.searchBarWidth('energyReportSearchBox', 1180);
this.isFold = this.searchBarWidth('energyReportSearchBox', 1180) });
}, this.getList();
methods: { this.getTypeList();
getTypeList() { this.isFold = this.searchBarWidth('energyReportSearchBox', 1180);
getEnergyTypeListAll().then((res) => { },
this.formConfig[1].selectOptions = res.data || [] methods: {
}) getTypeList() {
}, getEnergyTypeListAll().then((res) => {
buttonClick(val) { this.formConfig[1].selectOptions = res.data || [];
switch (val.btnName) { });
case 'search': },
this.queryParams.pageNo = 1 buttonClick(val) {
this.queryParams.statisticName = val.statisticName switch (val.btnName) {
this.queryParams.energyTypeId = val.energyTypeId case 'search':
this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null this.queryParams.pageNo = 1;
this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null this.queryParams.statisticName = val.statisticName;
this.getList() this.queryParams.energyTypeId = val.energyTypeId;
break this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null;
default: this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null;
this.$modal.confirm('是否确认导出').then(() => { this.getList();
return energyReportPageExport({...this.queryParams}); break;
}).then(response => { default:
this.$download.excel(response, '能源统计查询报表.xls'); this.$modal
}).catch(() => {}) .confirm('是否确认导出')
} .then(() => {
}, return energyReportPageExport({ ...this.queryParams });
/** 查询列表 */ })
getList() { .then((response) => {
energyReportPage({...this.queryParams}).then(response => { this.$download.excel(response, '能源统计查询报表.xls');
this.list = response.data.list || []; })
this.total = response.data.total; .catch(() => {});
}); }
} },
} /** 查询列表 */
getList() {
energyReportPage({ ...this.queryParams }).then((response) => {
this.list = response.data.list || [];
this.total = response.data.total;
});
},
},
}; };
</script> </script>

View File

@ -1,230 +1,271 @@
<template> <template>
<div> <div>
<el-drawer :title="drawerTitle" :visible.sync="visible" size="70%" @close='closeD' :show-close='false'> <el-drawer
<div class="box"> :title="drawerTitle"
<el-form :inline="true"> :visible.sync="visible"
<el-form-item label="方案名称"> size="70%"
<el-input v-model="name" size='small' readonly></el-input> @close="closeD"
</el-form-item> :show-close="false">
<el-form-item label="能源类型"> <div class="box">
<el-input v-model="energyType" size='small' readonly></el-input> <el-form :inline="true">
</el-form-item> <el-form-item label="方案名称">
<el-form-item> <el-input
<el-button type="success" size='small' v-if="showBtn" plain @click="addNew">新增</el-button> v-model="name"
<el-button type="danger" size='small' v-if="showBtn" plain @click="deleteAll">批量删除</el-button> size="small"
</el-form-item> readonly></el-input>
</el-form> </el-form-item>
<base-table <el-form-item label="能源类型">
:page="queryParams.pageNo" <el-input
:limit="queryParams.pageSize" v-model="energyTypeLabel"
:table-props="tableProps" size="small"
:table-data="tableData" readonly></el-input>
:max-height="tableH" </el-form-item>
:selectWidth="55" <el-form-item>
@selection-change="selectChange" <el-button
> type="success"
<method-btn size="small"
v-if="tableBtn.length" v-if="showBtn"
slot="handleBtn" plain
:width="80" @click="addNew">
label="操作" 新增
:method-list="tableBtn" </el-button>
@clickBtn="handleClick" <el-button
/> type="danger"
</base-table> size="small"
<pagination v-if="showBtn"
:page.sync="queryParams.pageNo" plain
:limit.sync="queryParams.pageSize" @click="deleteAll">
:total="total" 批量删除
@pagination="getList" </el-button>
/> </el-form-item>
</div> </el-form>
</el-drawer> <base-table
<!-- 新增 --> :page="queryParams.pageNo"
<energy-statistics-det-add ref="energyStatistics" @closeDet="closeDet" /> :limit="queryParams.pageSize"
</div> :table-props="tableProps"
:table-data="tableData"
:max-height="tableH"
:selectWidth="55"
@selection-change="selectChange">
<method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="80"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" />
</base-table>
<pagination
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" />
</div>
</el-drawer>
<!-- 新增 -->
<energy-statistics-det-add
ref="energyStatistics"
@closeDet="closeDet" />
</div>
</template> </template>
<script> <script>
import { getEnergyStatisticsDetPage, deleteEnergyStatisticsDet, deleteMany } from '@/api/monitoring/energyStatisticsDet' import {
import EnergyStatisticsDetAdd from './energyStatisticsDetAdd' getEnergyStatisticsDetPage,
import { publicFormatter } from '@/utils/dict' deleteEnergyStatisticsDet,
deleteMany,
} from '@/api/monitoring/energyStatisticsDet';
import EnergyStatisticsDetAdd from './energyStatisticsDetAdd';
import { publicFormatter } from '@/utils/dict';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '所属对象' label: '所属对象',
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码' label: '对象编码',
}, },
{ {
prop: 'paramName', prop: 'paramName',
label: '参数名称' label: '参数名称',
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('energy_unit') filter: publicFormatter('unit_dict'),
}, },
{ {
prop: 'desc', prop: 'desc',
label: '描述' label: '描述',
} },
] ];
export default { export default {
name: 'EnergyStatisticsDet', name: 'EnergyStatisticsDet',
props: { props: {
energyTypeList: { energyTypeList: {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return [] return [];
} },
} },
}, },
data() { data() {
return { return {
visible: false, visible: false,
drawerTitle: '', drawerTitle: '',
tableProps, tableProps,
tableData: [], tableData: [],
tableBtn: [], tableBtn: [],
tableH: this.tableHeight(115), tableH: this.tableHeight(115),
total: 0, total: 0,
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 30, pageSize: 30,
statisticsId: null statisticsId: null,
}, },
name: '', name: '',
energyType: '', energyTypeLabel: '',
energyTypeId: '', energyTypeId: '',
// //
addOrEditTitle: "", addOrEditTitle: '',
// //
centervisible: false, centervisible: false,
collectionList: [ collectionList: [
{value: 0,label: '否'}, { value: 0, label: '否' },
{value: 1,label: '是'} { value: 1, label: '是' },
], ],
showBtn: true, showBtn: true,
selectedList: [] selectedList: [],
} };
}, },
components: { EnergyStatisticsDetAdd }, components: { EnergyStatisticsDetAdd },
created() { created() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.tableH = this.tableHeight(115) this.tableH = this.tableHeight(115);
}) });
}, },
methods: { methods: {
init(data,title) { init(data, title) {
this.visible = true this.visible = true;
this.queryParams.statisticsId = data.id this.queryParams.statisticsId = data.id;
this.name = data.name this.name = data.name;
this.energyType = data.energyType this.energyTypeLabel = data.energyTypeLabel;
this.energyTypeId = data.energyTypeId this.energyTypeId = data.energyTypeId;
this.getList() this.getList();
if (title === 'detail') { if (title === 'detail') {
this.drawerTitle = '查看参数' this.drawerTitle = '查看参数';
this.showBtn = false this.showBtn = false;
this.tableBtn = [] this.tableBtn = [];
} else { } else {
this.drawerTitle = '参数绑定' this.drawerTitle = '参数绑定';
this.showBtn = true this.showBtn = true;
this.tableBtn = [ this.tableBtn = [
{ {
type: 'delete', type: 'delete',
btnName: '删除' btnName: '删除',
} },
] ];
} }
}, },
getList() { getList() {
console.log(this.queryParams) console.log(this.queryParams);
getEnergyStatisticsDetPage({...this.queryParams}).then((res) => { getEnergyStatisticsDetPage({ ...this.queryParams }).then((res) => {
let arr = res.data.list || [] let arr = res.data.list || [];
arr&&arr.map(item => { arr &&
this.collectionList.map(i => { arr.map((item) => {
if (item.collection === i.value) { this.collectionList.map((i) => {
item.collection = i.label if (item.collection === i.value) {
} item.collection = i.label;
}) }
this.energyTypeList.map(j => { });
if (item.typeId === j.id) { this.energyTypeList.map((j) => {
item.typeId = j.name if (item.typeId === j.id) {
} item.typeId = j.name;
}) }
}) });
this.tableData = arr });
this.total = res.data.total; this.tableData = arr;
}) this.total = res.data.total;
}, });
// },
addNew() { //
this.$nextTick(() => { addNew() {
this.$refs.energyStatistics.init({'statisticsId': this.queryParams.statisticsId, energyTypeId:this.energyTypeId}) this.$nextTick(() => {
}) this.$refs.energyStatistics.init({
}, statisticsId: this.queryParams.statisticsId,
selectChange(val) { energyTypeId: this.energyTypeId,
console.log(val) });
this.selectedList = val });
}, },
// selectChange(val) {
deleteAll() { console.log(val);
let arr = [] this.selectedList = val;
if (this.selectedList.length === 0) { },
this.$modal.msgWarning("请选勾选数据") //
return false deleteAll() {
} else { let arr = [];
this.selectedList.map((item) => { if (this.selectedList.length === 0) {
arr.push(item.id) this.$modal.msgWarning('请选勾选数据');
}) return false;
} } else {
this.$modal.confirm('是否确认删除所有勾选的数据项?').then(function() { this.selectedList.map((item) => {
return deleteMany(arr); arr.push(item.id);
}).then(() => { });
this.queryParams.pageNo = 1 }
this.getList() this.$modal
this.$modal.msgSuccess("删除成功") .confirm('是否确认删除所有勾选的数据项?')
}).catch(() => {}) .then(function () {
}, return deleteMany(arr);
handleCancel() { })
this.$refs.energyStatistics.formClear() .then(() => {
this.centervisible = false this.queryParams.pageNo = 1;
this.addOrEditTitle = '' this.getList();
}, this.$modal.msgSuccess('删除成功');
handleConfirm() { })
this.$refs.energyStatistics.submitForm() .catch(() => {});
}, },
successSubmit() { handleCancel() {
this.handleCancel() this.$refs.energyStatistics.formClear();
this.getList() this.centervisible = false;
}, this.addOrEditTitle = '';
handleClick(val) { },
this.handleDelete(val.data) handleConfirm() {
}, this.$refs.energyStatistics.submitForm();
/** 删除按钮操作 */ },
handleDelete(row) { successSubmit() {
this.$modal.confirm('是否确认删除参数列名为"' + row.paramName + '"的数据项?').then(function() { this.handleCancel();
return deleteEnergyStatisticsDet(row.id); this.getList();
}).then(() => { },
this.queryParams.pageNo = 1 handleClick(val) {
this.getList() this.handleDelete(val.data);
this.$modal.msgSuccess("删除成功") },
}).catch(() => {}) /** 删除按钮操作 */
}, handleDelete(row) {
closeD() { this.$modal
this.$emit('closeDrawer') .confirm('是否确认删除参数列名为"' + row.paramName + '"的数据项?')
}, .then(function () {
closeDet() { // return deleteEnergyStatisticsDet(row.id);
this.getList() })
} .then(() => {
} this.queryParams.pageNo = 1;
} this.getList();
this.$modal.msgSuccess('删除成功');
})
.catch(() => {});
},
closeD() {
this.$emit('closeDrawer');
},
closeDet() {
//
this.getList();
},
},
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.box { .box {
padding: 0 32px; padding: 0 32px;
} }
</style> </style>

View File

@ -1,179 +1,178 @@
<template> <template>
<el-drawer <el-drawer
title="新增" title="新增"
:visible.sync="centervisible" :visible.sync="centervisible"
size="60%" size="60%"
@close='closeA' @close="closeA"
:show-close='false'> :show-close="false">
<div class="box"> <div class="box">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar
:formConfigs="formConfig" :formConfigs="formConfig"
ref="searchBarForm" ref="searchBarForm"
:removeBlue='true' :removeBlue="true"
@headBtnClick="buttonClick" @headBtnClick="buttonClick" />
/> <!-- 列表 -->
<!-- 列表 --> <base-table
<base-table :page="queryParams.pageNo"
:page="queryParams.pageNo" :limit="queryParams.pageSize"
:limit="queryParams.pageSize" :table-props="tableProps"
:table-props="tableProps" :table-data="list"
:table-data="list" :max-height="tableH"
:max-height="tableH" :selectWidth="55"
:selectWidth="55" @selection-change="selectChange"></base-table>
@selection-change="selectChange" <pagination
> :page.sync="queryParams.pageNo"
</base-table> :limit.sync="queryParams.pageSize"
<pagination :total="total"
:page.sync="queryParams.pageNo" @pagination="getList" />
:limit.sync="queryParams.pageSize" </div>
:total="total" </el-drawer>
@pagination="getList"
/>
</div>
</el-drawer>
</template> </template>
<script> <script>
import { addParamPage, createEnergyStatisticsDet } from '@/api/monitoring/energyStatisticsDet' import {
import { publicFormatter } from '@/utils/dict' addParamPage,
createEnergyStatisticsDet,
} from '@/api/monitoring/energyStatisticsDet';
import { publicFormatter } from '@/utils/dict';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '所属对象' label: '所属对象',
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码' label: '对象编码',
}, },
{ {
prop: 'paramName', prop: 'paramName',
label: '参数名称' label: '参数名称',
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('energy_unit') filter: publicFormatter('unit_dict'),
}, },
{ {
prop: 'desc', prop: 'desc',
label: '描述' label: '描述',
} },
] ];
export default { export default {
name: 'EnergyStatisticsDetAdd', name: 'EnergyStatisticsDetAdd',
data() { data() {
return { return {
centervisible: false, centervisible: false,
formConfig: [ formConfig: [
{ {
type: 'select', type: 'select',
label: '对象类型', label: '对象类型',
selectOptions: this.getDictDatas(this.DICT_TYPE.OBJECT_TYPE), selectOptions: this.getDictDatas(this.DICT_TYPE.OBJECT_TYPE),
labelField: 'label', labelField: 'label',
valueField: 'value', valueField: 'value',
param: 'objType' param: 'objType',
}, },
{ {
type: 'input', type: 'input',
label: '参数名称', label: '参数名称',
placeholder: '参数名称', placeholder: '参数名称',
param: 'paramName' param: 'paramName',
}, },
{ {
type: 'button', type: 'button',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary' color: 'primary',
}, },
{ {
type: 'separate' type: 'separate',
}, },
{ {
type: 'button', type: 'button',
btnName: '关联', btnName: '关联',
name: 'add', name: 'add',
color: 'primary', color: 'primary',
plain: true plain: true,
} },
], ],
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
energyTypeId: null, energyTypeId: null,
statisticId: null, statisticId: null,
paramName: '', paramName: '',
objType: '' objType: '',
}, },
tableProps, tableProps,
list: [], list: [],
total: 0, total: 0,
tableH: this.tableHeight(260), tableH: this.tableHeight(260),
selectedList: [] selectedList: [],
} };
}, },
methods: { methods: {
init(param) { init(param) {
this.queryParams.statisticId = param.statisticsId this.queryParams.statisticId = param.statisticsId;
this.queryParams.energyTypeId = param.energyTypeId this.queryParams.energyTypeId = param.energyTypeId;
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260) this.tableH = this.tableHeight(260);
}) });
this.centervisible = true this.centervisible = true;
this.getList() this.getList();
}, },
getList() { getList() {
addParamPage({...this.queryParams}).then((res) => { addParamPage({ ...this.queryParams }).then((res) => {
this.list = res.data.list || [] this.list = res.data.list || [];
this.total = res.data.total this.total = res.data.total;
}) });
}, },
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.objType = val.objType this.queryParams.objType = val.objType;
this.queryParams.paramName = val.paramName this.queryParams.paramName = val.paramName;
this.getList() this.getList();
break break;
default: default:
// //
this.connectParam() this.connectParam();
} }
}, },
// //
selectChange(val) { selectChange(val) {
this.selectedList = val this.selectedList = val;
}, },
// //
connectParam() { connectParam() {
let param = { let param = {
statisticsId: this.queryParams.statisticId, statisticsId: this.queryParams.statisticId,
plcParamIds: [] plcParamIds: [],
} };
if (this.selectedList.length === 0) { if (this.selectedList.length === 0) {
this.$modal.msgWarning("请选勾选数据") this.$modal.msgWarning('请选勾选数据');
return false return false;
} else { } else {
this.selectedList.map((item) => { this.selectedList.map((item) => {
param.plcParamIds.push(item.id) param.plcParamIds.push(item.id);
}) });
} }
createEnergyStatisticsDet({...param}).then((res) => { createEnergyStatisticsDet({ ...param }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess("操作成功"); this.$modal.msgSuccess('操作成功');
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList() this.getList();
} }
}) });
}, },
closeA() { closeA() {
this.$emit('closeDet') this.$emit('closeDet');
} },
} },
} };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.box { .box {
padding: 0 32px; padding: 0 32px;
} }
</style> </style>

View File

@ -53,6 +53,7 @@ import { publicFormatter } from '@/utils/dict';
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from '@/api/base/energyType';
import EnergyStatisticsAdd from './components/energyStatisticsAdd'; import EnergyStatisticsAdd from './components/energyStatisticsAdd';
import EnergyStatisticsDet from './components/energyStatisticsDet'; import EnergyStatisticsDet from './components/energyStatisticsDet';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'name', prop: 'name',
@ -70,9 +71,9 @@ const tableProps = [
filter: publicFormatter('statistic_type'), filter: publicFormatter('statistic_type'),
}, },
{ {
prop: 'energyType', prop: 'energyTypeLabel',
label: '能源类型', label: '能源类型',
filter: publicFormatter('energy_type'), showOverflowtooltip: true,
}, },
{ {
prop: 'paramNum', prop: 'paramNum',
@ -86,6 +87,7 @@ const tableProps = [
export default { export default {
name: 'EnergyStatistics', name: 'EnergyStatistics',
components: { EnergyStatisticsAdd, EnergyStatisticsDet }, components: { EnergyStatisticsAdd, EnergyStatisticsDet },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -139,7 +141,6 @@ export default {
} }
: undefined, : undefined,
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
@ -158,9 +159,6 @@ export default {
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260);
});
this.getList(); this.getList();
}, },
mounted() { mounted() {
@ -187,6 +185,13 @@ export default {
getList() { getList() {
getEnergyStatisticsPage(this.queryParams).then((response) => { getEnergyStatisticsPage(this.queryParams).then((response) => {
let arr = response.data.list || []; let arr = response.data.list || [];
arr.map((item) => {
this.getDictDatas('energy_type').map((subItem) => {
if (item.energyType === subItem.value) {
item.energyTypeLabel = subItem.label;
}
});
});
this.list = arr; this.list = arr;
this.total = response.data.total; this.total = response.data.total;
}); });

View File

@ -1,271 +1,289 @@
<template> <template>
<div class="orderEnergyContainer"> <div class="orderEnergyContainer">
<div class="box1"> <div class="box1">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar
:formConfigs="formConfig" :formConfigs="formConfig"
ref="searchBarForm" ref="searchBarForm"
@headBtnClick="buttonClick" @headBtnClick="buttonClick" />
/> </div>
</div> <div class="box2">
<div class="box2"> <div class="boxTitle">
<div class="boxTitle"> <span class="blueTitle"></span>
<span class="blueTitle"></span> <span>工单信息</span>
<span>工单信息</span> </div>
</div> <el-row>
<el-row> <el-col :span="4">
<el-col :span='4'> <div class="blodTip">工单名称</div>
<div class="blodTip">工单名称</div> <div class="lightTip">{{ orderMsg.name }}</div>
<div class="lightTip">{{ orderMsg.name }}</div> </el-col>
</el-col> <el-col :span="4">
<el-col :span='4'> <div class="blodTip">产品名称</div>
<div class="blodTip">产品名称</div> <div class="lightTip">{{ orderMsg.productName }}</div>
<div class="lightTip">{{orderMsg.productName }}</div> </el-col>
</el-col> <el-col :span="4">
<el-col :span='4'> <div class="blodTip">计划完成数量</div>
<div class="blodTip">计划完成数量</div> <div class="lightTip">{{ orderMsg.planQuantity }}</div>
<div class="lightTip">{{orderMsg.planQuantity }}</div> </el-col>
</el-col> <el-col :span="4">
<el-col :span='4'> <div class="blodTip">实际开始时间</div>
<div class="blodTip">实际开始时间</div> <div class="lightTip">{{ parseTime(orderMsg.startProduceTime) }}</div>
<div class="lightTip">{{ parseTime(orderMsg.startProduceTime) }}</div> </el-col>
</el-col> <el-col :span="4">
<el-col :span='4'> <div class="blodTip">实际完成时间</div>
<div class="blodTip">实际完成时间</div> <div class="lightTip">
<div class="lightTip">{{ parseTime(orderMsg.finishProduceTime) }}</div> {{ parseTime(orderMsg.finishProduceTime) }}
</el-col> </div>
<el-col :span='4'> </el-col>
<div class="blodTip">实际加工数量</div> <el-col :span="4">
<div class="lightTip">{{orderMsg.actualQuantity }}</div> <div class="blodTip">实际加工数量</div>
</el-col> <div class="lightTip">{{ orderMsg.actualQuantity }}</div>
</el-row> </el-col>
</div> </el-row>
<div class="box3"> </div>
<div class="boxTitle"> <div class="box3">
<span class="blueTitle"></span> <div class="boxTitle">
<span>能耗信息</span> <span class="blueTitle"></span>
</div> <span>能耗信息</span>
<div class="toggleTabBox"> </div>
<div :class="{ active: activeModule === 'dataList' }" @click="toggleTab('dataList')">数据列表</div> <div class="toggleTabBox">
<div :class="{ active: activeModule === 'barChart' }" @click="toggleTab('barChart')">柱状图</div> <div
</div> :class="{ active: activeModule === 'dataList' }"
<div> @click="toggleTab('dataList')">
<div v-show="activeModule === 'dataList'"> 数据列表
<!-- 表格 --> </div>
<base-table <div
:page="queryParams.pageNo" :class="{ active: activeModule === 'barChart' }"
:limit="queryParams.pageSize" @click="toggleTab('barChart')">
:table-props="tableProps" 柱状图
:table-data="tableData" </div>
:max-height="tableH" </div>
/> <div>
</div> <div v-show="activeModule === 'dataList'">
<!-- 图形 --> <!-- 表格 -->
<div v-show="activeModule === 'barChart'"> <base-table
<bar-chart ref="orderEnergyChart" :chartData="chartData"/> :page="queryParams.pageNo"
</div> :limit="queryParams.pageSize"
</div> :table-props="tableProps"
</div> :table-data="tableData"
</div> :max-height="tableH" />
</div>
<!-- 图形 -->
<div v-show="activeModule === 'barChart'">
<bar-chart
ref="orderEnergyChart"
:chartData="chartData" />
</div>
</div>
</div>
</div>
</template> </template>
<script> <script>
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '对象名称' label: '对象名称',
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码' label: '对象编码',
}, },
{ {
prop: 'energyType', prop: 'energyType',
label: '能源类型' label: '能源类型',
}, },
{ {
prop: 'startNum', prop: 'startNum',
label: '工单开始值' label: '工单开始值',
}, },
{ {
prop: 'endNum', prop: 'endNum',
label: '工单结束值/当前值' label: '工单结束值/当前值',
}, },
{ {
prop: 'useNum', prop: 'useNum',
label: '使用量' label: '使用量',
} },
] ];
import { getEnergyTypeListAll } from '@/api/base/energyType' import { getEnergyTypeListAll } from '@/api/base/energyType';
import { workOrderList } from '@/api/base/orderManage' import { workOrderList } from '@/api/base/orderManage';
import { getWorkOrderMsg, getOrderEnergyData } from '@/api/monitoring/orderEnergy' import {
import BarChart from "./components/barChart" getWorkOrderMsg,
getOrderEnergyData,
} from '@/api/monitoring/orderEnergy';
import BarChart from './components/barChart';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
export default { export default {
name: 'OrderEnergy', name: 'OrderEnergy',
data() { mixins: [tableHeightMixin],
return { data() {
formConfig: [ return {
{ formConfig: [
type: 'select', {
label: '工单', type: 'select',
selectOptions: [], label: '工单',
param: 'workOrderId', selectOptions: [],
clearable: false param: 'workOrderId',
}, clearable: false,
{ },
type: 'select', {
label: '能源类型', type: 'select',
selectOptions: [], label: '能源类型',
param: 'energyTypeId', selectOptions: [],
filterable: true, param: 'energyTypeId',
width: 120, labelField: 'labelName',
clearable: false filterable: true,
}, width: 120,
{ clearable: false,
type: 'select', },
label: '对象维度', {
selectOptions: this.getDictDatas(this.DICT_TYPE.OBJECT_TYPE), type: 'select',
labelField: 'label', label: '对象维度',
valueField: 'value', selectOptions: this.getDictDatas(this.DICT_TYPE.OBJECT_TYPE),
param: 'objType', labelField: 'label',
width: 100, valueField: 'value',
clearable: false param: 'objType',
}, width: 100,
{ clearable: false,
type: 'button', },
btnName: '查询', {
name: 'search', type: 'button',
color: 'primary' btnName: '查询',
} name: 'search',
], color: 'primary',
tableProps, },
tableData: [], ],
tableH: this.tableHeight(400), tableProps,
// tableData: [],
queryParams: { heightNum: 400,
workOrderId: '', //
objType: '', queryParams: {
energyTypeId: '' workOrderId: '',
}, objType: '',
orderMsg: {}, energyTypeId: '',
chartData: [], },
activeModule: 'dataList' orderMsg: {},
} chartData: [],
}, activeModule: 'dataList',
components: { BarChart }, };
mounted() { },
window.addEventListener('resize', () => { components: { BarChart },
this.tableH = this.tableHeight(400) mounted() {
}) this.getListArr();
this.getListArr() },
}, methods: {
methods: { getListArr() {
getListArr() { workOrderList().then((res) => {
workOrderList().then(res => { this.formConfig[0].selectOptions = res.data || [];
this.formConfig[0].selectOptions = res.data || [] });
}) getEnergyTypeListAll().then((res) => {
getEnergyTypeListAll().then(res => { this.formConfig[1].selectOptions = res.data || [];
this.formConfig[1].selectOptions = res.data || [] });
}) },
}, buttonClick(val) {
buttonClick(val) { if (!val.workOrderId) {
if (!val.workOrderId) { this.$modal.msgWarning('工单不能为空');
this.$modal.msgWarning('工单不能为空') return false;
return false }
} if (!val.energyTypeId) {
if (!val.energyTypeId) { this.$modal.msgWarning('能源类型不能为空');
this.$modal.msgWarning('能源类型不能为空') return false;
return false }
} if (!val.objType) {
if (!val.objType) { this.$modal.msgWarning('对象维度不能为空');
this.$modal.msgWarning('对象维度不能为空') return false;
return false }
} this.queryParams.workOrderId = val.workOrderId;
this.queryParams.workOrderId = val.workOrderId this.queryParams.objType = val.objType;
this.queryParams.objType = val.objType this.queryParams.energyTypeId = val.energyTypeId;
this.queryParams.energyTypeId = val.energyTypeId getWorkOrderMsg({ ...this.queryParams }).then((res) => {
getWorkOrderMsg({ ...this.queryParams }).then(res => { this.orderMsg = res.data || {};
this.orderMsg = res.data || {} getOrderEnergyData({
getOrderEnergyData({ ...this.queryParams,
...this.queryParams, startProduceTime: res.data.startProduceTime || '',
startProduceTime: res.data.startProduceTime || '', finishProduceTime: res.data.finishProduceTime || '',
finishProduceTime: res.data.finishProduceTime || '' }).then((result) => {
}).then(result => { this.tableData = result.data || [];
this.tableData = result.data || [] this.chartData = result.data || [];
this.chartData = result.data || [] });
}) });
}) },
}, toggleTab(val) {
toggleTab(val) { this.activeModule = val;
this.activeModule = val if (this.activeModule === 'barChart') {
if (this.activeModule === 'barChart') { this.$nextTick((res) => {
this.$nextTick((res) => { this.$refs.orderEnergyChart.getChart();
this.$refs.orderEnergyChart.getChart() });
}) }
} },
}, headBtnClick() {},
headBtnClick() {} },
} };
}
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
.orderEnergyContainer { .orderEnergyContainer {
background-color: rgb(242, 244, 249); background-color: rgb(242, 244, 249);
.box1, .box2, .box3 { .box1,
background-color: #fff; .box2,
border-radius: 9px; .box3 {
} background-color: #fff;
.box1 { border-radius: 9px;
height: 64px; }
padding: 12px 16px 0; .box1 {
} height: 64px;
.box2 { padding: 12px 16px 0;
height: 122px; }
margin: 8px 0; .box2 {
padding: 16px; height: 122px;
.blodTip { margin: 8px 0;
font-weight: 600; padding: 16px;
color: rgba(0,0,0,0.85); .blodTip {
margin-bottom: 8px; font-weight: 600;
} color: rgba(0, 0, 0, 0.85);
.lightTip { margin-bottom: 8px;
font-weight: 400; }
color: rgba(102,102,102,0.75); .lightTip {
} font-weight: 400;
} color: rgba(102, 102, 102, 0.75);
.box3 { overflow: hidden;
padding: 16px; white-space: nowrap;
height: calc(100vh - 330px); text-overflow: ellipsis;
.toggleTabBox { }
display: inline-block; }
div { .box3 {
display: inline-block; padding: 16px;
padding:0 8px 4px; height: calc(100vh - 330px);
color: rgba(102, 102, 102, 0.5); .toggleTabBox {
border-bottom: 2px solid rgba(242, 244, 249, 1); display: inline-block;
cursor: pointer; div {
} display: inline-block;
.active { padding: 0 8px 4px;
color: rgba(0,0,0,0.85); color: rgba(102, 102, 102, 0.5);
border-bottom-color: #0B58FF; border-bottom: 2px solid rgba(242, 244, 249, 1);
} cursor: pointer;
} }
} .active {
.boxTitle { color: rgba(0, 0, 0, 0.85);
display: inline-block; border-bottom-color: #0b58ff;
font-size: 16px; }
font-weight: 400; }
color: #000000; }
margin:0 10px 20px 0; .boxTitle {
} display: inline-block;
.blueTitle { font-size: 16px;
content: ''; font-weight: 400;
display: inline-block; color: #000000;
width: 4px; margin: 0 10px 20px 0;
height: 18px; }
background-color: #0B58FF; .blueTitle {
border-radius: 1px; content: '';
margin-right: 8px; display: inline-block;
vertical-align: bottom; width: 4px;
} height: 18px;
background-color: #0b58ff;
border-radius: 1px;
margin-right: 8px;
vertical-align: bottom;
}
} }
</style> </style>

View File

@ -290,6 +290,7 @@ export default {
sunNum += item.orderMonitorVOS[i].actualquantity || 0; sunNum += item.orderMonitorVOS[i].actualquantity || 0;
arr3.push(subObj); arr3.push(subObj);
} }
woIdString = woIdString.slice(0, -1);
} }
item.woIdString = woIdString; item.woIdString = woIdString;
arr3.push({ arr3.push({