projects/mesxc-zhp #304
6
.env.dev
6
.env.dev
@ -1,8 +1,8 @@
|
|||||||
###
|
###
|
||||||
# @Author: Do not edit
|
# @Author: Do not edit
|
||||||
# @Date: 2023-08-29 09:40:39
|
# @Date: 2023-08-29 09:40:39
|
||||||
# @LastEditTime: 2024-04-01 08:31:57
|
# @LastEditTime: 2024-04-03 11:22:19
|
||||||
# @LastEditors: zhp
|
# @LastEditors: DY
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
# 开发环境配置
|
# 开发环境配置
|
||||||
@ -18,7 +18,7 @@ VUE_APP_TITLE = MES系统
|
|||||||
# VUE_APP_BASE_API = 'http://192.168.2.173:48080'
|
# VUE_APP_BASE_API = 'http://192.168.2.173:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.49:48082'
|
# VUE_APP_BASE_API = 'http://192.168.1.49:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.8:48082'
|
# VUE_APP_BASE_API = 'http://192.168.1.8:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.4.159:48080'
|
# VUE_APP_BASE_API = 'http://192.168.4.173:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.104:48082'
|
# VUE_APP_BASE_API = 'http://192.168.1.104:48082'
|
||||||
VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.62:48082'
|
# VUE_APP_BASE_API = 'http://192.168.1.62:48082'
|
||||||
|
@ -35,3 +35,21 @@ export function getQoq(data) {
|
|||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取能源设备树
|
||||||
|
export function getTree() {
|
||||||
|
return request({
|
||||||
|
url: '/analysis/energy-analysis/getTree',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 导出(走势分析)
|
||||||
|
export function exportTrend(data) {
|
||||||
|
return request({
|
||||||
|
url: '/analysis/energy-analysis/exportTrend',
|
||||||
|
method: 'post',
|
||||||
|
responseType: 'blob',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
@ -68,3 +68,4 @@ export function exportEnergyTypeExcel(query) {
|
|||||||
responseType: 'blob'
|
responseType: 'blob'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
|
||||||
window.addEventListener('resize', this._setTableHeight);
|
window.addEventListener('resize', this._setTableHeight);
|
||||||
},
|
},
|
||||||
destroyed() {
|
destroyed() {
|
||||||
@ -12,7 +13,8 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
_setTableHeight() {
|
_setTableHeight() {
|
||||||
this.tableH = this.tableHeight(260);
|
this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
|
||||||
|
// this.tableH = this.tableHeight(260);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -97,6 +97,8 @@ export const DICT_TYPE = {
|
|||||||
TABLE_NAME: 'table_name',
|
TABLE_NAME: 'table_name',
|
||||||
METHOD: 'method',
|
METHOD: 'method',
|
||||||
PUSH: 'push',
|
PUSH: 'push',
|
||||||
|
ENERGY_TYPE: 'energy_type',
|
||||||
|
|
||||||
|
|
||||||
// ============== ORDER - 订单模块 =============
|
// ============== ORDER - 订单模块 =============
|
||||||
ORDER_STATUS: 'order_status',
|
ORDER_STATUS: 'order_status',
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -33,38 +34,49 @@ import {
|
|||||||
getcoreAlarmLogPage
|
getcoreAlarmLogPage
|
||||||
} from '@/api/base/coreAlarmLog';
|
} from '@/api/base/coreAlarmLog';
|
||||||
import {DICT_TYPE, getDictDatas, publicFormatter } from "@/utils/dict";
|
import {DICT_TYPE, getDictDatas, publicFormatter } from "@/utils/dict";
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'alarmTime',
|
prop: 'alarmTime',
|
||||||
label: '报警时间',
|
label: '报警时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmSource',
|
prop: 'alarmSource',
|
||||||
label: '报警来源'
|
label: '报警来源',
|
||||||
|
width: 200,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmType',
|
prop: 'alarmType',
|
||||||
label: '报警类型'
|
label: '报警类型',
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmGrade',
|
prop: 'alarmGrade',
|
||||||
label: '报警级别',
|
label: '报警级别',
|
||||||
filter: publicFormatter(DICT_TYPE.EQU_ALARM_LEVEL)
|
filter: publicFormatter(DICT_TYPE.EQU_ALARM_LEVEL),
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmReason',
|
prop: 'alarmReason',
|
||||||
label: '报警原因'
|
label: '报警原因',
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'alarmContent',
|
prop: 'alarmContent',
|
||||||
label: '报警详细'
|
label: '报警详细',
|
||||||
|
showOverflowtooltip: true
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
@ -74,7 +86,7 @@ export default {
|
|||||||
tableBtn: [].filter((v)=>v),
|
tableBtn: [].filter((v)=>v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
total: 0,
|
total: 0,
|
||||||
alarmSource: undefined,
|
alarmSource: undefined,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-03-20 16:20:39
|
* @LastEditTime: 2024-04-02 16:46:17
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -96,7 +96,7 @@ export default {
|
|||||||
dataRule: {
|
dataRule: {
|
||||||
code: [{ required: true, message: "客户编号不能为空", trigger: "blur" }],
|
code: [{ required: true, message: "客户编号不能为空", trigger: "blur" }],
|
||||||
name: [{ required: true, message: "客户名称不能为空", trigger: "blur" }],
|
name: [{ required: true, message: "客户名称不能为空", trigger: "blur" }],
|
||||||
contact: [{ required: true, message: "联系人不能为空", trigger: "blur" }],
|
// contact: [{ required: true, message: "联系人不能为空", trigger: "blur" }],
|
||||||
telephone: [
|
telephone: [
|
||||||
{ required: false, trigger: "blur", message: "手机号不能为空" },
|
{ required: false, trigger: "blur", message: "手机号不能为空" },
|
||||||
{
|
{
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -45,41 +46,56 @@ import {
|
|||||||
getCustomerPage,
|
getCustomerPage,
|
||||||
deleteCustomer
|
deleteCustomer
|
||||||
} from '@/api/base/coreCustomer';
|
} from '@/api/base/coreCustomer';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '客户名称'
|
label: '客户名称',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '客户编码'
|
label: '客户编码',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'contact',
|
prop: 'contact',
|
||||||
label: '联系人'
|
label: '联系人',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'telephone',
|
prop: 'telephone',
|
||||||
label: '联系电话'
|
label: '联系电话',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'address',
|
prop: 'address',
|
||||||
label: '地址'
|
label: '地址',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
minWidth: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -45,6 +46,7 @@ import {
|
|||||||
getCoreDepartmentPage,
|
getCoreDepartmentPage,
|
||||||
deleteCoreDepartment
|
deleteCoreDepartment
|
||||||
} from '@/api/base/coreDepartment';
|
} from '@/api/base/coreDepartment';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
@ -71,7 +73,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -64,8 +64,8 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="进场日期" prop="enterTime" :rules="[]">
|
<el-form-item label="进厂日期" prop="enterTime" :rules="[]">
|
||||||
<el-date-picker v-model="form.enterTime" :disabled="disabled" type="datetime" placeholder="请选择进场日期"
|
<el-date-picker v-model="form.enterTime" :disabled="disabled" type="datetime" placeholder="请选择进厂日期"
|
||||||
value-format="timestamp"></el-date-picker>
|
value-format="timestamp"></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -78,7 +79,7 @@
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
equipmentId: form.id,
|
equipmentId: form.id,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
},
|
},
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('base:core-equipment-attr:update')
|
this.$auth.hasPermi('base:core-equipment-attr:update')
|
||||||
@ -118,6 +119,7 @@ import {
|
|||||||
} from '@/api/base/equipment';
|
} from '@/api/base/equipment';
|
||||||
import Editor from '@/components/Editor';
|
import Editor from '@/components/Editor';
|
||||||
import AssetsUpload from './components/AssetsUpload.vue';
|
import AssetsUpload from './components/AssetsUpload.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Equipment',
|
name: 'Equipment',
|
||||||
@ -125,7 +127,7 @@ export default {
|
|||||||
Editor,
|
Editor,
|
||||||
EquipmentDrawer,
|
EquipmentDrawer,
|
||||||
},
|
},
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['name', 'code'],
|
searchBarKeys: ['name', 'code'],
|
||||||
@ -157,8 +159,8 @@ export default {
|
|||||||
width: 180,
|
width: 180,
|
||||||
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
},
|
},
|
||||||
{ prop: 'name', label: '设备名称' },
|
{ prop: 'name', label: '设备名称', width: 180, showOverflowtooltip: true },
|
||||||
{ width: 256, prop: 'code', label: '设备编码' },
|
{ width: 250, prop: 'code', label: '设备编码' },
|
||||||
{ prop: 'equipmentTypeName', label: '设备类型' },
|
{ prop: 'equipmentTypeName', label: '设备类型' },
|
||||||
{ prop: 'enName', label: '英文名称' },
|
{ prop: 'enName', label: '英文名称' },
|
||||||
{ prop: 'abbr', label: '缩写' },
|
{ prop: 'abbr', label: '缩写' },
|
||||||
@ -484,7 +486,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
code: '',
|
code: '',
|
||||||
name: '',
|
name: '',
|
||||||
special: false
|
special: false
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -51,13 +52,13 @@
|
|||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import DialogForm from './dialogForm.vue';
|
import DialogForm from './dialogForm.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
// import { getAccessToken } from '@/utils/auth';
|
// import { getAccessToken } from '@/utils/auth';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentLineBind',
|
name: 'EquipmentLineBind',
|
||||||
components: { DialogForm },
|
components: { DialogForm },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
basePath: '/base/core-equipment-bind-section',
|
basePath: '/base/core-equipment-bind-section',
|
||||||
@ -81,12 +82,13 @@ export default {
|
|||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
fixed: true,
|
fixed: true,
|
||||||
width: 180,
|
width: 150,
|
||||||
|
showOverflowtooltip: true,
|
||||||
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
},
|
},
|
||||||
{ prop: 'productionLineName', label: '产线名称' },
|
{ prop: 'productionLineName', label: '产线名称', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'workshopSectionName', label: '工段名称' },
|
{ prop: 'workshopSectionName', label: '工段名称', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
{ prop: 'equipmentName', label: '设备名称', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'sort', label: '工段中排序' },
|
{ prop: 'sort', label: '工段中排序' },
|
||||||
{
|
{
|
||||||
prop: 'lineDataType',
|
prop: 'lineDataType',
|
||||||
@ -236,7 +238,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
equipmentName: null,
|
equipmentName: null,
|
||||||
productionLineId: null,
|
productionLineId: null,
|
||||||
},
|
},
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -50,6 +51,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
createEquipmentType,
|
createEquipmentType,
|
||||||
@ -65,7 +67,7 @@ import {
|
|||||||
export default {
|
export default {
|
||||||
name: 'EquipmentType',
|
name: 'EquipmentType',
|
||||||
components: {},
|
components: {},
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['name'],
|
searchBarKeys: ['name'],
|
||||||
@ -171,7 +173,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
name: '',
|
name: '',
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -43,38 +44,51 @@ import basicPage from '../../core/mixins/basic-page';
|
|||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import { getHotMaterialPage, deleteHotMaterial } from '@/api/base/coreHotMaterial';
|
import { getHotMaterialPage, deleteHotMaterial } from '@/api/base/coreHotMaterial';
|
||||||
import { publicFormatter } from "@/utils/dict";
|
import { publicFormatter } from "@/utils/dict";
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '原料名称'
|
label: '原料名称',
|
||||||
|
minWidth: 250,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '原料编码'
|
label: '原料编码',
|
||||||
|
width: 250,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'unit',
|
prop: 'unit',
|
||||||
label: '单位',
|
label: '单位',
|
||||||
filter: publicFormatter('unit_dict')
|
filter: publicFormatter('unit_dict'),
|
||||||
|
width: 90,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'dailyCost',
|
prop: 'dailyCost',
|
||||||
label: '每日消耗量'
|
label: '每日消耗量',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -45,6 +46,7 @@ import {
|
|||||||
getCoreMajorPage,
|
getCoreMajorPage,
|
||||||
deleteCoreMajor
|
deleteCoreMajor
|
||||||
} from '@/api/base/coreMajor';
|
} from '@/api/base/coreMajor';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
@ -71,7 +73,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -2,15 +2,17 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-03-13 13:54:01
|
* @LastEditTime: 2024-03-27 13:47:24
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
:show-close="false"
|
:show-close="false"
|
||||||
:wrapper-closable="isdetail"
|
:wrapper-closable="true"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
|
:before-close="beforeClose"
|
||||||
|
@closed="$emit('destroy')"
|
||||||
size="60%">
|
size="60%">
|
||||||
<small-title slot="title" :no-padding="true">
|
<small-title slot="title" :no-padding="true">
|
||||||
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
||||||
@ -262,6 +264,15 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {},
|
mounted() {},
|
||||||
methods: {
|
methods: {
|
||||||
|
beforeClose(done) {
|
||||||
|
if (!this.isdetail) {
|
||||||
|
this.$confirm('确认关闭?')
|
||||||
|
.then(_ => {
|
||||||
|
done();
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
}
|
||||||
|
},
|
||||||
clearArea() {
|
clearArea() {
|
||||||
this.$set(this.dataForm, 'area', 0)
|
this.$set(this.dataForm, 'area', 0)
|
||||||
this.$set(this.dataForm, 'weight', 0)
|
this.$set(this.dataForm, 'weight', 0)
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -26,7 +27,8 @@
|
|||||||
<add-or-update
|
<add-or-update
|
||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="getDataList" />
|
@refreshDataList="getDataList"
|
||||||
|
@destroy="addOrUpdateVisible = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -39,43 +41,58 @@ import {
|
|||||||
getCoreProductPage,
|
getCoreProductPage,
|
||||||
deleteCoreProduct
|
deleteCoreProduct
|
||||||
} from '@/api/base/coreProduct';
|
} from '@/api/base/coreProduct';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '产品名称'
|
label: '产品名称',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '产品编码'
|
label: '产品编码',
|
||||||
|
width: 190,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'productType',
|
prop: 'productType',
|
||||||
label: '产品类型',
|
label: '产品类型',
|
||||||
filter: publicFormatter('product_type')
|
filter: publicFormatter('product_type'),
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'specifications',
|
prop: 'specifications',
|
||||||
label: '规格'
|
label: '规格',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'unit',
|
prop: 'unit',
|
||||||
label: '单位',
|
label: '单位',
|
||||||
filter: publicFormatter('unit_dict')
|
filter: publicFormatter('unit_dict'),
|
||||||
|
width: 90,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注',
|
label: '备注',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -48,34 +49,47 @@ import {
|
|||||||
import { getStatus } from '@/api/core/base/productionLine';
|
import { getStatus } from '@/api/core/base/productionLine';
|
||||||
import codeFilter from '../../core/mixins/code-filter';
|
import codeFilter from '../../core/mixins/code-filter';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'factoryName',
|
prop: 'factoryName',
|
||||||
label: '工厂'
|
label: '工厂',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'roomNameDict',
|
prop: 'roomNameDict',
|
||||||
label: '车间名称',
|
label: '车间名称',
|
||||||
filter: publicFormatter('workshop')
|
filter: publicFormatter('workshop'),
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '产线名称'
|
label: '产线名称',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '产线编码'
|
label: '产线编码',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'enabled',
|
prop: 'enabled',
|
||||||
label: '当前状态',
|
label: '当前状态',
|
||||||
filter: codeFilter('lineStatus')
|
filter: codeFilter('lineStatus'),
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// prop: 'tvalue',
|
// prop: 'tvalue',
|
||||||
@ -83,16 +97,20 @@ const tableProps = [
|
|||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
prop: 'description',
|
prop: 'description',
|
||||||
label: '描述'
|
label: '描述',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2023-11-22 10:27:43
|
* @LastEditTime: 2024-04-02 16:46:49
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -79,7 +79,7 @@ export default {
|
|||||||
dataRule: {
|
dataRule: {
|
||||||
code: [{ required: true, message: "供应商编号不能为空", trigger: "blur" }],
|
code: [{ required: true, message: "供应商编号不能为空", trigger: "blur" }],
|
||||||
name: [{ required: true, message: "供应商名称不能为空", trigger: "blur" }],
|
name: [{ required: true, message: "供应商名称不能为空", trigger: "blur" }],
|
||||||
contact: [{ required: true, message: "联系人不能为空", trigger: "blur" }],
|
// contact: [{ required: true, message: "联系人不能为空", trigger: "blur" }],
|
||||||
telephone: [
|
telephone: [
|
||||||
{ required: false, trigger: "blur", message: "手机号不能为空" },
|
{ required: false, trigger: "blur", message: "手机号不能为空" },
|
||||||
{
|
{
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -45,41 +46,56 @@ import {
|
|||||||
getCoreSupplierPage,
|
getCoreSupplierPage,
|
||||||
deleteCoreSupplier
|
deleteCoreSupplier
|
||||||
} from '@/api/base/coreSupplier';
|
} from '@/api/base/coreSupplier';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '供应商编码'
|
label: '供应商编码',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '供应商名称'
|
label: '供应商名称',
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'contact',
|
prop: 'contact',
|
||||||
label: '联系人'
|
label: '联系人',
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'telephone',
|
prop: 'telephone',
|
||||||
label: '联系电话'
|
label: '联系电话',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'address',
|
prop: 'address',
|
||||||
label: '地址'
|
label: '地址',
|
||||||
|
width: 180,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
minWidth: 90,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -46,20 +47,27 @@ import {
|
|||||||
deleteCoreWorker
|
deleteCoreWorker
|
||||||
} from '@/api/base/coreWorker';
|
} from '@/api/base/coreWorker';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '创建时间',
|
label: '创建时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '姓名'
|
label: '姓名',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '员工号'
|
label: '员工号',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'sex',
|
prop: 'sex',
|
||||||
@ -70,32 +78,44 @@ const tableProps = [
|
|||||||
prop: 'entryTime',
|
prop: 'entryTime',
|
||||||
label: '入职时间',
|
label: '入职时间',
|
||||||
filter: (val) => val ? moment(val).format('yyyy-MM-DD') : '',
|
filter: (val) => val ? moment(val).format('yyyy-MM-DD') : '',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'telephone',
|
prop: 'telephone',
|
||||||
label: '联系电话'
|
label: '联系电话',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'status',
|
prop: 'status',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
filter: (val) => ['', '在职', '离职'][val]
|
filter: (val) => ['', '在职', '离职'][val],
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'departmentName',
|
prop: 'departmentName',
|
||||||
label: '部门'
|
label: '部门',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'majorName',
|
prop: 'majorName',
|
||||||
label: '专业'
|
label: '专业',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -45,12 +46,14 @@ import {
|
|||||||
getCWSectionPage,
|
getCWSectionPage,
|
||||||
deleteCWSection
|
deleteCWSection
|
||||||
} from '@/api/base/coreWorkshopSection';
|
} from '@/api/base/coreWorkshopSection';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
@ -70,12 +73,13 @@ const tableProps = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -40,6 +41,7 @@ import {
|
|||||||
} from '@/api/base/material';
|
} from '@/api/base/material';
|
||||||
import { listData } from "@/api/system/dict/data";
|
import { listData } from "@/api/system/dict/data";
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
@ -75,7 +77,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -38,6 +39,7 @@ import {
|
|||||||
getMaterialPBPage,
|
getMaterialPBPage,
|
||||||
deleteMaterialPB
|
deleteMaterialPB
|
||||||
} from '@/api/base/materialProductBom';
|
} from '@/api/base/materialProductBom';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
@ -55,7 +57,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
components: {
|
components: {
|
||||||
AddOrUpdate,
|
AddOrUpdate,
|
||||||
},
|
},
|
||||||
|
@ -106,6 +106,10 @@ export default {
|
|||||||
activeIndex(val) {
|
activeIndex(val) {
|
||||||
this.initChart(val);
|
this.initChart(val);
|
||||||
},
|
},
|
||||||
|
daterange(val) {
|
||||||
|
console.log('222', val)
|
||||||
|
this.templateOption.xAxis.data = val
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
@ -124,8 +128,8 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 初始化/设置 图表 */
|
/** 初始化/设置 图表 */
|
||||||
initChart(val) {
|
initChart(val) {
|
||||||
console.log('tableData', this.tableData);
|
|
||||||
if (!this.chart) this.chart = echarts.init(this.$refs.chartDiv);
|
if (!this.chart) this.chart = echarts.init(this.$refs.chartDiv);
|
||||||
|
this.chart.clear();
|
||||||
switch (val) {
|
switch (val) {
|
||||||
case 0:
|
case 0:
|
||||||
const eqCt = this.tableData.map((row) => ({
|
const eqCt = this.tableData.map((row) => ({
|
||||||
@ -139,7 +143,7 @@ export default {
|
|||||||
...this.templateOption,
|
...this.templateOption,
|
||||||
yAxis: { ...this.templateOption.yAxis, name: '设备CT' },
|
yAxis: { ...this.templateOption.yAxis, name: '设备CT' },
|
||||||
series: eqCt,
|
series: eqCt,
|
||||||
});
|
}, true);
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
const eqTt = this.tableData.map((row) => ({
|
const eqTt = this.tableData.map((row) => ({
|
||||||
@ -153,7 +157,7 @@ export default {
|
|||||||
...this.templateOption,
|
...this.templateOption,
|
||||||
yAxis: { ...this.templateOption.yAxis, name: '设备TT' },
|
yAxis: { ...this.templateOption.yAxis, name: '设备TT' },
|
||||||
series: eqTt,
|
series: eqTt,
|
||||||
});
|
}, true);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
const plCt = this.tableData.map((row) => ({
|
const plCt = this.tableData.map((row) => ({
|
||||||
@ -167,7 +171,7 @@ export default {
|
|||||||
...this.templateOption,
|
...this.templateOption,
|
||||||
yAxis: { ...this.templateOption.yAxis, name: '产线CT' },
|
yAxis: { ...this.templateOption.yAxis, name: '产线CT' },
|
||||||
series: plCt,
|
series: plCt,
|
||||||
});
|
}, true);
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
const plTt = this.tableData.map((row) => ({
|
const plTt = this.tableData.map((row) => ({
|
||||||
@ -181,9 +185,10 @@ export default {
|
|||||||
...this.templateOption,
|
...this.templateOption,
|
||||||
yAxis: { ...this.templateOption.yAxis, name: '产线TT' },
|
yAxis: { ...this.templateOption.yAxis, name: '产线TT' },
|
||||||
series: plTt,
|
series: plTt,
|
||||||
});
|
}, true);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
this.activeIndex = 0
|
||||||
const eqCt2 = this.tableData.map((row) => ({
|
const eqCt2 = this.tableData.map((row) => ({
|
||||||
name: row.equName,
|
name: row.equName,
|
||||||
type: 'line',
|
type: 'line',
|
||||||
@ -195,7 +200,7 @@ export default {
|
|||||||
...this.templateOption,
|
...this.templateOption,
|
||||||
yAxis: { ...this.templateOption.yAxis, name: '设备CT' },
|
yAxis: { ...this.templateOption.yAxis, name: '设备CT' },
|
||||||
series: eqCt2,
|
series: eqCt2,
|
||||||
});
|
}, true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -18,13 +18,15 @@
|
|||||||
:page="1"
|
:page="1"
|
||||||
:limit="999"
|
:limit="999"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:table-data="tableData" />
|
:table-data="tableData"
|
||||||
|
:max-height="tableH" />
|
||||||
<div v-if="tableData.length == 0" class="no-data-bg"></div>
|
<div v-if="tableData.length == 0" class="no-data-bg"></div>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane :label="'\u3000产线平衡分析图\u3000'" name="graph">
|
<el-tab-pane :label="'\u3000产线平衡分析图\u3000'" name="graph">
|
||||||
<div class="graph" style="height: 800px">
|
<div class="graph" style="height: 800px">
|
||||||
<!-- graph -->
|
<!-- graph -->
|
||||||
<AnalysisChart
|
<AnalysisChart
|
||||||
|
ref="analysisChart"
|
||||||
v-if="activeName == 'graph'"
|
v-if="activeName == 'graph'"
|
||||||
:table-data="tableData"
|
:table-data="tableData"
|
||||||
:daterange="dateArr"></AnalysisChart>
|
:daterange="dateArr"></AnalysisChart>
|
||||||
@ -47,13 +49,14 @@ import BalanceChart from '../balanceChart';
|
|||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import AnalysisChart from './chart.vue';
|
import AnalysisChart from './chart.vue';
|
||||||
import { parseTime } from '@/utils/ruoyi'
|
import { parseTime } from '@/utils/ruoyi'
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
BalanceChart,
|
BalanceChart,
|
||||||
AnalysisChart,
|
AnalysisChart,
|
||||||
},
|
},
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
activeName: 'table',
|
activeName: 'table',
|
||||||
@ -176,6 +179,11 @@ export default {
|
|||||||
// const p = this.tableProps
|
// const p = this.tableProps
|
||||||
// const d = this.tableData
|
// const d = this.tableData
|
||||||
// debugger;
|
// debugger;
|
||||||
|
if (this.activeName == 'graph') {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['analysisChart'].initChart()
|
||||||
|
})
|
||||||
|
}
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -41,6 +42,7 @@
|
|||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '../../mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '../../mixins/code-filter';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
import {
|
import {
|
||||||
deleteFactory,
|
deleteFactory,
|
||||||
getFactoryPage
|
getFactoryPage
|
||||||
@ -71,7 +73,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
|
@ -17,7 +17,7 @@ export default {
|
|||||||
},
|
},
|
||||||
tableData: [],
|
tableData: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
total: 1,
|
total: 1,
|
||||||
},
|
},
|
||||||
|
@ -27,13 +27,16 @@
|
|||||||
import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
|
import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '../../mixins/code-filter';
|
||||||
import { getSchedulingMonitoringRecord1 } from '@/api/monitoring/teamProduction'
|
import { getSchedulingMonitoringRecord1 } from '@/api/monitoring/teamProduction'
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'productionLineData24',
|
name: 'productionLineData24',
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
components: {},
|
components: {},
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
heightNum: 240,
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getPdlDataOneDay
|
getDataListURL: getPdlDataOneDay
|
||||||
},
|
},
|
||||||
@ -56,9 +59,9 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
mounted() {
|
mounted() {
|
||||||
window.addEventListener('resize', () => {
|
// window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(240)
|
// this.tableH = this.tableHeight(240)
|
||||||
})
|
// })
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -115,7 +118,7 @@ export default {
|
|||||||
/** 把 list 里的数据转换成 tableProps 对应的格式 */
|
/** 把 list 里的数据转换成 tableProps 对应的格式 */
|
||||||
convertList(list) {
|
convertList(list) {
|
||||||
// let sectionArr= []
|
// let sectionArr= []
|
||||||
let temp = Object.values(list.datamap)
|
let temp = list.datamap ? Object.values(list?.datamap) : []
|
||||||
console.log('111', temp)
|
console.log('111', temp)
|
||||||
|
|
||||||
temp.forEach(item => {
|
temp.forEach(item => {
|
||||||
|
@ -2,44 +2,43 @@
|
|||||||
<div
|
<div
|
||||||
id="analysischartBar"
|
id="analysischartBar"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
:style="{ height: chartHeight + 'px' }"
|
:style="{ height: chartHeight + 'px' }"></div>
|
||||||
></div>
|
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import * as echarts from 'echarts'
|
import * as echarts from 'echarts';
|
||||||
import resize from '@/utils/chartMixins/resize'
|
import resize from '@/utils/chartMixins/resize';
|
||||||
export default {
|
export default {
|
||||||
name: "BarChart",
|
name: 'BarChart',
|
||||||
mixins: [resize],
|
mixins: [resize],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
chartDom: '',
|
chartDom: '',
|
||||||
chart: '',
|
chart: '',
|
||||||
chartHeight: this.tableHeight(214) - 70
|
chartHeight: this.tableHeight(250) / 2,
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
chartData: {
|
chartData: {
|
||||||
type: Array,
|
type: Array,
|
||||||
required: true,
|
required: true,
|
||||||
default: () => {
|
default: () => {
|
||||||
return []
|
return [];
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
timeDim: {
|
timeDim: {
|
||||||
type: String,
|
type: String,
|
||||||
default: ''
|
default: '',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
chartData: function () {
|
chartData: function () {
|
||||||
this.getChart()
|
this.getChart();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.chartHeight = this.tableHeight(214) - 70
|
this.chartHeight = this.tableHeight(250) / 2;
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getChart() {
|
getChart() {
|
||||||
@ -48,29 +47,29 @@ export default {
|
|||||||
this.chart !== '' &&
|
this.chart !== '' &&
|
||||||
this.chart !== undefined
|
this.chart !== undefined
|
||||||
) {
|
) {
|
||||||
this.chart.dispose() // 页面多次刷新会出现警告,Dom已经初始化了一个实例,这是销毁实例
|
this.chart.dispose(); // 页面多次刷新会出现警告,Dom已经初始化了一个实例,这是销毁实例
|
||||||
}
|
}
|
||||||
this.chartDom = document.getElementById('analysischartBar')
|
this.chartDom = document.getElementById('analysischartBar');
|
||||||
this.chart = echarts.init(this.chartDom)
|
this.chart = echarts.init(this.chartDom);
|
||||||
let tempArr = []
|
let tempArr = [];
|
||||||
let xData = []
|
let xData = [];
|
||||||
let yData = []
|
let yData = [];
|
||||||
let legendData = []
|
let legendData = [];
|
||||||
if (this.chartData.length === 0) {
|
if (this.chartData.length === 0) {
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
tempArr = this.chartData[0].trendRespVOList
|
tempArr = this.chartData[0].trendRespVOList;
|
||||||
}
|
}
|
||||||
for (let k = 0; k < tempArr.length; k++) {
|
for (let k = 0; k < tempArr.length; k++) {
|
||||||
let time = ''
|
let time = '';
|
||||||
if (this.timeDim === '3') {
|
if (this.timeDim === '3') {
|
||||||
let year = tempArr[k].time.slice(0,4)
|
let year = tempArr[k].time.slice(0, 4);
|
||||||
let weak = tempArr[k].time.slice(4,6)
|
let weak = tempArr[k].time.slice(4, 6);
|
||||||
time = year+' 第 '+weak+' 周'
|
time = year + ' 第 ' + weak + ' 周';
|
||||||
} else {
|
} else {
|
||||||
time = tempArr[k].time
|
time = tempArr[k].time;
|
||||||
}
|
}
|
||||||
xData.push(time)
|
xData.push(time);
|
||||||
}
|
}
|
||||||
for (let i = 0; i < this.chartData.length; i++) {
|
for (let i = 0; i < this.chartData.length; i++) {
|
||||||
let obj = {
|
let obj = {
|
||||||
@ -79,70 +78,72 @@ export default {
|
|||||||
barMaxWidth: 20,
|
barMaxWidth: 20,
|
||||||
label: {
|
label: {
|
||||||
show: true,
|
show: true,
|
||||||
position: 'top'
|
position: 'top',
|
||||||
},
|
},
|
||||||
data: []
|
data: [],
|
||||||
}
|
};
|
||||||
legendData.push(this.chartData[i].objName + this.chartData[i].objCode)
|
legendData.push(this.chartData[i].objName + this.chartData[i].objCode);
|
||||||
let temp = this.chartData[i].trendRespVOList
|
let temp = this.chartData[i].trendRespVOList;
|
||||||
for (let j = 0; j < temp.length; j++) {
|
for (let j = 0; j < temp.length; j++) {
|
||||||
let num = temp[j].useNum ? temp[j].useNum : ''
|
let num = temp[j].useNum ? temp[j].useNum.toFixed(2) : '';
|
||||||
obj.data.push(num)
|
obj.data.push(num);
|
||||||
}
|
}
|
||||||
yData.push(obj)
|
yData.push(obj);
|
||||||
}
|
}
|
||||||
var option = {
|
var option = {
|
||||||
color: ['#FFDC94', '#8EF0AB', '#63BDFF', '#288AFF', '#7164FF'],
|
color: ['#FFDC94', '#8EF0AB', '#63BDFF', '#288AFF', '#7164FF'],
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis',
|
trigger: 'axis',
|
||||||
axisPointer: {
|
axisPointer: {
|
||||||
type: 'shadow'
|
type: 'shadow',
|
||||||
},
|
},
|
||||||
formatter: function (params) {
|
formatter: function (params) {
|
||||||
return (
|
return (
|
||||||
params[0].axisValue +
|
params[0].axisValue +
|
||||||
`<br>` +
|
`<br>` +
|
||||||
params.map((item) => {
|
params
|
||||||
let str = `<span style="display:inline-block;width:8px;height:8px;margin: 0 8px 0 -3px;border-radius:2px;background-color:${item.color};"></span>`
|
.map((item) => {
|
||||||
let seriesNameStr = `<span style="display:inline-block;">${item.seriesName}</span>`
|
let str = `<span style="display:inline-block;width:8px;height:8px;margin: 0 8px 0 -3px;border-radius:2px;background-color:${item.color};"></span>`;
|
||||||
let value = item.value ? item.value : '-'
|
let seriesNameStr = `<span style="display:inline-block;">${item.seriesName}</span>`;
|
||||||
let valueStr = `<span style="display:inline-block;margin-left:10px;color:rgba(0,0,0,0.45);">${value}</span>`
|
let value = item.value ? item.value : '-';
|
||||||
|
let valueStr = `<span style="display:inline-block;margin-left:10px;color:rgba(0,0,0,0.45);">${value}</span>`;
|
||||||
return `<span style="display:flex; justify-content:space-between; margin-bottom: 2px">
|
return `<span style="display:flex; justify-content:space-between; margin-bottom: 2px">
|
||||||
<span>${str}${seriesNameStr}</span>
|
<span>${str}${seriesNameStr}</span>
|
||||||
<span>${valueStr}</span>
|
<span>${valueStr}</span>
|
||||||
</span>`
|
</span>`;
|
||||||
}).join(``)
|
})
|
||||||
)
|
.join(``)
|
||||||
}
|
);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
left: '4%',
|
left: '4%',
|
||||||
right: '1%',
|
right: '1%',
|
||||||
bottom: '1%',
|
bottom: '1%',
|
||||||
containLabel: true
|
containLabel: true,
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
data: legendData,
|
data: legendData,
|
||||||
right: '1%',
|
right: '1%',
|
||||||
icon: 'rect',
|
icon: 'rect',
|
||||||
itemHeight: 8,
|
itemHeight: 8,
|
||||||
itemWidth: 8
|
itemWidth: 8,
|
||||||
},
|
},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data: xData,
|
data: xData,
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
rotate: "45"
|
rotate: '45',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
type: 'value'
|
type: 'value',
|
||||||
},
|
},
|
||||||
series: yData
|
series: yData,
|
||||||
};
|
};
|
||||||
|
|
||||||
option && this.chart.setOption(option);
|
option && this.chart.setOption(option);
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
@ -1,126 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div
|
|
||||||
id="analysischartLine"
|
|
||||||
style="width: 100%"
|
|
||||||
:style="{ height: chartHeight + 'px' }"
|
|
||||||
></div>
|
|
||||||
</template>
|
|
||||||
<script>
|
|
||||||
import * as echarts from 'echarts'
|
|
||||||
import resize from '@/utils/chartMixins/resize'
|
|
||||||
export default {
|
|
||||||
name: "LineChart",
|
|
||||||
mixins: [resize],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
chartDom: '',
|
|
||||||
chart: '',
|
|
||||||
chartHeight: this.tableHeight(214) - 70
|
|
||||||
}
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
chartData: {
|
|
||||||
type: Array,
|
|
||||||
required: true,
|
|
||||||
default: () => {
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
timeDim: {
|
|
||||||
type: String,
|
|
||||||
default: ''
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
chartData: function () {
|
|
||||||
this.getChart()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
window.addEventListener('resize', () => {
|
|
||||||
this.chartHeight = this.tableHeight(214) - 70
|
|
||||||
})
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getChart() {
|
|
||||||
if (
|
|
||||||
this.chart !== null &&
|
|
||||||
this.chart !== '' &&
|
|
||||||
this.chart !== undefined
|
|
||||||
) {
|
|
||||||
this.chart.dispose() // 页面多次刷新会出现警告,Dom已经初始化了一个实例,这是销毁实例
|
|
||||||
}
|
|
||||||
this.chartDom = document.getElementById('analysischartLine')
|
|
||||||
this.chart = echarts.init(this.chartDom)
|
|
||||||
let tempArr = []
|
|
||||||
let xData = []
|
|
||||||
let yData = []
|
|
||||||
let legendData = []
|
|
||||||
if (this.chartData.length === 0) {
|
|
||||||
return false
|
|
||||||
} else {
|
|
||||||
tempArr = this.chartData[0].trendRespVOList
|
|
||||||
}
|
|
||||||
for (let k = 0; k < tempArr.length; k++) {
|
|
||||||
let time = ''
|
|
||||||
if (this.timeDim === '3') {
|
|
||||||
let year = tempArr[k].time.slice(0,4)
|
|
||||||
let weak = tempArr[k].time.slice(4,6)
|
|
||||||
time = year+' 第 '+weak+' 周'
|
|
||||||
} else {
|
|
||||||
time = tempArr[k].time
|
|
||||||
}
|
|
||||||
xData.push(time)
|
|
||||||
}
|
|
||||||
for (let i = 0; i < this.chartData.length; i++) {
|
|
||||||
let obj = {
|
|
||||||
name: this.chartData[i].objName + this.chartData[i].objCode,
|
|
||||||
type: 'line',
|
|
||||||
stack: 'Total',
|
|
||||||
data: []
|
|
||||||
}
|
|
||||||
legendData.push(this.chartData[i].objName + this.chartData[i].objCode)
|
|
||||||
let temp = this.chartData[i].trendRespVOList
|
|
||||||
for (let j = 0; j < temp.length; j++) {
|
|
||||||
let num = temp[j].useNum ? temp[j].useNum : ''
|
|
||||||
obj.data.push(num)
|
|
||||||
}
|
|
||||||
yData.push(obj)
|
|
||||||
}
|
|
||||||
|
|
||||||
var option = {
|
|
||||||
color:['#FFDC94','#8EF0AB','#63BDFF','#288AFF','#7164FF'],
|
|
||||||
tooltip: {
|
|
||||||
trigger: 'axis',
|
|
||||||
axisPointer: {
|
|
||||||
type: 'cross'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
grid: {
|
|
||||||
left: '4%',
|
|
||||||
right: '1%',
|
|
||||||
bottom: '1%',
|
|
||||||
containLabel: true
|
|
||||||
},
|
|
||||||
legend: {
|
|
||||||
data: legendData,
|
|
||||||
right: '1%'
|
|
||||||
},
|
|
||||||
xAxis: {
|
|
||||||
type: 'category',
|
|
||||||
data: xData,
|
|
||||||
axisLabel: {
|
|
||||||
rotate: "45"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
yAxis: {
|
|
||||||
type: 'value'
|
|
||||||
},
|
|
||||||
series: yData
|
|
||||||
};
|
|
||||||
|
|
||||||
option && this.chart.setOption(option);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,28 +1,47 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="searchBarBox divHeight" ref="searchBarRef" :style="{ paddingRight: isFold ? '55px' : '0px' }">
|
<div
|
||||||
<el-form :inline="true" class="demo-form-inline">
|
class="searchBarBox divHeight"
|
||||||
|
ref="searchBarRef"
|
||||||
|
:style="{ paddingRight: isFold ? '55px' : '0px' }">
|
||||||
|
<el-form
|
||||||
|
:inline="true"
|
||||||
|
class="demo-form-inline">
|
||||||
<span class="blue-block"></span>
|
<span class="blue-block"></span>
|
||||||
<el-form-item label="能源类型" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.energyTypeId" placeholder="请选择" style="width: 100px;" size="small">
|
label="能源类型"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.energyTypeId"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 150px"
|
||||||
|
@change="chooseType"
|
||||||
|
filterable
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in energyTypeList"
|
v-for="item in energyTypeList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.labelName"
|
||||||
:value="item.id">
|
:value="item.id"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间维度" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.timeDim" placeholder="请选择" style="width: 80px;" size="small">
|
label="时间维度"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.timeDim"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 80px"
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)"
|
v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value">
|
:value="item.value"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间范围" required>
|
<el-form-item
|
||||||
|
label="时间范围"
|
||||||
|
required>
|
||||||
<div v-show="queryParams.timeDim === '1'">
|
<div v-show="queryParams.timeDim === '1'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="timeValue"
|
v-model="timeValue"
|
||||||
@ -36,10 +55,8 @@
|
|||||||
popper-class="noneMinute"
|
popper-class="noneMinute"
|
||||||
@change="timeSelect"
|
@change="timeSelect"
|
||||||
size="small"
|
size="small"
|
||||||
style='width:350px;'
|
style="width: 350px"
|
||||||
:clearable="false"
|
:clearable="false"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '2'">
|
<div v-show="queryParams.timeDim === '2'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -52,34 +69,31 @@
|
|||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
style='width:350px;'
|
style="width: 350px"
|
||||||
@change="timeSelect"
|
@change="timeSelect"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '3'">
|
<div v-show="queryParams.timeDim === '3'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="weekValue1"
|
v-model="weekValue1"
|
||||||
type="week"
|
type="week"
|
||||||
format="yyyy 第 WW 周"
|
format="yyyy 第 WW 周"
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
:picker-options="pickerOptionsWeek"
|
:picker-options="pickerOptionsWeek"
|
||||||
@change="startWeek"
|
@change="startWeek"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择周">
|
placeholder="选择周"></el-date-picker>
|
||||||
</el-date-picker>-
|
-
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="weekValue2"
|
v-model="weekValue2"
|
||||||
type="week"
|
type="week"
|
||||||
format="yyyy 第 WW 周"
|
format="yyyy 第 WW 周"
|
||||||
:picker-options="pickerOptionsWeek"
|
:picker-options="pickerOptionsWeek"
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
@change="endWeek"
|
@change="endWeek"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择周">
|
placeholder="选择周"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '4'">
|
<div v-show="queryParams.timeDim === '4'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -92,14 +106,12 @@
|
|||||||
:clearable="false"
|
:clearable="false"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
size="small"
|
size="small"
|
||||||
style='width:350px;'
|
style="width: 350px"
|
||||||
@change="timeSelect"
|
@change="timeSelect"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '5'">
|
<div v-show="queryParams.timeDim === '5'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
v-model="yearValue1"
|
v-model="yearValue1"
|
||||||
type="year"
|
type="year"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
@ -107,11 +119,10 @@
|
|||||||
placeholder="选择年"
|
placeholder="选择年"
|
||||||
@change="startYear"
|
@change="startYear"
|
||||||
size="small"
|
size="small"
|
||||||
:clearable="false"
|
:clearable="false"></el-date-picker>
|
||||||
>
|
-
|
||||||
</el-date-picker>-
|
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
v-model="yearValue2"
|
v-model="yearValue2"
|
||||||
type="year"
|
type="year"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
@ -119,58 +130,96 @@
|
|||||||
placeholder="选择年"
|
placeholder="选择年"
|
||||||
@change="endYear"
|
@change="endYear"
|
||||||
size="small"
|
size="small"
|
||||||
:clearable="false"
|
:clearable="false"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="对象维度" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.objType" placeholder="请选择" style="width: 80px;" @change="selectObjs" size="small">
|
v-if="energyType !== 0"
|
||||||
|
label="对象维度"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.objType"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 80px"
|
||||||
|
@change="selectObjs"
|
||||||
|
:disabled="energyType === 2"
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in getDictDatas(this.DICT_TYPE.OBJECT_TYPE)"
|
v-for="item in getDictDatas(this.DICT_TYPE.OBJECT_TYPE)"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value">
|
:value="item.value"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="对象选择" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.objIds" placeholder="请选择" multiple :multiple-limit='5' collapse-tags style="width: 200px;" size="small">
|
label="对象选择"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.objIds"
|
||||||
|
placeholder="请选择"
|
||||||
|
multiple
|
||||||
|
:multiple-limit="5"
|
||||||
|
collapse-tags
|
||||||
|
filterable
|
||||||
|
style="width: 200px"
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in objectList"
|
v-for="item in objectList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.id">
|
:value="item.id">
|
||||||
<span style="float: left">{{ item.name }}</span>
|
<span style="float: left">{{ item.name }}</span>
|
||||||
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
<span style="float: right; color: #8492a6; font-size: 13px">
|
||||||
|
{{ item.code }}
|
||||||
|
</span>
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="search">查询</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="search">
|
||||||
|
查询
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
size="small"
|
||||||
|
@click="resetBtn">
|
||||||
|
重置
|
||||||
|
</el-button>
|
||||||
<span class="separateStyle"></span>
|
<span class="separateStyle"></span>
|
||||||
<el-button size="small" @click="resetBtn">重置</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
plain
|
||||||
|
@click="exportBtn">
|
||||||
|
导出
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span v-if="isFold" class="foldClass" @click='switchMode'>
|
<span
|
||||||
|
v-if="isFold"
|
||||||
|
class="foldClass"
|
||||||
|
@click="switchMode">
|
||||||
{{ isExpand ? '收起' : '展开' }}
|
{{ isExpand ? '收起' : '展开' }}
|
||||||
<svg-icon :icon-class="isExpand ? 'upward' : 'downward'" />
|
<svg-icon :icon-class="isExpand ? 'upward' : 'downward'" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyTypeListAll } from "@/api/base/energyType"
|
import { getEnergyTypeListAll } from '@/api/base/energyType';
|
||||||
import { getLineAll } from "@/api/base/productionLine"
|
import { getLineAll } from '@/api/base/productionLine';
|
||||||
import { getWorkShopAll } from "@/api/base/workshopSection"
|
import { getWorkShopAll } from '@/api/base/workshopSection';
|
||||||
import { getEquipmentAll } from "@/api/base/equipment"
|
import { getFactoryList } from '@/api/core/base/factory';
|
||||||
import moment from 'moment'
|
import moment from 'moment';
|
||||||
export default {
|
export default {
|
||||||
name: 'searchArea',
|
name: 'searchArea',
|
||||||
props: {
|
props: {
|
||||||
isFold: {// 多行模式(默认否)
|
isFold: {
|
||||||
|
// 多行模式(默认否)
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -182,8 +231,9 @@ export default {
|
|||||||
objType: '',
|
objType: '',
|
||||||
timeDim: null,
|
timeDim: null,
|
||||||
startTime: null,
|
startTime: null,
|
||||||
endTime: null
|
endTime: null,
|
||||||
},
|
},
|
||||||
|
energyType: 0, //1电2非电
|
||||||
timeValue: [], // 最大7天只能整点
|
timeValue: [], // 最大7天只能整点
|
||||||
dateValue: [], // 最大30天
|
dateValue: [], // 最大30天
|
||||||
weekValue1: null, //最多24周
|
weekValue1: null, //最多24周
|
||||||
@ -195,262 +245,295 @@ export default {
|
|||||||
objectList: [],
|
objectList: [],
|
||||||
pickerOptions: {
|
pickerOptions: {
|
||||||
disabledDate(date) {
|
disabledDate(date) {
|
||||||
return date.getTime() > Date.now()
|
return date.getTime() > Date.now();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
pickerOptionsWeek: {
|
pickerOptionsWeek: {
|
||||||
disabledDate(time) {
|
disabledDate(time) {
|
||||||
let day = Date.now()
|
let day = Date.now();
|
||||||
let limitTime = moment(day).day(-1)
|
let limitTime = moment(day).day(-1);
|
||||||
return time.getTime() > new Date(limitTime).getTime()
|
return time.getTime() > new Date(limitTime).getTime();
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getTypeList()
|
this.getTypeList();
|
||||||
this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value // 默认时
|
this.queryParams.timeDim = this.getDictDatas(
|
||||||
|
this.DICT_TYPE.TIME_DIM
|
||||||
|
)[0].value; // 默认时
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getTypeList() {
|
getTypeList() {
|
||||||
getEnergyTypeListAll().then((res) => {
|
getEnergyTypeListAll().then((res) => {
|
||||||
this.energyTypeList = res.data || []
|
this.energyTypeList = res.data || [];
|
||||||
})
|
});
|
||||||
|
},
|
||||||
|
// 切换能源类型
|
||||||
|
chooseType(id) {
|
||||||
|
let val;
|
||||||
|
this.energyTypeList.map((item) => {
|
||||||
|
if (item.id === id) {
|
||||||
|
val = item.name;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (val == 1 || val == 2) {
|
||||||
|
this.energyType = 1;
|
||||||
|
this.queryParams.objType = null;
|
||||||
|
} else {
|
||||||
|
this.energyType = 2;
|
||||||
|
this.queryParams.objType = this.getDictDatas(
|
||||||
|
this.DICT_TYPE.OBJECT_TYPE
|
||||||
|
)[0].value;
|
||||||
|
}
|
||||||
|
this.selectObjs(this.queryParams.objType);
|
||||||
},
|
},
|
||||||
// 范围选择器
|
// 范围选择器
|
||||||
timeSelect() {
|
timeSelect() {
|
||||||
switch (this.queryParams.timeDim) {
|
switch (this.queryParams.timeDim) {
|
||||||
case '1':
|
case '1':
|
||||||
if (!this.timeValue) {
|
if (!this.timeValue) {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.timeValue[1] - this.timeValue[0] > 7 * 24 * 3600000) {
|
if (this.timeValue[1] - this.timeValue[0] > 7 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为7天,请重新选择')
|
this.$modal.msgError('最大时间范围为7天,请重新选择');
|
||||||
this.timeValue = []
|
this.timeValue = [];
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '2':
|
case '2':
|
||||||
if (!this.dateValue) {
|
if (!this.dateValue) {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.dateValue[1] - this.dateValue[0] > 29 * 24 * 3600000) {
|
if (this.dateValue[1] - this.dateValue[0] > 29 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为30天,请重新选择') // 自动选择默认是0:00:00要求是23:59:59
|
this.$modal.msgError('最大时间范围为30天,请重新选择'); // 自动选择默认是0:00:00要求是23:59:59
|
||||||
this.dateValue = []
|
this.dateValue = [];
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '4':
|
case '4':
|
||||||
if (!this.monthValue) {
|
if (!this.monthValue) {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.monthValue[1] - this.monthValue[0] > 729 * 24 * 3600000) {
|
if (this.monthValue[1] - this.monthValue[0] > 729 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为24个月,请重新选择')// 同理上面
|
this.$modal.msgError('最大时间范围为24个月,请重新选择'); // 同理上面
|
||||||
this.monthValue = []
|
this.monthValue = [];
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 年选择器
|
// 年选择器
|
||||||
startYear() {
|
startYear() {
|
||||||
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
||||||
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
|
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择');
|
||||||
this.yearValue1 = null
|
this.yearValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.yearValue1 && this.yearValue2) {
|
if (this.yearValue1 && this.yearValue2) {
|
||||||
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为10年,请重新选择')
|
this.$modal.msgError('最大时间范围为10年,请重新选择');
|
||||||
this.yearValue1 = null
|
this.yearValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
endYear() {
|
endYear() {
|
||||||
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
||||||
this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
|
this.$modal.msgError('结束时间不能早于开始时间,请重新选择');
|
||||||
this.yearValue2 = null
|
this.yearValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.yearValue1 && this.yearValue2) {
|
if (this.yearValue1 && this.yearValue2) {
|
||||||
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为10年,请重新选择')
|
this.$modal.msgError('最大时间范围为10年,请重新选择');
|
||||||
this.yearValue2 = null
|
this.yearValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 周选择器
|
// 周选择器
|
||||||
startWeek() {
|
startWeek() {
|
||||||
if (this.weekValue1 && this.weekValue2) {
|
if (this.weekValue1 && this.weekValue2) {
|
||||||
let a = new Date(this.weekValue1).getTime()
|
let a = new Date(this.weekValue1).getTime();
|
||||||
let b = new Date(this.weekValue2).getTime()
|
let b = new Date(this.weekValue2).getTime();
|
||||||
if (a > b) {
|
if (a > b) {
|
||||||
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
|
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择');
|
||||||
this.weekValue1 = null
|
this.weekValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (b - a > 167 * 24 * 3600000) {
|
if (b - a > 167 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为24周,请重新选择')
|
this.$modal.msgError('最大时间范围为24周,请重新选择');
|
||||||
this.weekValue1 = null
|
this.weekValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
endWeek() {
|
endWeek() {
|
||||||
if (this.weekValue1 && this.weekValue2) {
|
if (this.weekValue1 && this.weekValue2) {
|
||||||
let a = new Date(this.weekValue1).getTime()
|
let a = new Date(this.weekValue1).getTime();
|
||||||
let b = new Date(this.weekValue2).getTime()
|
let b = new Date(this.weekValue2).getTime();
|
||||||
if (a > b) {
|
if (a > b) {
|
||||||
this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
|
this.$modal.msgError('结束时间不能早于开始时间,请重新选择');
|
||||||
this.weekValue2 = null
|
this.weekValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (b - a > 167 * 24 * 3600000) {
|
if (b - a > 167 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为24周,请重新选择')
|
this.$modal.msgError('最大时间范围为24周,请重新选择');
|
||||||
this.weekValue2 = null
|
this.weekValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 对象维度
|
// 对象维度
|
||||||
selectObjs(val) {
|
selectObjs(val) {
|
||||||
console.log(val)
|
console.log(val);
|
||||||
switch (val) {
|
switch (val) {
|
||||||
case '1':
|
case '1':
|
||||||
getLineAll().then(res => {
|
getFactoryList().then((res) => {
|
||||||
this.objectList = res.data || []
|
this.objectList = res.data || [];
|
||||||
this.queryParams.objIds = []
|
this.queryParams.objIds = [];
|
||||||
})
|
});
|
||||||
break;
|
break;
|
||||||
case '2':
|
case '2':
|
||||||
getWorkShopAll().then(res => {
|
getLineAll().then((res) => {
|
||||||
this.objectList = res.data || []
|
this.objectList = res.data || [];
|
||||||
this.queryParams.objIds = []
|
this.queryParams.objIds = [];
|
||||||
})
|
});
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
getEquipmentAll().then(res => {
|
getWorkShopAll().then((res) => {
|
||||||
this.objectList = res.data || []
|
this.objectList = res.data || [];
|
||||||
this.queryParams.objIds = []
|
this.queryParams.objIds = [];
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 查询
|
// 查询
|
||||||
search() {
|
search() {
|
||||||
if (!this.queryParams.energyTypeId) {
|
if (!this.queryParams.energyTypeId) {
|
||||||
this.$modal.msgError('请选择能源类型')
|
this.$modal.msgError('请选择能源类型');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (!this.queryParams.timeDim) {
|
if (!this.queryParams.timeDim) {
|
||||||
this.$modal.msgError('请选择时间维度')
|
this.$modal.msgError('请选择时间维度');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
switch (this.queryParams.timeDim) {
|
switch (this.queryParams.timeDim) {
|
||||||
case '1':
|
case '1':
|
||||||
if (this.timeValue && this.timeValue.length > 0) {
|
if (this.timeValue && this.timeValue.length > 0) {
|
||||||
this.queryParams.startTime = this.timeValue[0]
|
this.queryParams.startTime = this.timeValue[0];
|
||||||
this.queryParams.endTime = this.timeValue[1] // 不用转
|
this.queryParams.endTime = this.timeValue[1]; // 不用转
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '2':
|
case '2':
|
||||||
if (this.dateValue.length > 0) {
|
if (this.dateValue.length > 0) {
|
||||||
this.queryParams.startTime = this.dateValue[0]
|
this.queryParams.startTime = this.dateValue[0];
|
||||||
this.queryParams.endTime = this.dateValue[1] + 86399000 // 转为23:59:59
|
this.queryParams.endTime = this.dateValue[1] + 86399000; // 转为23:59:59
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('日范围不能为空')
|
this.$modal.msgError('日范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '3':
|
case '3':
|
||||||
if (this.weekValue1 && this.weekValue2) {
|
if (this.weekValue1 && this.weekValue2) {
|
||||||
let a = moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00'
|
let a =
|
||||||
let b = moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59'
|
moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00';
|
||||||
this.queryParams.startTime = new Date(a).getTime()
|
let b =
|
||||||
this.queryParams.endTime = new Date(b).getTime()
|
moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
this.queryParams.startTime = new Date(a).getTime();
|
||||||
|
this.queryParams.endTime = new Date(b).getTime();
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('周范围不能为空')
|
this.$modal.msgError('周范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '4': // 转为本月最后一天的最后一秒
|
case '4': // 转为本月最后一天的最后一秒
|
||||||
if (this.monthValue.length > 0) {
|
if (this.monthValue.length > 0) {
|
||||||
this.queryParams.startTime = this.monthValue[0]
|
this.queryParams.startTime = this.monthValue[0];
|
||||||
this.queryParams.endTime = this.transformTime(this.monthValue[1])
|
this.queryParams.endTime = this.transformTime(this.monthValue[1]);
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('月范围不能为空')
|
this.$modal.msgError('月范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
default: //本年最后一天
|
default: //本年最后一天
|
||||||
if (this.yearValue1 && this.yearValue2) {
|
if (this.yearValue1 && this.yearValue2) {
|
||||||
if (this.yearValue2 < this.yearValue1) {
|
if (this.yearValue2 < this.yearValue1) {
|
||||||
this.$modal.msgError('结束时间不能早于开始时间')
|
this.$modal.msgError('结束时间不能早于开始时间');
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
this.queryParams.startTime = this.yearValue1
|
this.queryParams.startTime = this.yearValue1;
|
||||||
this.queryParams.endTime = this.transformYear(this.yearValue2)
|
this.queryParams.endTime = this.transformYear(this.yearValue2);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('年范围不能为空')
|
this.$modal.msgError('年范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!this.queryParams.objType) {
|
if (!this.queryParams.objType) {
|
||||||
this.$modal.msgError('请选择对象维度')
|
this.$modal.msgError('请选择对象维度');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.queryParams.objIds.length === 0) {
|
if (this.queryParams.objIds.length === 0) {
|
||||||
this.$modal.msgError('请选择对象')
|
this.$modal.msgError('请选择对象');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
this.queryParams.startTime = this.queryParams.startTime + ''
|
this.queryParams.startTime = this.queryParams.startTime + '';
|
||||||
this.queryParams.endTime = this.queryParams.endTime + ''
|
this.queryParams.endTime = this.queryParams.endTime + '';
|
||||||
console.log(this.queryParams)
|
console.log(this.queryParams);
|
||||||
this.$emit('submit', this.queryParams)
|
this.$emit('submit', this.queryParams);
|
||||||
},
|
},
|
||||||
resetBtn() {
|
resetBtn() {
|
||||||
this.queryParams.energyTypeId = null
|
this.queryParams.energyTypeId = null;
|
||||||
this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value // 默认时
|
this.queryParams.timeDim = this.getDictDatas(
|
||||||
this.queryParams.objIds = []
|
this.DICT_TYPE.TIME_DIM
|
||||||
this.queryParams.objType = ''
|
)[0].value; // 默认时
|
||||||
this.timeValue = []
|
this.queryParams.objIds = [];
|
||||||
this.dateValue = []
|
this.queryParams.objType = '';
|
||||||
this.weekValue1 = null
|
this.timeValue = [];
|
||||||
this.weekValue2 = null
|
this.dateValue = [];
|
||||||
this.monthValue = []
|
this.weekValue1 = null;
|
||||||
this.yearValue1 = null
|
this.weekValue2 = null;
|
||||||
this.yearValue2 = null
|
this.monthValue = [];
|
||||||
|
this.yearValue1 = null;
|
||||||
|
this.yearValue2 = null;
|
||||||
},
|
},
|
||||||
transformTime(timeStamp) {// 本月最后一天
|
// 导出
|
||||||
let year = moment(timeStamp).format('YYYY')
|
exportBtn() {
|
||||||
let month = moment(timeStamp).format('MM')
|
this.$emit('export');
|
||||||
let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
|
|
||||||
let value = new Date(newData).getTime()
|
|
||||||
return value
|
|
||||||
},
|
},
|
||||||
transformYear(timeStamp) {// 本年最后一天
|
transformTime(timeStamp) {
|
||||||
let year = moment(timeStamp).format('YYYY')
|
// 本月最后一天
|
||||||
let newData = year+'-12-31 23:59:59'
|
let year = moment(timeStamp).format('YYYY');
|
||||||
let value = new Date(newData).getTime()
|
let month = moment(timeStamp).format('MM');
|
||||||
return value
|
let newData =
|
||||||
|
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
let value = new Date(newData).getTime();
|
||||||
|
return value;
|
||||||
},
|
},
|
||||||
switchMode() {// 展开和收起切换
|
transformYear(timeStamp) {
|
||||||
this.isExpand = !this.isExpand
|
// 本年最后一天
|
||||||
const element = this.$refs.searchBarRef
|
let year = moment(timeStamp).format('YYYY');
|
||||||
|
let newData = year + '-12-31 23:59:59';
|
||||||
|
let value = new Date(newData).getTime();
|
||||||
|
return value;
|
||||||
|
},
|
||||||
|
switchMode() {
|
||||||
|
// 展开和收起切换
|
||||||
|
this.isExpand = !this.isExpand;
|
||||||
|
const element = this.$refs.searchBarRef;
|
||||||
if (this.isExpand) {
|
if (this.isExpand) {
|
||||||
element.classList.remove('divHeight')
|
element.classList.remove('divHeight');
|
||||||
} else {
|
} else {
|
||||||
element.classList.add('divHeight')
|
element.classList.add('divHeight');
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
/* 时间整点 */
|
/* 时间整点 */
|
||||||
@ -463,11 +546,11 @@ export default {
|
|||||||
.demo-form-inline {
|
.demo-form-inline {
|
||||||
.el-date-editor .el-range__icon {
|
.el-date-editor .el-range__icon {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
.el-input__prefix .el-icon-date {
|
.el-input__prefix .el-icon-date {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -477,11 +560,15 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
background-color: #0B58FF;
|
background-color: #0b58ff;
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
.el-form-item {
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.searchBarBox .foldClass {
|
.searchBarBox .foldClass {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -489,7 +576,7 @@ export default {
|
|||||||
right: 0;
|
right: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color:#0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
.searchBarBox .foldClass .iconfont {
|
.searchBarBox .foldClass .iconfont {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -502,7 +589,7 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
background: #E8E8E8;
|
background: #e8e8e8;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
}
|
}
|
||||||
|
@ -1,96 +1,129 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container contrastAnalysisBox" id="contrastAnalysisBox">
|
<div
|
||||||
|
class="app-container contrastAnalysisBox"
|
||||||
|
id="contrastAnalysisBox">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-area :isFold="isFold" @submit="getList"/>
|
<search-area
|
||||||
<el-tabs v-model="activeName" @tab-click="switchChart" v-show='chartData.length'>
|
:isFold="isFold"
|
||||||
<el-tab-pane label="柱状图" name="bar">
|
@submit="getList"
|
||||||
<bar-chart ref="analysisBarChart" :chartData="chartData" :timeDim="timeDim" />
|
@export="exportExl" />
|
||||||
</el-tab-pane>
|
<div v-show="chartData.length">
|
||||||
<el-tab-pane label="折线图" name="line">
|
<bar-chart
|
||||||
<line-chart ref="analysisLineChart" :chartData="chartData" :timeDim="timeDim"/>
|
ref="analysisBarChart"
|
||||||
</el-tab-pane>
|
:chartData="chartData"
|
||||||
</el-tabs>
|
:timeDim="timeDim" />
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:table-data="list"
|
||||||
|
:max-height="tableH"
|
||||||
|
class="contrast-out-table" />
|
||||||
|
</div>
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-show='!chartData.length'></div>
|
<div
|
||||||
|
class="no-data-bg"
|
||||||
|
v-show="!chartData.length"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getCompare } from "@/api/analysis/energyAnalysis"
|
import { getCompare } from '@/api/analysis/energyAnalysis';
|
||||||
import SearchArea from "./components/searchArea"
|
import SearchArea from './components/searchArea';
|
||||||
import BarChart from "./components/barChart"
|
import BarChart from './components/barChart';
|
||||||
import LineChart from "./components/lineChart"
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
import FileSaver from 'file-saver';
|
||||||
|
import * as XLSX from 'xlsx/xlsx.mjs';
|
||||||
// import moment from 'moment'
|
// import moment from 'moment'
|
||||||
export default {
|
export default {
|
||||||
name: 'ContrastAnalysis',
|
name: 'ContrastAnalysis',
|
||||||
components: { SearchArea, BarChart, LineChart },
|
components: { SearchArea, BarChart },
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isFold: false,
|
isFold: false,
|
||||||
activeName: 'bar',
|
|
||||||
chartData: [],
|
chartData: [],
|
||||||
timeDim: ''
|
timeDim: '',
|
||||||
}
|
tableProps: [],
|
||||||
|
list: [],
|
||||||
|
tableH: this.tableHeight(250) / 2,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(260)
|
this.isFold = this.searchBarWidth('contrastAnalysisBox', 1437);
|
||||||
this.isFold = this.searchBarWidth('contrastAnalysisBox', 1437)
|
|
||||||
// console.log(document.getElementById("contrastAnalysisBox").offsetWidth)
|
// console.log(document.getElementById("contrastAnalysisBox").offsetWidth)
|
||||||
})
|
});
|
||||||
this.isFold = this.searchBarWidth('contrastAnalysisBox', 1437)
|
this.isFold = this.searchBarWidth('contrastAnalysisBox', 1437);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList(params) {
|
_setTableHeight() {
|
||||||
this.timeDim = params.timeDim
|
this.tableH = this.tableHeight(250) / 2;
|
||||||
getCompare({ ...params }).then((res) => {
|
|
||||||
console.log(res)
|
|
||||||
if (res.code === 0) {
|
|
||||||
this.chartData = res.data || []
|
|
||||||
} else {
|
|
||||||
this.chartData = []
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
switchChart() {
|
getList(params) {
|
||||||
if (this.activeName === 'bar') {
|
this.timeDim = params.timeDim;
|
||||||
this.$nextTick((res) => {
|
getCompare({ ...params }).then((res) => {
|
||||||
this.$refs.analysisBarChart.getChart()
|
if (res.code === 0) {
|
||||||
})
|
this.getTableList(res.data || []);
|
||||||
|
this.chartData = res.data || [];
|
||||||
} else {
|
} else {
|
||||||
this.$nextTick((res) => {
|
this.chartData = [];
|
||||||
this.$refs.analysisLineChart.getChart()
|
}
|
||||||
})
|
});
|
||||||
|
},
|
||||||
|
getTableList(arr) {
|
||||||
|
this.tableProps = [];
|
||||||
|
this.list = [];
|
||||||
|
let tempX = [];
|
||||||
|
let timeArr = arr[0].trendRespVOList || [];
|
||||||
|
this.list = timeArr.map((item) => {
|
||||||
|
return { time: item.time };
|
||||||
|
});
|
||||||
|
for (let i = 0; i < arr.length; i++) {
|
||||||
|
let obj = {};
|
||||||
|
obj.prop = arr[i].objId;
|
||||||
|
obj.label = arr[i].objName;
|
||||||
|
obj.minWidth = 100;
|
||||||
|
tempX.push(obj);
|
||||||
|
let tiemList = arr[i].trendRespVOList;
|
||||||
|
for (let j = 0; j < tiemList.length; j++) {
|
||||||
|
this.list[j][arr[i].objId] = tiemList[j].useNum
|
||||||
|
? tiemList[j].useNum.toFixed(2)
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.tableProps = [{ prop: 'time', label: '时间' }].concat(tempX);
|
||||||
|
},
|
||||||
|
// 导出
|
||||||
|
exportExl() {
|
||||||
|
if (this.list.length > 0) {
|
||||||
|
var wb = XLSX.utils.table_to_book(
|
||||||
|
document.querySelector('.contrast-out-table')
|
||||||
|
);
|
||||||
|
let fileName = '对比分析.xlsx';
|
||||||
|
var wbout = XLSX.write(wb, {
|
||||||
|
bookType: 'xlsx',
|
||||||
|
bookSST: true,
|
||||||
|
type: 'array',
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
FileSaver.saveAs(
|
||||||
|
new Blob([wbout], { type: 'application/octet-stream' }),
|
||||||
|
fileName
|
||||||
|
);
|
||||||
|
this.$message.success('导出成功');
|
||||||
|
} catch (e) {
|
||||||
|
if (typeof console !== 'undefined') console.log(e, wbout);
|
||||||
}
|
}
|
||||||
|
return wbout;
|
||||||
|
} else {
|
||||||
|
this.$modal.msgWarning('暂无数据导出');
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
.contrastAnalysisBox {
|
.contrastAnalysisBox {
|
||||||
.el-tabs__nav::after {
|
.contrast-out-table {
|
||||||
content: "";
|
margin-top: 20px;
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: #e4e7ed;
|
|
||||||
/* z-index: 1; */
|
|
||||||
}
|
|
||||||
.el-tabs__nav-wrap::after {
|
|
||||||
width: 0;
|
|
||||||
}
|
|
||||||
.el-tabs__item {
|
|
||||||
padding: 0 10px;
|
|
||||||
}
|
|
||||||
.el-tabs__item:hover {
|
|
||||||
color: rgba(0, 0, 0, 0.85);
|
|
||||||
}
|
|
||||||
.el-tabs__item.is-active {
|
|
||||||
color: rgba(0, 0, 0, 0.85);
|
|
||||||
}
|
|
||||||
.el-tabs__item {
|
|
||||||
color: rgba(0, 0, 0, 0.45);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,28 +1,44 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form :inline="true" class="demo-form-inline">
|
<el-form
|
||||||
|
:inline="true"
|
||||||
|
class="demo-form-inline">
|
||||||
<span class="blue-block"></span>
|
<span class="blue-block"></span>
|
||||||
<el-form-item label="对象选择" required>
|
<el-form-item
|
||||||
<el-cascader
|
label="对象选择"
|
||||||
v-model="objArr"
|
required>
|
||||||
:options="objList"
|
<el-select
|
||||||
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
v-model="queryParams.objId"
|
||||||
popper-class="cascaderParent"
|
placeholder="请选择"
|
||||||
size="small"
|
style="width: 250px"
|
||||||
style="width: 250px;"
|
filterable
|
||||||
clearable></el-cascader>
|
size="small">
|
||||||
|
<el-option
|
||||||
|
v-for="item in objList"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
:clearable="false"></el-option>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间维度" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.type" placeholder="请选择" style="width: 80px;" size="small">
|
label="时间维度"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.type"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 80px"
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in timeType"
|
v-for="item in timeType"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.id"
|
:value="item.id"
|
||||||
:clearable="false">
|
:clearable="false"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间" required>
|
<el-form-item
|
||||||
|
label="时间"
|
||||||
|
required>
|
||||||
<div v-show="queryParams.type === 1">
|
<div v-show="queryParams.type === 1">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="monthValue"
|
v-model="monthValue"
|
||||||
@ -31,8 +47,7 @@
|
|||||||
@change="selectTime"
|
@change="selectTime"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择月">
|
placeholder="选择月"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.type === 2">
|
<div v-show="queryParams.type === 2">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -43,8 +58,7 @@
|
|||||||
@change="selectTime"
|
@change="selectTime"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择周">
|
placeholder="选择周"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.type === 3">
|
<div v-show="queryParams.type === 3">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -54,24 +68,34 @@
|
|||||||
@change="selectTime"
|
@change="selectTime"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择日">
|
placeholder="选择日"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="search">查询</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="search">
|
||||||
|
查询
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<span class="separateStyle"></span>
|
<span class="separateStyle"></span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="exportData" plain>导出</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="exportData"
|
||||||
|
plain>
|
||||||
|
导出
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getTree } from '@/api/base/factory'
|
import { getTree } from '@/api/analysis/energyAnalysis';
|
||||||
import moment from 'moment'
|
import moment from 'moment';
|
||||||
export default {
|
export default {
|
||||||
name: 'searchArea',
|
name: 'searchArea',
|
||||||
data() {
|
data() {
|
||||||
@ -80,133 +104,126 @@ export default {
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
type: 1,
|
type: 1,
|
||||||
searchTime: null,
|
searchTime: null,
|
||||||
objId: null
|
objId: null,
|
||||||
|
objType: 1,
|
||||||
},
|
},
|
||||||
timeType: [
|
timeType: [
|
||||||
{ id: 1, name: '月' },
|
{ id: 1, name: '月' },
|
||||||
{ id: 2, name: '周' },
|
{ id: 2, name: '周' },
|
||||||
{id: 3, name: '日'}
|
{ id: 3, name: '日' },
|
||||||
],
|
],
|
||||||
monthValue: '',
|
monthValue: '',
|
||||||
weekValue: '',
|
weekValue: '',
|
||||||
dateValue: '',
|
dateValue: '',
|
||||||
objArr: [],
|
|
||||||
objList: [],
|
objList: [],
|
||||||
pickerOptions: {
|
pickerOptions: {
|
||||||
disabledDate(date) {
|
disabledDate(date) {
|
||||||
return date.getTime() > Date.now()
|
return date.getTime() > Date.now();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
pickerOptionsWeek: {
|
pickerOptionsWeek: {
|
||||||
disabledDate(time) {
|
disabledDate(time) {
|
||||||
let day = Date.now()
|
let day = Date.now();
|
||||||
let limitTime = moment(day).day(-1)
|
let limitTime = moment(day).day(-1);
|
||||||
return time.getTime() > new Date(limitTime).getTime()
|
return time.getTime() > new Date(limitTime).getTime();
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getObjTree()
|
this.getObjTree();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getObjTree() {
|
getObjTree() {
|
||||||
getTree().then(res => {
|
getTree().then((res) => {
|
||||||
this.objList = res.data || []
|
this.objList = res.data || [];
|
||||||
})
|
if (this.objList.length > 0) {
|
||||||
|
this.queryParams.objId = this.objList[0].id;
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
selectTime() {
|
selectTime() {
|
||||||
switch (this.queryParams.type) {
|
switch (this.queryParams.type) {
|
||||||
case 1:
|
case 1:
|
||||||
this.queryParams.searchTime = this.monthValue
|
this.queryParams.searchTime = this.monthValue;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
this.queryParams.searchTime = this.weekValue
|
this.queryParams.searchTime = this.weekValue;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.queryParams.searchTime = this.dateValue
|
this.queryParams.searchTime = this.dateValue;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 查询
|
// 查询
|
||||||
search() {
|
search() {
|
||||||
if (this.objArr.length === 0) {
|
if (!this.queryParams.objId) {
|
||||||
this.$modal.msgError('请选择对象')
|
this.$modal.msgError('请选择对象');
|
||||||
return false
|
return false;
|
||||||
} else {
|
|
||||||
this.queryParams.objId = this.objArr[this.objArr.length-1]
|
|
||||||
}
|
}
|
||||||
if (!this.queryParams.type) {
|
if (!this.queryParams.type) {
|
||||||
this.$modal.msgError('请选择时间维度')
|
this.$modal.msgError('请选择时间维度');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (!this.queryParams.searchTime) {
|
if (!this.queryParams.searchTime) {
|
||||||
this.$modal.msgError('请选择时间')
|
this.$modal.msgError('请选择时间');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
switch (this.queryParams.type) {
|
switch (this.queryParams.type) {
|
||||||
case 1:
|
case 1:
|
||||||
this.queryParams.searchTime = this.transformTime(this.monthValue)
|
this.queryParams.searchTime = this.transformTime(this.monthValue);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
let value = moment(this.weekValue).day(6).format('YYYY-MM-DD') + ' 23:59:59'
|
let value =
|
||||||
this.queryParams.searchTime = new Date(value).getTime()
|
moment(this.weekValue).day(6).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
this.queryParams.searchTime = new Date(value).getTime();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
let value2 = moment(this.dateValue).format('YYYY-MM-DD') + ' 23:59:59'
|
let value2 =
|
||||||
this.queryParams.searchTime = new Date(value2).getTime()
|
moment(this.dateValue).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
this.queryParams.searchTime = new Date(value2).getTime();
|
||||||
}
|
}
|
||||||
this.$emit('submit', this.queryParams)
|
this.$emit('submit', this.queryParams);
|
||||||
},
|
},
|
||||||
exportData() {
|
exportData() {
|
||||||
let name
|
let name;
|
||||||
if (this.queryParams.objId) {
|
if (this.queryParams.objId) {
|
||||||
name = this.getObjName(this.objList, this.queryParams.objId)
|
name = this.getObjName(this.objList, this.queryParams.objId);
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgWarning("对象不能为空")
|
this.$modal.msgWarning('对象不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
this.$emit('exportD', {name: name})
|
this.$emit('exportD', { name: name });
|
||||||
},
|
},
|
||||||
// 递归取对象name
|
// 递归取对象name
|
||||||
getObjName(list, id) {
|
getObjName(list, id) {
|
||||||
let _this = this
|
|
||||||
for (let i = 0; i < list.length; i++) {
|
for (let i = 0; i < list.length; i++) {
|
||||||
let a = list[i]
|
let a = list[i];
|
||||||
if (a.id === id) {
|
if (a.id === id) {
|
||||||
return a.name
|
return a.name;
|
||||||
} else {
|
|
||||||
if (a.children && a.children.length > 0) {
|
|
||||||
let res = _this.getObjName(a.children, id)
|
|
||||||
if (res) {
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
transformTime(timeStamp) {// 本月最后一天
|
transformTime(timeStamp) {
|
||||||
let year = moment(timeStamp).format('YYYY')
|
// 本月最后一天
|
||||||
let month = moment(timeStamp).format('MM')
|
let year = moment(timeStamp).format('YYYY');
|
||||||
let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
|
let month = moment(timeStamp).format('MM');
|
||||||
let value = new Date(newData).getTime()
|
let newData =
|
||||||
return value
|
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
}
|
let value = new Date(newData).getTime();
|
||||||
}
|
return value;
|
||||||
}
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
/* 级联选择器 */
|
|
||||||
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.demo-form-inline {
|
.demo-form-inline {
|
||||||
.el-date-editor .el-range__icon {
|
.el-date-editor .el-range__icon {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
.el-input__prefix .el-icon-date {
|
.el-input__prefix .el-icon-date {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -215,7 +232,7 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
background: #E8E8E8;
|
background: #e8e8e8;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.demo-form-inline {
|
.demo-form-inline {
|
||||||
@ -223,10 +240,14 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
background-color: #0B58FF;
|
background-color: #0b58ff;
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
.el-form-item {
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,29 +1,34 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-area @submit="getList" @exportD="exportData"/>
|
<search-area
|
||||||
|
@submit="getList"
|
||||||
|
@exportD="exportData" />
|
||||||
<!-- 表格 -->
|
<!-- 表格 -->
|
||||||
<div v-show="chartData.length">
|
<div v-show="chartData.length">
|
||||||
<base-table
|
<base-table
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
class="qoq-out-table"
|
class="qoq-out-table" />
|
||||||
/>
|
|
||||||
<div class="chartTitle">环比分析图</div>
|
<div class="chartTitle">环比分析图</div>
|
||||||
<div style='width: 100%'>
|
<div style="width: 100%">
|
||||||
<line-chart ref="analysisLineChart" :chartData="chartData"/>
|
<line-chart
|
||||||
|
ref="analysisLineChart"
|
||||||
|
:chartData="chartData" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-show='!chartData.length'></div>
|
<div
|
||||||
|
class="no-data-bg"
|
||||||
|
v-show="!chartData.length"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getQoq } from "@/api/analysis/energyAnalysis"
|
import { getQoq } from '@/api/analysis/energyAnalysis';
|
||||||
import SearchArea from "./components/searchArea"
|
import SearchArea from './components/searchArea';
|
||||||
import LineChart from "./components/lineChart"
|
import LineChart from './components/lineChart';
|
||||||
import FileSaver from "file-saver"
|
import FileSaver from 'file-saver';
|
||||||
import * as XLSX from 'xlsx/xlsx.mjs'
|
import * as XLSX from 'xlsx/xlsx.mjs';
|
||||||
export default {
|
export default {
|
||||||
name: 'QoqAnalysis',
|
name: 'QoqAnalysis',
|
||||||
components: { SearchArea, LineChart },
|
components: { SearchArea, LineChart },
|
||||||
@ -31,87 +36,90 @@ export default {
|
|||||||
return {
|
return {
|
||||||
chartData: [],
|
chartData: [],
|
||||||
tableProps: [],
|
tableProps: [],
|
||||||
list: []
|
list: [],
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList(params) {
|
getList(params) {
|
||||||
getQoq({ ...params }).then((res) => {
|
getQoq({ ...params }).then((res) => {
|
||||||
if (res.code === 0 && res.data) {
|
if (res.code === 0 && res.data) {
|
||||||
this.getTableList(res.data)
|
this.getTableList(res.data);
|
||||||
} else {
|
} else {
|
||||||
this.chartData = []
|
this.chartData = [];
|
||||||
this.list = []
|
this.list = [];
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
getTableList(arr) {
|
getTableList(arr) {
|
||||||
let data = arr.data
|
let data = arr.data;
|
||||||
let nameData = arr.nameData
|
let nameData = arr.nameData;
|
||||||
let tempX = []
|
let tempX = [];
|
||||||
data[0].data.map((item) => {
|
data[0].data.map((item) => {
|
||||||
let obj = {}
|
let obj = {};
|
||||||
obj.prop = item.dynamicName
|
obj.prop = item.dynamicName;
|
||||||
obj.label = item.dynamicName
|
obj.label = item.dynamicName;
|
||||||
obj.id = item.id
|
obj.id = item.id;
|
||||||
obj.children = []
|
obj.children = [];
|
||||||
tempX.push(obj)
|
tempX.push(obj);
|
||||||
})
|
});
|
||||||
for (let i = 0; i < nameData.length; i++) {
|
for (let i = 0; i < nameData.length; i++) {
|
||||||
for (let j = 0; j < tempX.length; j++) {
|
for (let j = 0; j < tempX.length; j++) {
|
||||||
if (tempX[j].id === nameData[i].parentId) {
|
if (tempX[j].id === nameData[i].parentId) {
|
||||||
let obj = {}
|
let obj = {};
|
||||||
obj.prop = tempX[j].prop + '_' + nameData[i].name
|
obj.prop = tempX[j].prop + '_' + nameData[i].name;
|
||||||
obj.label = nameData[i].name
|
obj.label = nameData[i].name;
|
||||||
tempX[j].children.push(obj)
|
tempX[j].children.push(obj);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.tableProps = [{prop: 'time',label: '时间'}].concat(tempX)
|
this.tableProps = [{ prop: 'time', label: '时间' }].concat(tempX);
|
||||||
// 数据
|
// 数据
|
||||||
this.list = []
|
this.list = [];
|
||||||
for (let k = 0; k < data.length; k++) {
|
for (let k = 0; k < data.length; k++) {
|
||||||
let obj = {}
|
let obj = {};
|
||||||
obj.time = data[k].time
|
obj.time = data[k].time;
|
||||||
let arr1 = data[k].data
|
let arr1 = data[k].data;
|
||||||
obj.type = []
|
obj.type = [];
|
||||||
for (let q = 0; q < arr1.length; q++) {
|
for (let q = 0; q < arr1.length; q++) {
|
||||||
let name = arr1[q].dynamicName
|
let name = arr1[q].dynamicName;
|
||||||
obj.type.push(name)
|
obj.type.push(name);
|
||||||
let arr2 = arr1[q].children
|
let arr2 = arr1[q].children;
|
||||||
for (let p = 0; p < arr2.length; p++) {
|
for (let p = 0; p < arr2.length; p++) {
|
||||||
let prop = name + '_' + arr2[p].dynamicName
|
let prop = name + '_' + arr2[p].dynamicName;
|
||||||
obj[prop] = arr2[p].dynamicValue
|
obj[prop] = arr2[p].dynamicValue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.list.push(obj)
|
this.list.push(obj);
|
||||||
}
|
}
|
||||||
this.chartData = this.list
|
this.chartData = this.list;
|
||||||
},
|
},
|
||||||
exportData(val) {
|
exportData(val) {
|
||||||
if (this.list.length > 0) {
|
if (this.list.length > 0) {
|
||||||
var wb = XLSX.utils.table_to_book(document.querySelector(".qoq-out-table"))
|
var wb = XLSX.utils.table_to_book(
|
||||||
let fileName = val.name + "环比分析.xlsx"
|
document.querySelector('.qoq-out-table')
|
||||||
|
);
|
||||||
|
let fileName = val.name + '环比分析.xlsx';
|
||||||
var wbout = XLSX.write(wb, {
|
var wbout = XLSX.write(wb, {
|
||||||
bookType: "xlsx",
|
bookType: 'xlsx',
|
||||||
bookSST: true,
|
bookSST: true,
|
||||||
type: "array"
|
type: 'array',
|
||||||
})
|
});
|
||||||
try {
|
try {
|
||||||
FileSaver.saveAs(
|
FileSaver.saveAs(
|
||||||
new Blob([wbout], { type: "application/octet-stream" }),
|
new Blob([wbout], { type: 'application/octet-stream' }),
|
||||||
fileName
|
fileName
|
||||||
)
|
);
|
||||||
|
this.$message.success('导出成功');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (typeof console !== "undefined") console.log(e, wbout);
|
if (typeof console !== 'undefined') console.log(e, wbout);
|
||||||
}
|
}
|
||||||
return wbout
|
return wbout;
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgWarning("暂无数据导出")
|
this.$modal.msgWarning('暂无数据导出');
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss' scoped>
|
<style lang='scss' scoped>
|
||||||
.chartTitle {
|
.chartTitle {
|
||||||
@ -124,7 +132,7 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
background-color: #0B58FF;
|
background-color: #0b58ff;
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
@ -2,44 +2,43 @@
|
|||||||
<div
|
<div
|
||||||
id="analysischartLine"
|
id="analysischartLine"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
:style="{ height: chartHeight + 'px' }"
|
:style="{ height: chartHeight + 'px' }"></div>
|
||||||
></div>
|
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import * as echarts from 'echarts'
|
import * as echarts from 'echarts';
|
||||||
import resize from '@/utils/chartMixins/resize'
|
import resize from '@/utils/chartMixins/resize';
|
||||||
export default {
|
export default {
|
||||||
name: "LineChart",
|
name: 'LineChart',
|
||||||
mixins: [resize],
|
mixins: [resize],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
chartDom: '',
|
chartDom: '',
|
||||||
chart: '',
|
chart: '',
|
||||||
chartHeight: this.tableHeight(214) - 70
|
chartHeight: this.tableHeight(214) - 100,
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
chartData: {
|
chartData: {
|
||||||
type: Array,
|
type: Array,
|
||||||
required: true,
|
required: true,
|
||||||
default: () => {
|
default: () => {
|
||||||
return []
|
return [];
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
timeDim: {
|
timeDim: {
|
||||||
type: String,
|
type: String,
|
||||||
default: ''
|
default: '',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
chartData: function () {
|
chartData: function () {
|
||||||
this.getChart()
|
this.getChart();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.chartHeight = this.tableHeight(214) - 70
|
this.chartHeight = this.tableHeight(214) - 70;
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getChart() {
|
getChart() {
|
||||||
@ -48,23 +47,23 @@ export default {
|
|||||||
this.chart !== '' &&
|
this.chart !== '' &&
|
||||||
this.chart !== undefined
|
this.chart !== undefined
|
||||||
) {
|
) {
|
||||||
this.chart.dispose() // 页面多次刷新会出现警告,Dom已经初始化了一个实例,这是销毁实例
|
this.chart.dispose(); // 页面多次刷新会出现警告,Dom已经初始化了一个实例,这是销毁实例
|
||||||
}
|
}
|
||||||
this.chartDom = document.getElementById('analysischartLine')
|
this.chartDom = document.getElementById('analysischartLine');
|
||||||
this.chart = echarts.init(this.chartDom)
|
this.chart = echarts.init(this.chartDom);
|
||||||
let xData = []
|
let xData = [];
|
||||||
let yData = []
|
let yData = [];
|
||||||
for (let i = 0; i < this.chartData.length; i++) {
|
for (let i = 0; i < this.chartData.length; i++) {
|
||||||
let time = ""
|
let time = '';
|
||||||
if (this.timeDim === '3') {
|
if (this.timeDim === '3') {
|
||||||
let year = this.chartData[i].time.slice(0,4)
|
let year = this.chartData[i].time.slice(0, 4);
|
||||||
let weak = this.chartData[i].time.slice(4,6)
|
let weak = this.chartData[i].time.slice(4, 6);
|
||||||
time = year+' 第 '+weak+' 周'
|
time = year + ' 第 ' + weak + ' 周';
|
||||||
} else {
|
} else {
|
||||||
time = this.chartData[i].time
|
time = this.chartData[i].time;
|
||||||
}
|
}
|
||||||
xData.push(time)
|
xData.push(time);
|
||||||
yData.push(this.chartData[i].useNum)
|
yData.push(this.chartData[i].useNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
var option = {
|
var option = {
|
||||||
@ -76,28 +75,28 @@ export default {
|
|||||||
left: '4%',
|
left: '4%',
|
||||||
right: '1%',
|
right: '1%',
|
||||||
bottom: '1%',
|
bottom: '1%',
|
||||||
containLabel: true
|
containLabel: true,
|
||||||
},
|
},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data: xData,
|
data: xData,
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
rotate: "45"
|
rotate: '45',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
type: 'value'
|
type: 'value',
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
data: yData,
|
data: yData,
|
||||||
type: 'line'
|
type: 'line',
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
option && this.chart.setOption(option);
|
option && this.chart.setOption(option);
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
@ -1,38 +1,79 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="searchBarBox divHeight" ref="searchBarRef" :style="{ paddingRight: isFold ? '55px' : '0px' }">
|
<div
|
||||||
<el-form :inline="true" class="demo-form-inline">
|
class="searchBarBox divHeight"
|
||||||
|
ref="searchBarRef"
|
||||||
|
:style="{ paddingRight: isFold ? '55px' : '0px' }">
|
||||||
|
<el-form
|
||||||
|
:inline="true"
|
||||||
|
class="demo-form-inline">
|
||||||
<span class="blue-block"></span>
|
<span class="blue-block"></span>
|
||||||
<el-form-item label="能源类型" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.energyTypeId" placeholder="请选择" style="width: 100px;" size="small">
|
label="能源类型"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.energyTypeId"
|
||||||
|
placeholder="请选择"
|
||||||
|
size="small"
|
||||||
|
@change="chooseType"
|
||||||
|
filterable
|
||||||
|
style="width: 100%">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in energyTypeList"
|
v-for="item in energyTypeList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.labelName"
|
||||||
:value="item.id">
|
:value="item.id"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="对象选择" required>
|
<el-form-item
|
||||||
|
v-if="energyType === 1"
|
||||||
|
label="对象选择"
|
||||||
|
required>
|
||||||
<el-cascader
|
<el-cascader
|
||||||
v-model="objArr"
|
v-model="objArr"
|
||||||
:options="objList"
|
:options="objList"
|
||||||
|
:show-all-levels="false"
|
||||||
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
||||||
popper-class="cascaderParent"
|
|
||||||
size="small"
|
size="small"
|
||||||
|
@change="changeLine"
|
||||||
clearable></el-cascader>
|
clearable></el-cascader>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间维度" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.timeDim" placeholder="请选择" style="width: 80px;" size="small">
|
v-if="energyType === 2"
|
||||||
|
label="对象选择"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="objId"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 250px"
|
||||||
|
filterable
|
||||||
|
size="small">
|
||||||
|
<el-option
|
||||||
|
v-for="item in objList"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
:clearable="false"></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
label="时间维度"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.timeDim"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 80px"
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)"
|
v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
size="small">
|
size="small"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间范围" required>
|
<el-form-item
|
||||||
|
label="时间范围"
|
||||||
|
required>
|
||||||
<div v-show="queryParams.timeDim === '1'">
|
<div v-show="queryParams.timeDim === '1'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="timeValue"
|
v-model="timeValue"
|
||||||
@ -46,9 +87,7 @@
|
|||||||
popper-class="noneMinute"
|
popper-class="noneMinute"
|
||||||
@change="timeSelect"
|
@change="timeSelect"
|
||||||
size="small"
|
size="small"
|
||||||
style='width:350px;'
|
style="width: 350px"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '2'">
|
<div v-show="queryParams.timeDim === '2'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -61,31 +100,28 @@
|
|||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
@change="timeSelect"
|
@change="timeSelect"
|
||||||
size="small"
|
size="small"
|
||||||
style='width:350px;'
|
style="width: 350px"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '3'">
|
<div v-show="queryParams.timeDim === '3'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="weekValue1"
|
v-model="weekValue1"
|
||||||
type="week"
|
type="week"
|
||||||
format="yyyy 第 WW 周"
|
format="yyyy 第 WW 周"
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
:picker-options="pickerOptionsWeek"
|
:picker-options="pickerOptionsWeek"
|
||||||
@change="startWeek"
|
@change="startWeek"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择周">
|
placeholder="选择周"></el-date-picker>
|
||||||
</el-date-picker>-
|
-
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="weekValue2"
|
v-model="weekValue2"
|
||||||
type="week"
|
type="week"
|
||||||
format="yyyy 第 WW 周"
|
format="yyyy 第 WW 周"
|
||||||
:picker-options="pickerOptionsWeek"
|
:picker-options="pickerOptionsWeek"
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
@change="endWeek"
|
@change="endWeek"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择周">
|
placeholder="选择周"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '4'">
|
<div v-show="queryParams.timeDim === '4'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -97,59 +133,74 @@
|
|||||||
value-format="timestamp"
|
value-format="timestamp"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
size="small"
|
size="small"
|
||||||
style='width:350px;'
|
style="width: 350px"
|
||||||
@change="timeSelect"
|
@change="timeSelect"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.timeDim === '5'">
|
<div v-show="queryParams.timeDim === '5'">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
v-model="yearValue1"
|
v-model="yearValue1"
|
||||||
type="year"
|
type="year"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
value-format="timestamp"
|
value-format="timestamp"
|
||||||
placeholder="选择年"
|
placeholder="选择年"
|
||||||
size="small"
|
size="small"
|
||||||
@change="startYear"
|
@change="startYear"></el-date-picker>
|
||||||
>
|
-
|
||||||
</el-date-picker>-
|
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
style='width:170px;'
|
style="width: 170px"
|
||||||
v-model="yearValue2"
|
v-model="yearValue2"
|
||||||
type="year"
|
type="year"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
value-format="timestamp"
|
value-format="timestamp"
|
||||||
placeholder="选择年"
|
placeholder="选择年"
|
||||||
size="small"
|
size="small"
|
||||||
@change="endYear"
|
@change="endYear"></el-date-picker>
|
||||||
>
|
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="search">查询</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="handBtn('search')">
|
||||||
|
查询
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
size="small"
|
||||||
|
@click="resetBtn">
|
||||||
|
重置
|
||||||
|
</el-button>
|
||||||
<span class="separateStyle"></span>
|
<span class="separateStyle"></span>
|
||||||
<el-button size="small" @click="resetBtn">重置</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
plain
|
||||||
|
@click="handBtn('exportBtn')">
|
||||||
|
导出
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span v-if="isFold" class="foldClass" @click='switchMode'>
|
<span
|
||||||
|
v-if="isFold"
|
||||||
|
class="foldClass"
|
||||||
|
@click="switchMode">
|
||||||
{{ isExpand ? '收起' : '展开' }}
|
{{ isExpand ? '收起' : '展开' }}
|
||||||
<svg-icon :icon-class="isExpand ? 'upward' : 'downward'" />
|
<svg-icon :icon-class="isExpand ? 'upward' : 'downward'" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyTypeListAll } from "@/api/base/energyType"
|
import { getTree } from '@/api/analysis/energyAnalysis';
|
||||||
import { getTree } from '@/api/base/factory'
|
import { getEnergyTypeListAll } from '@/api/base/energyType';
|
||||||
import moment from 'moment'
|
import moment from 'moment';
|
||||||
export default {
|
export default {
|
||||||
name: 'searchArea',
|
name: 'searchArea',
|
||||||
props: {
|
props: {
|
||||||
isFold: {// 多行模式(默认否)
|
isFold: {
|
||||||
|
// 多行模式(默认否)
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -160,8 +211,13 @@ export default {
|
|||||||
objId: null,
|
objId: null,
|
||||||
timeDim: null,
|
timeDim: null,
|
||||||
startTime: null,
|
startTime: null,
|
||||||
endTime: null
|
endTime: null,
|
||||||
|
objType: 1, //1工厂2产线3工段
|
||||||
},
|
},
|
||||||
|
objId: null,
|
||||||
|
objType: 1, //1工厂2产线3工段,非电使用
|
||||||
|
energyTypeList: [],
|
||||||
|
energyType: 0, //1电2非电
|
||||||
objArr: [],
|
objArr: [],
|
||||||
timeValue: [], // 最大7天只能整点
|
timeValue: [], // 最大7天只能整点
|
||||||
dateValue: [], // 最大30天
|
dateValue: [], // 最大30天
|
||||||
@ -170,248 +226,300 @@ export default {
|
|||||||
monthValue: [], //最多24月
|
monthValue: [], //最多24月
|
||||||
yearValue1: null, //最多10年
|
yearValue1: null, //最多10年
|
||||||
yearValue2: null,
|
yearValue2: null,
|
||||||
energyTypeList: [],
|
|
||||||
objList: [],
|
objList: [],
|
||||||
pickerOptions: {
|
pickerOptions: {
|
||||||
disabledDate(date) {
|
disabledDate(date) {
|
||||||
return date.getTime() > Date.now()
|
return date.getTime() > Date.now();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
pickerOptionsWeek: {
|
pickerOptionsWeek: {
|
||||||
disabledDate(time) {
|
disabledDate(time) {
|
||||||
let day = Date.now()
|
let day = Date.now();
|
||||||
let limitTime = moment(day).day(-1)
|
let limitTime = moment(day).day(-1);
|
||||||
return time.getTime() > new Date(limitTime).getTime()
|
return time.getTime() > new Date(limitTime).getTime();
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getTypeList()
|
this.getEnergyList();
|
||||||
this.getObjTree()
|
this.getObjTree();
|
||||||
this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value // 默认时
|
this.queryParams.timeDim = this.getDictDatas(
|
||||||
this.timeValue = [moment().startOf('day'), moment().endOf('day')-59*61*1000]
|
this.DICT_TYPE.TIME_DIM
|
||||||
|
)[0].value; // 默认时
|
||||||
|
this.timeValue = [
|
||||||
|
moment().startOf('day'),
|
||||||
|
moment().endOf('day') - 59 * 61 * 1000,
|
||||||
|
];
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getTypeList() {
|
|
||||||
getEnergyTypeListAll().then((res) => {
|
|
||||||
this.energyTypeList = res.data || []
|
|
||||||
})
|
|
||||||
},
|
|
||||||
getObjTree() {
|
getObjTree() {
|
||||||
getTree().then(res => {
|
getTree().then((res) => {
|
||||||
this.objList = res.data || []
|
this.objList = res.data || [];
|
||||||
})
|
if (this.objList.length > 0) {
|
||||||
|
this.objId = this.objList[0].id;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 获取能源类型
|
||||||
|
getEnergyList() {
|
||||||
|
getEnergyTypeListAll().then((res) => {
|
||||||
|
this.energyTypeList = res.data || [];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 切换能源类型
|
||||||
|
chooseType(id) {
|
||||||
|
let val;
|
||||||
|
this.energyTypeList.map((item) => {
|
||||||
|
if (item.id === id) {
|
||||||
|
val = item.name;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (val == 1 || val == 2) {
|
||||||
|
this.energyType = 1;
|
||||||
|
} else {
|
||||||
|
this.energyType = 2;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 选择工厂/产线/单元
|
||||||
|
changeLine(val) {
|
||||||
|
this.objType = val.length || 0;
|
||||||
},
|
},
|
||||||
// 范围选择器
|
// 范围选择器
|
||||||
timeSelect() {
|
timeSelect() {
|
||||||
switch (this.queryParams.timeDim) {
|
switch (this.queryParams.timeDim) {
|
||||||
case '1':
|
case '1':
|
||||||
if (!this.timeValue) {
|
if (!this.timeValue) {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.timeValue[1] - this.timeValue[0] > 7 * 24 * 3600000) {
|
if (this.timeValue[1] - this.timeValue[0] > 7 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为7天,请重新选择')
|
this.$modal.msgError('最大时间范围为7天,请重新选择');
|
||||||
this.timeValue = []
|
this.timeValue = [];
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '2':
|
case '2':
|
||||||
if (!this.dateValue) {
|
if (!this.dateValue) {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.dateValue[1] - this.dateValue[0] > 29 * 24 * 3600000) {
|
if (this.dateValue[1] - this.dateValue[0] > 29 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为30天,请重新选择') // 自动选择默认是0:00:00要求是23:59:59
|
this.$modal.msgError('最大时间范围为30天,请重新选择'); // 自动选择默认是0:00:00要求是23:59:59
|
||||||
this.dateValue = []
|
this.dateValue = [];
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '4':
|
case '4':
|
||||||
if (!this.monthValue) {
|
if (!this.monthValue) {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.monthValue[1] - this.monthValue[0] > 729 * 24 * 3600000) {
|
if (this.monthValue[1] - this.monthValue[0] > 729 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为24个月,请重新选择')// 同理上面
|
this.$modal.msgError('最大时间范围为24个月,请重新选择'); // 同理上面
|
||||||
this.monthValue = []
|
this.monthValue = [];
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 年选择器
|
// 年选择器
|
||||||
startYear() {
|
startYear() {
|
||||||
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
||||||
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
|
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择');
|
||||||
this.yearValue1 = null
|
this.yearValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.yearValue1 && this.yearValue2) {
|
if (this.yearValue1 && this.yearValue2) {
|
||||||
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为10年,请重新选择')
|
this.$modal.msgError('最大时间范围为10年,请重新选择');
|
||||||
this.yearValue1 = null
|
this.yearValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
endYear() {
|
endYear() {
|
||||||
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
|
||||||
this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
|
this.$modal.msgError('结束时间不能早于开始时间,请重新选择');
|
||||||
this.yearValue2 = null
|
this.yearValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.yearValue1 && this.yearValue2) {
|
if (this.yearValue1 && this.yearValue2) {
|
||||||
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
if (this.yearValue2 - this.yearValue1 > 10 * 365 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为10年,请重新选择')
|
this.$modal.msgError('最大时间范围为10年,请重新选择');
|
||||||
this.yearValue2 = null
|
this.yearValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 周选择器
|
// 周选择器
|
||||||
startWeek() {
|
startWeek() {
|
||||||
if (this.weekValue1 && this.weekValue2) {
|
if (this.weekValue1 && this.weekValue2) {
|
||||||
let a = new Date(this.weekValue1).getTime()
|
let a = new Date(this.weekValue1).getTime();
|
||||||
let b = new Date(this.weekValue2).getTime()
|
let b = new Date(this.weekValue2).getTime();
|
||||||
if (a > b) {
|
if (a > b) {
|
||||||
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
|
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择');
|
||||||
this.weekValue1 = null
|
this.weekValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (b - a > 167 * 24 * 3600000) {
|
if (b - a > 167 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为24周,请重新选择')
|
this.$modal.msgError('最大时间范围为24周,请重新选择');
|
||||||
this.weekValue1 = null
|
this.weekValue1 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
endWeek() {
|
endWeek() {
|
||||||
if (this.weekValue1 && this.weekValue2) {
|
if (this.weekValue1 && this.weekValue2) {
|
||||||
let a = new Date(this.weekValue1).getTime()
|
let a = new Date(this.weekValue1).getTime();
|
||||||
let b = new Date(this.weekValue2).getTime()
|
let b = new Date(this.weekValue2).getTime();
|
||||||
if (a > b) {
|
if (a > b) {
|
||||||
this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
|
this.$modal.msgError('结束时间不能早于开始时间,请重新选择');
|
||||||
this.weekValue2 = null
|
this.weekValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (b - a > 167 * 24 * 3600000) {
|
if (b - a > 167 * 24 * 3600000) {
|
||||||
this.$modal.msgError('最大时间范围为24周,请重新选择')
|
this.$modal.msgError('最大时间范围为24周,请重新选择');
|
||||||
this.weekValue2 = null
|
this.weekValue2 = null;
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 查询
|
// 查询
|
||||||
search() {
|
handBtn(val) {
|
||||||
if (!this.queryParams.energyTypeId) {
|
if (!this.queryParams.energyTypeId) {
|
||||||
this.$modal.msgError('请选择能源类型')
|
this.$modal.msgError('请选择能源类型');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
|
if (this.energyType == 1) {
|
||||||
if (this.objArr.length === 0) {
|
if (this.objArr.length === 0) {
|
||||||
this.$modal.msgError('请选择对象')
|
this.$modal.msgError('请选择对象');
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
this.queryParams.objId = this.objArr[this.objArr.length-1]
|
this.queryParams.objId = this.objArr[this.objArr.length - 1];
|
||||||
|
this.queryParams.objType = this.objType;
|
||||||
}
|
}
|
||||||
|
} else if (this.energyType == 2) {
|
||||||
|
if (!this.objId) {
|
||||||
|
this.$modal.msgError('请选择对象');
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
this.queryParams.objId = this.objId;
|
||||||
|
this.queryParams.objType = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.queryParams.timeDim) {
|
if (!this.queryParams.timeDim) {
|
||||||
this.$modal.msgError('请选择时间维度')
|
this.$modal.msgError('请选择时间维度');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
switch (this.queryParams.timeDim) {
|
switch (this.queryParams.timeDim) {
|
||||||
case '1':
|
case '1':
|
||||||
if (this.timeValue && this.timeValue.length > 0) {
|
if (this.timeValue && this.timeValue.length > 0) {
|
||||||
this.queryParams.startTime = this.timeValue[0]
|
this.queryParams.startTime = this.timeValue[0];
|
||||||
this.queryParams.endTime = this.timeValue[1] // 不用转
|
this.queryParams.endTime = this.timeValue[1]; // 不用转
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('时间范围不能为空')
|
this.$modal.msgError('时间范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '2':
|
case '2':
|
||||||
if (this.dateValue && this.dateValue.length > 0) {
|
if (this.dateValue && this.dateValue.length > 0) {
|
||||||
this.queryParams.startTime = this.dateValue[0]
|
this.queryParams.startTime = this.dateValue[0];
|
||||||
this.queryParams.endTime = this.dateValue[1] + 86399000 // 转为23:59:59
|
this.queryParams.endTime = this.dateValue[1] + 86399000; // 转为23:59:59
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('日范围不能为空')
|
this.$modal.msgError('日范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '3':
|
case '3':
|
||||||
if (this.weekValue1 && this.weekValue2) {
|
if (this.weekValue1 && this.weekValue2) {
|
||||||
let a = moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00'
|
let a =
|
||||||
let b = moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59'
|
moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00';
|
||||||
this.queryParams.startTime = new Date(a).getTime()
|
let b =
|
||||||
this.queryParams.endTime = new Date(b).getTime()
|
moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
this.queryParams.startTime = new Date(a).getTime();
|
||||||
|
this.queryParams.endTime = new Date(b).getTime();
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('周范围不能为空')
|
this.$modal.msgError('周范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
case '4': // 转为本月最后一天的最后一秒
|
case '4': // 转为本月最后一天的最后一秒
|
||||||
if (this.monthValue && this.monthValue.length > 0) {
|
if (this.monthValue && this.monthValue.length > 0) {
|
||||||
this.queryParams.startTime = this.monthValue[0]
|
this.queryParams.startTime = this.monthValue[0];
|
||||||
this.queryParams.endTime = this.transformTime(this.monthValue[1])
|
this.queryParams.endTime = this.transformTime(this.monthValue[1]);
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('月范围不能为空')
|
this.$modal.msgError('月范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
break
|
break;
|
||||||
default: //本年最后一天
|
default: //本年最后一天
|
||||||
if (this.yearValue1 && this.yearValue2) {
|
if (this.yearValue1 && this.yearValue2) {
|
||||||
if (this.yearValue2 < this.yearValue1) {
|
if (this.yearValue2 < this.yearValue1) {
|
||||||
this.$modal.msgError('结束时间不能早于开始时间')
|
this.$modal.msgError('结束时间不能早于开始时间');
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
this.queryParams.startTime = this.yearValue1
|
this.queryParams.startTime = this.yearValue1;
|
||||||
this.queryParams.endTime = this.transformYear(this.yearValue2)
|
this.queryParams.endTime = this.transformYear(this.yearValue2);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError('年范围不能为空')
|
this.$modal.msgError('年范围不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.queryParams.startTime = this.queryParams.startTime + ''
|
this.queryParams.startTime = this.queryParams.startTime + '';
|
||||||
this.queryParams.endTime = this.queryParams.endTime + ''
|
this.queryParams.endTime = this.queryParams.endTime + '';
|
||||||
this.$emit('submit', this.queryParams)
|
if (val === 'search') {
|
||||||
|
this.$emit('submit', this.queryParams);
|
||||||
|
} else {
|
||||||
|
this.$emit('export', this.queryParams);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 重置
|
// 重置
|
||||||
resetBtn() {
|
resetBtn() {
|
||||||
this.queryParams.energyTypeId = null
|
this.queryParams.energyTypeId = null;
|
||||||
this.queryParams.objId = null
|
this.energyType = 0;
|
||||||
this.objArr = []
|
this.queryParams.objId = null;
|
||||||
this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value // 默认时
|
this.objId = null;
|
||||||
this.timeValue = [moment().startOf('day'), moment().endOf('day')-59*61*1000]
|
this.objType = 1;
|
||||||
|
this.objArr = [];
|
||||||
|
this.queryParams.timeDim = this.getDictDatas(
|
||||||
|
this.DICT_TYPE.TIME_DIM
|
||||||
|
)[0].value; // 默认时
|
||||||
|
this.timeValue = [
|
||||||
|
moment().startOf('day'),
|
||||||
|
moment().endOf('day') - 59 * 61 * 1000,
|
||||||
|
];
|
||||||
},
|
},
|
||||||
transformTime(timeStamp) {// 本月最后一天
|
transformTime(timeStamp) {
|
||||||
let year = moment(timeStamp).format('YYYY')
|
// 本月最后一天
|
||||||
let month = moment(timeStamp).format('MM')
|
let year = moment(timeStamp).format('YYYY');
|
||||||
let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
|
let month = moment(timeStamp).format('MM');
|
||||||
let value = new Date(newData).getTime()
|
let newData =
|
||||||
return value
|
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
let value = new Date(newData).getTime();
|
||||||
|
return value;
|
||||||
},
|
},
|
||||||
transformYear(timeStamp) {// 本年最后一天
|
transformYear(timeStamp) {
|
||||||
let year = moment(timeStamp).format('YYYY')
|
// 本年最后一天
|
||||||
let newData = year+'-12-31 23:59:59'
|
let year = moment(timeStamp).format('YYYY');
|
||||||
let value = new Date(newData).getTime()
|
let newData = year + '-12-31 23:59:59';
|
||||||
return value
|
let value = new Date(newData).getTime();
|
||||||
|
return value;
|
||||||
},
|
},
|
||||||
switchMode() {// 展开和收起切换
|
switchMode() {
|
||||||
this.isExpand = !this.isExpand
|
// 展开和收起切换
|
||||||
const element = this.$refs.searchBarRef
|
this.isExpand = !this.isExpand;
|
||||||
|
const element = this.$refs.searchBarRef;
|
||||||
if (this.isExpand) {
|
if (this.isExpand) {
|
||||||
element.classList.remove('divHeight')
|
element.classList.remove('divHeight');
|
||||||
} else {
|
} else {
|
||||||
element.classList.add('divHeight')
|
element.classList.add('divHeight');
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
/* 级联选择器 */
|
|
||||||
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
/* 时间整点 */
|
/* 时间整点 */
|
||||||
.noneMinute .el-time-spinner__wrapper {
|
.noneMinute .el-time-spinner__wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -422,11 +530,11 @@ export default {
|
|||||||
.demo-form-inline {
|
.demo-form-inline {
|
||||||
.el-date-editor .el-range__icon {
|
.el-date-editor .el-range__icon {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
.el-input__prefix .el-icon-date {
|
.el-input__prefix .el-icon-date {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -436,11 +544,15 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
background-color: #0B58FF;
|
background-color: #0b58ff;
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
.el-form-item {
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.searchBarBox .foldClass {
|
.searchBarBox .foldClass {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -448,7 +560,7 @@ export default {
|
|||||||
right: 0;
|
right: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color:#0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
.searchBarBox .foldClass .iconfont {
|
.searchBarBox .foldClass .iconfont {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -461,7 +573,7 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
background: #E8E8E8;
|
background: #e8e8e8;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
}
|
}
|
||||||
|
@ -1,94 +1,113 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container trendAnalysisBox" id="trendAnalysisBox">
|
<div
|
||||||
|
class="app-container trendAnalysisBox"
|
||||||
|
id="trendAnalysisBox">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-area :isFold="isFold" @submit="getList"/>
|
<search-area
|
||||||
<el-tabs v-model="activeName" @tab-click="switchChart" v-show='chartData.length'>
|
:isFold="isFold"
|
||||||
<el-tab-pane label="柱状图" name="bar">
|
@submit="getList"
|
||||||
<bar-chart ref="analysisBarChart" :chartData="chartData" :timeDim="timeDim"/>
|
@export="exportExl" />
|
||||||
</el-tab-pane>
|
<div v-show="chartData.length">
|
||||||
<el-tab-pane label="折线图" name="line">
|
<base-table
|
||||||
<line-chart ref="analysisLineChart" :chartData="chartData" :timeDim="timeDim"/>
|
:table-props="tableProps"
|
||||||
</el-tab-pane>
|
:table-data="list"
|
||||||
</el-tabs>
|
class="trend-out-table" />
|
||||||
|
<line-chart
|
||||||
|
ref="analysisLineChart"
|
||||||
|
:chartData="chartData"
|
||||||
|
:timeDim="timeDim" />
|
||||||
|
</div>
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-show='!chartData.length'></div>
|
<div
|
||||||
|
class="no-data-bg"
|
||||||
|
v-show="!chartData.length"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyTrend } from "@/api/analysis/energyAnalysis"
|
import { getEnergyTrend, exportTrend } from '@/api/analysis/energyAnalysis';
|
||||||
import SearchArea from "./components/searchArea"
|
import SearchArea from './components/searchArea';
|
||||||
import BarChart from "./components/barChart"
|
import LineChart from './components/lineChart';
|
||||||
import LineChart from "./components/lineChart"
|
|
||||||
// import moment from 'moment'
|
// import moment from 'moment'
|
||||||
export default {
|
export default {
|
||||||
name: 'TrendAnalysis',
|
name: 'TrendAnalysis',
|
||||||
components: { SearchArea, BarChart, LineChart },
|
components: { SearchArea, LineChart },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isFold: false,
|
isFold: false,
|
||||||
activeName: 'bar',
|
|
||||||
chartData: [],
|
chartData: [],
|
||||||
timeDim: ''
|
timeDim: '',
|
||||||
}
|
tableProps: [],
|
||||||
|
list: [],
|
||||||
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(260)
|
this.tableH = this.tableHeight(260);
|
||||||
this.isFold = this.searchBarWidth('trendAnalysisBox', 1263)
|
this.isFold = this.searchBarWidth('trendAnalysisBox', 1480);
|
||||||
})
|
});
|
||||||
this.isFold = this.searchBarWidth('trendAnalysisBox', 1263)
|
this.isFold = this.searchBarWidth('trendAnalysisBox', 1480);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList(params) {
|
getList(params) {
|
||||||
this.timeDim = params.timeDim
|
this.timeDim = params.timeDim;
|
||||||
getEnergyTrend({ ...params }).then((res) => {
|
getEnergyTrend({ ...params }).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.chartData = res.data
|
this.getTableList(res.data || []);
|
||||||
|
this.chartData = res.data || [];
|
||||||
} else {
|
} else {
|
||||||
this.chartData = []
|
this.chartData = [];
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
switchChart() {
|
getTableList(arr) {
|
||||||
if (this.activeName === 'bar') {
|
this.tableProps = [];
|
||||||
this.$nextTick((res) => {
|
this.list = [];
|
||||||
this.$refs.analysisBarChart.getChart()
|
let tempX = [];
|
||||||
})
|
let listObj = { useNum: '消耗量' }; // 数据
|
||||||
} else {
|
for (let i = 0; i < arr.length; i++) {
|
||||||
this.$nextTick((res) => {
|
let obj = {};
|
||||||
this.$refs.analysisLineChart.getChart()
|
obj.prop = arr[i].time;
|
||||||
})
|
obj.label = arr[i].time;
|
||||||
}
|
obj.minWidth = 100;
|
||||||
}
|
tempX.push(obj);
|
||||||
}
|
listObj[arr[i].time] = arr[i].useNum || null;
|
||||||
}
|
}
|
||||||
|
this.tableProps = [{ prop: 'useNum', label: '时间' }].concat(tempX);
|
||||||
|
this.list.push(listObj);
|
||||||
|
},
|
||||||
|
// 导出excel
|
||||||
|
exportExl(params) {
|
||||||
|
exportTrend({ ...params }).then((res) => {
|
||||||
|
// let fileName = '';
|
||||||
|
// const contentDisposition = res.headers['content-disposition'];
|
||||||
|
// if (contentDisposition) {
|
||||||
|
// fileName = decodeURIComponent(
|
||||||
|
// contentDisposition.slice(
|
||||||
|
// contentDisposition.indexOf('filename=') + 9
|
||||||
|
// )
|
||||||
|
// );
|
||||||
|
// }
|
||||||
|
const blob = new Blob([res.data]);
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.readAsDataURL(blob);
|
||||||
|
reader.onload = (e) => {
|
||||||
|
const a = document.createElement('a');
|
||||||
|
a.download = '走势分析';
|
||||||
|
a.href = e.target.result;
|
||||||
|
document.body.appendChild(a);
|
||||||
|
a.click();
|
||||||
|
document.body.removeChild(a);
|
||||||
|
this.$message.success('导出成功');
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
.trendAnalysisBox {
|
.trendAnalysisBox {
|
||||||
.el-tabs__nav::after {
|
.trend-out-table {
|
||||||
content: "";
|
margin-bottom: 15px;
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: #e4e7ed;
|
|
||||||
/* z-index: 1; */
|
|
||||||
}
|
|
||||||
.el-tabs__nav-wrap::after {
|
|
||||||
width: 0;
|
|
||||||
}
|
|
||||||
.el-tabs__item {
|
|
||||||
padding: 0 10px;
|
|
||||||
}
|
|
||||||
.el-tabs__item:hover {
|
|
||||||
color: rgba(0, 0, 0, 0.85);
|
|
||||||
}
|
|
||||||
.el-tabs__item.is-active {
|
|
||||||
color: rgba(0, 0, 0, 0.85);
|
|
||||||
}
|
|
||||||
.el-tabs__item {
|
|
||||||
color: rgba(0, 0, 0, 0.45);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,27 +1,44 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form :inline="true" class="demo-form-inline">
|
<el-form
|
||||||
|
:inline="true"
|
||||||
|
class="demo-form-inline">
|
||||||
<span class="blue-block"></span>
|
<span class="blue-block"></span>
|
||||||
<el-form-item label="对象选择" required>
|
<el-form-item
|
||||||
<el-cascader
|
label="对象选择"
|
||||||
v-model="objArr"
|
required>
|
||||||
:options="objList"
|
<el-select
|
||||||
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
v-model="queryParams.objId"
|
||||||
popper-class="cascaderParent"
|
placeholder="请选择"
|
||||||
size="small"
|
style="width: 250px"
|
||||||
clearable></el-cascader>
|
filterable
|
||||||
|
size="small">
|
||||||
|
<el-option
|
||||||
|
v-for="item in objList"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
:clearable="false"></el-option>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间维度" required>
|
<el-form-item
|
||||||
<el-select v-model="queryParams.type" placeholder="请选择" style="width: 80px;" size="small">
|
label="时间维度"
|
||||||
|
required>
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.type"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 80px"
|
||||||
|
size="small">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in timeType"
|
v-for="item in timeType"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.id"
|
:value="item.id"
|
||||||
:clearable="false">
|
:clearable="false"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="时间" required>
|
<el-form-item
|
||||||
|
label="时间"
|
||||||
|
required>
|
||||||
<div v-show="queryParams.type === 1 || queryParams.type === 2">
|
<div v-show="queryParams.type === 1 || queryParams.type === 2">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="yearValue"
|
v-model="yearValue"
|
||||||
@ -30,8 +47,7 @@
|
|||||||
@change="selectTime"
|
@change="selectTime"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择年">
|
placeholder="选择年"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="queryParams.type === 3">
|
<div v-show="queryParams.type === 3">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@ -41,24 +57,34 @@
|
|||||||
@change="selectTime"
|
@change="selectTime"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="选择月">
|
placeholder="选择月"></el-date-picker>
|
||||||
</el-date-picker>
|
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="search">查询</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="search">
|
||||||
|
查询
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<span class="separateStyle"></span>
|
<span class="separateStyle"></span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="exportData" plain>导出</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="exportData"
|
||||||
|
plain>
|
||||||
|
导出
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getTree } from '@/api/base/factory'
|
import { getTree } from '@/api/analysis/energyAnalysis';
|
||||||
import moment from 'moment'
|
import moment from 'moment';
|
||||||
export default {
|
export default {
|
||||||
name: 'searchArea',
|
name: 'searchArea',
|
||||||
data() {
|
data() {
|
||||||
@ -67,119 +93,111 @@ export default {
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
type: 1, // 1季度2月3日
|
type: 1, // 1季度2月3日
|
||||||
searchTime: null,
|
searchTime: null,
|
||||||
objId: null
|
objId: null,
|
||||||
|
objType: 1,
|
||||||
},
|
},
|
||||||
timeType: [
|
timeType: [
|
||||||
{ id: 1, name: '季度' },
|
{ id: 1, name: '季度' },
|
||||||
{ id: 2, name: '月' },
|
{ id: 2, name: '月' },
|
||||||
{id: 3, name: '日'}
|
{ id: 3, name: '日' },
|
||||||
],
|
],
|
||||||
yearValue: '',
|
yearValue: '',
|
||||||
yearMonth: '',
|
yearMonth: '',
|
||||||
objArr: [],
|
|
||||||
objList: [],
|
objList: [],
|
||||||
pickerOptions: {
|
pickerOptions: {
|
||||||
disabledDate(date) {
|
disabledDate(date) {
|
||||||
return date.getTime() > Date.now()
|
return date.getTime() > Date.now();
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getObjTree()
|
this.getObjTree();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getObjTree() {
|
getObjTree() {
|
||||||
getTree().then(res => {
|
getTree().then((res) => {
|
||||||
this.objList = res.data || []
|
this.objList = res.data || [];
|
||||||
})
|
if (this.objList.length > 0) {
|
||||||
|
this.queryParams.objId = this.objList[0].id;
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
selectTime() {
|
selectTime() {
|
||||||
if (this.queryParams.type === 3) {
|
if (this.queryParams.type === 3) {
|
||||||
this.queryParams.searchTime = this.yearMonth
|
this.queryParams.searchTime = this.yearMonth;
|
||||||
} else {
|
} else {
|
||||||
this.queryParams.searchTime = this.yearValue
|
this.queryParams.searchTime = this.yearValue;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 查询
|
// 查询
|
||||||
search() {
|
search() {
|
||||||
if (this.objArr.length === 0) {
|
if (!this.queryParams.objId) {
|
||||||
this.$modal.msgError('请选择对象')
|
this.$modal.msgError('请选择对象');
|
||||||
return false
|
return false;
|
||||||
} else {
|
|
||||||
this.queryParams.objId = this.objArr[this.objArr.length-1]
|
|
||||||
}
|
}
|
||||||
if (!this.queryParams.type) {
|
if (!this.queryParams.type) {
|
||||||
this.$modal.msgError('请选择时间维度')
|
this.$modal.msgError('请选择时间维度');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (!this.queryParams.searchTime) {
|
if (!this.queryParams.searchTime) {
|
||||||
this.$modal.msgError('请选择时间')
|
this.$modal.msgError('请选择时间');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.queryParams.type === 3) {
|
if (this.queryParams.type === 3) {
|
||||||
this.queryParams.searchTime = this.transformTime(this.yearMonth) + ''
|
this.queryParams.searchTime = this.transformTime(this.yearMonth) + '';
|
||||||
} else {
|
} else {
|
||||||
this.queryParams.searchTime = this.transformYear(this.yearValue) + ''
|
this.queryParams.searchTime = this.transformYear(this.yearValue) + '';
|
||||||
}
|
}
|
||||||
this.$emit('submit', this.queryParams)
|
this.$emit('submit', this.queryParams);
|
||||||
},
|
},
|
||||||
exportData() {
|
exportData() {
|
||||||
let name
|
let name;
|
||||||
if (this.queryParams.objId) {
|
if (this.queryParams.objId) {
|
||||||
name = this.getObjName(this.objList, this.queryParams.objId)
|
name = this.getObjName(this.objList, this.queryParams.objId);
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgWarning("对象不能为空")
|
this.$modal.msgWarning('对象不能为空');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
this.$emit('exportD', {name: name})
|
this.$emit('exportD', { name: name });
|
||||||
},
|
},
|
||||||
// 递归取对象name
|
// 递归取对象name
|
||||||
getObjName(list, id) {
|
getObjName(list, id) {
|
||||||
let _this = this
|
|
||||||
for (let i = 0; i < list.length; i++) {
|
for (let i = 0; i < list.length; i++) {
|
||||||
let a = list[i]
|
let a = list[i];
|
||||||
if (a.id === id) {
|
if (a.id === id) {
|
||||||
return a.name
|
return a.name;
|
||||||
} else {
|
|
||||||
if (a.children && a.children.length > 0) {
|
|
||||||
let res = _this.getObjName(a.children, id)
|
|
||||||
if (res) {
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
transformTime(timeStamp) {// 本月最后一天
|
transformTime(timeStamp) {
|
||||||
let year = moment(timeStamp).format('YYYY')
|
// 本月最后一天
|
||||||
let month = moment(timeStamp).format('MM')
|
let year = moment(timeStamp).format('YYYY');
|
||||||
let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
|
let month = moment(timeStamp).format('MM');
|
||||||
let value = new Date(newData).getTime()
|
let newData =
|
||||||
return value
|
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59';
|
||||||
|
let value = new Date(newData).getTime();
|
||||||
|
return value;
|
||||||
},
|
},
|
||||||
transformYear(timeStamp) {// 本年最后一天
|
transformYear(timeStamp) {
|
||||||
let year = moment(timeStamp).format('YYYY')
|
// 本年最后一天
|
||||||
let newData = year+'-12-31 23:59:59'
|
let year = moment(timeStamp).format('YYYY');
|
||||||
let value = new Date(newData).getTime()
|
let newData = year + '-12-31 23:59:59';
|
||||||
return value
|
let value = new Date(newData).getTime();
|
||||||
}
|
return value;
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang='scss'>
|
<style lang='scss'>
|
||||||
/* 级联选择器 */
|
|
||||||
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.demo-form-inline {
|
.demo-form-inline {
|
||||||
.el-date-editor .el-range__icon {
|
.el-date-editor .el-range__icon {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
.el-input__prefix .el-icon-date {
|
.el-input__prefix .el-icon-date {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: #0B58FF;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -189,17 +207,21 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
background-color: #0B58FF;
|
background-color: #0b58ff;
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
.el-form-item {
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.separateStyle {
|
.separateStyle {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
background: #E8E8E8;
|
background: #e8e8e8;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,36 +1,50 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form ref="form" :rules="rules" label-width="100px" :model="form">
|
<el-form
|
||||||
<el-form-item label="关联表名" prop="plcId">
|
ref="form"
|
||||||
<el-select v-model="form.plcId" placeholder="请选择" style="width: 100%;" filterable>
|
:rules="rules"
|
||||||
|
label-width="100px"
|
||||||
|
:model="form">
|
||||||
|
<el-form-item
|
||||||
|
label="关联表名"
|
||||||
|
prop="plcId">
|
||||||
|
<el-select
|
||||||
|
v-model="form.plcId"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
filterable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in plcList"
|
v-for="item in plcList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.plcTableName"
|
:label="item.plcTableName"
|
||||||
:value="item.id">
|
:value="item.id"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="对象" prop="bindObjectId">
|
<el-form-item
|
||||||
|
label="对象"
|
||||||
|
prop="bindObjectId">
|
||||||
<el-cascader
|
<el-cascader
|
||||||
style='width: 100%;'
|
style="width: 100%"
|
||||||
v-model="objIds"
|
v-model="objIds"
|
||||||
:options="objList"
|
:options="objList"
|
||||||
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
||||||
popper-class="cascaderParent"
|
|
||||||
@change="selectObj"
|
@change="selectObj"
|
||||||
clearable></el-cascader>
|
clearable></el-cascader>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyPlcConnect, updateEnergyPlcConnect, createEnergyPlcConnect } from '@/api/base/energyPlcConnect'
|
import {
|
||||||
import { getEnergyPlcAll } from '@/api/base/energyPlc'
|
getEnergyPlcConnect,
|
||||||
|
updateEnergyPlcConnect,
|
||||||
|
createEnergyPlcConnect,
|
||||||
|
} from '@/api/base/energyPlcConnect';
|
||||||
|
import { getEnergyPlcAll } from '@/api/base/energyPlc';
|
||||||
export default {
|
export default {
|
||||||
name: 'EnergyPlcConnectAdd',
|
name: 'EnergyPlcConnectAdd',
|
||||||
props: {
|
props: {
|
||||||
objList: {
|
objList: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => []
|
default: () => [],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@ -39,63 +53,70 @@ export default {
|
|||||||
id: '',
|
id: '',
|
||||||
plcId: '',
|
plcId: '',
|
||||||
bindObjectId: '',
|
bindObjectId: '',
|
||||||
bindObjectType: ''
|
bindObjectType: '',
|
||||||
},
|
},
|
||||||
objIds: [], // 回显数组
|
objIds: [], // 回显数组
|
||||||
plcList: [],
|
plcList: [],
|
||||||
isEdit: false, //是否是编辑
|
isEdit: false, //是否是编辑
|
||||||
rules: {
|
rules: {
|
||||||
plcId: [{ required: true, message: '关联表名不能为空', trigger: 'change' }],
|
plcId: [
|
||||||
bindObjectId: [{ required: true, message: '对象不能为空', trigger: 'change' }]
|
{ required: true, message: '关联表名不能为空', trigger: 'change' },
|
||||||
}
|
],
|
||||||
}
|
bindObjectId: [
|
||||||
|
{ required: true, message: '对象不能为空', trigger: 'change' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(id) {
|
init(id) {
|
||||||
getEnergyPlcAll().then((res) => {
|
getEnergyPlcAll().then((res) => {
|
||||||
this.plcList = res.data || []
|
this.plcList = res.data || [];
|
||||||
})
|
});
|
||||||
if (id) {
|
if (id) {
|
||||||
this.isEdit = true
|
this.isEdit = true;
|
||||||
this.form.id = id
|
this.form.id = id;
|
||||||
getEnergyPlcConnect(id).then((res) => {
|
getEnergyPlcConnect(id).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.form = res.data
|
this.form = res.data;
|
||||||
this.objIds = this.changeDetSelect(this.form.bindObjectId, this.objList)
|
this.objIds = this.changeDetSelect(
|
||||||
|
this.form.bindObjectId,
|
||||||
|
this.objList
|
||||||
|
);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
this.isEdit = false
|
this.isEdit = false;
|
||||||
this.form.id = ''
|
this.form.id = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 递归处理分类回显问题
|
// 递归处理分类回显问题
|
||||||
changeDetSelect(key, treeData) {
|
changeDetSelect(key, treeData) {
|
||||||
let arr = [] // 递归时操作的数组
|
let arr = []; // 递归时操作的数组
|
||||||
let returnArr = [] // 存放结果的数组
|
let returnArr = []; // 存放结果的数组
|
||||||
let depth = 0 // 定义全局层级
|
let depth = 0; // 定义全局层级
|
||||||
// 定义递归函数
|
// 定义递归函数
|
||||||
function childrenEach(childrendData, depthN) {
|
function childrenEach(childrendData, depthN) {
|
||||||
for (var j = 0; j < childrendData.length; j++) {
|
for (var j = 0; j < childrendData.length; j++) {
|
||||||
depth = depthN
|
depth = depthN;
|
||||||
arr[depthN] = childrendData[j].id
|
arr[depthN] = childrendData[j].id;
|
||||||
if (childrendData[j].id == key) {
|
if (childrendData[j].id == key) {
|
||||||
returnArr = arr.slice(0, depthN + 1)
|
returnArr = arr.slice(0, depthN + 1);
|
||||||
break
|
break;
|
||||||
} else {
|
} else {
|
||||||
if (childrendData[j].children) {
|
if (childrendData[j].children) {
|
||||||
depth++
|
depth++;
|
||||||
childrenEach(childrendData[j].children, depth)
|
childrenEach(childrendData[j].children, depth);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return returnArr
|
return returnArr;
|
||||||
}
|
}
|
||||||
return childrenEach(treeData, depth)
|
return childrenEach(treeData, depth);
|
||||||
},
|
},
|
||||||
selectObj(val) {
|
selectObj(val) {
|
||||||
this.form.bindObjectId = val[val.length-1]
|
this.form.bindObjectId = val[val.length - 1];
|
||||||
this.form.bindObjectType = val.length-1
|
this.form.bindObjectType = val.length - 1;
|
||||||
},
|
},
|
||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs['form'].validate((valid) => {
|
this.$refs['form'].validate((valid) => {
|
||||||
@ -104,36 +125,31 @@ export default {
|
|||||||
// 编辑
|
// 编辑
|
||||||
updateEnergyPlcConnect({ ...this.form }).then((res) => {
|
updateEnergyPlcConnect({ ...this.form }).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$modal.msgSuccess("操作成功");
|
this.$modal.msgSuccess('操作成功');
|
||||||
this.$emit('successSubmit')
|
this.$emit('successSubmit');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
createEnergyPlcConnect({ ...this.form }).then((res) => {
|
createEnergyPlcConnect({ ...this.form }).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$modal.msgSuccess("操作成功");
|
this.$modal.msgSuccess('操作成功');
|
||||||
this.$emit('successSubmit')
|
this.$emit('successSubmit');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
formClear() {
|
formClear() {
|
||||||
this.form.id = ''
|
this.form.id = '';
|
||||||
this.form.plcId = ''
|
this.form.plcId = '';
|
||||||
this.form.bindObjectId = ''
|
this.form.bindObjectId = '';
|
||||||
this.form.bindObjectType = ''
|
this.form.bindObjectType = '';
|
||||||
this.objIds = []
|
this.objIds = [];
|
||||||
this.isEdit = false
|
this.isEdit = false;
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
|
||||||
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,67 +1,95 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
|
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
<search-bar
|
||||||
|
:formConfigs="formConfig"
|
||||||
|
ref="searchBarForm"
|
||||||
|
@headBtnClick="buttonClick" />
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
|
<base-table
|
||||||
|
:page="queryParams.pageNo"
|
||||||
|
:limit="queryParams.pageSize"
|
||||||
|
:table-props="tableProps"
|
||||||
|
:table-data="list"
|
||||||
:max-height="tableH">
|
:max-height="tableH">
|
||||||
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="160" label="操作" :method-list="tableBtn"
|
<method-btn
|
||||||
|
v-if="tableBtn.length"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="160"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
<pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
|
<pagination
|
||||||
|
:page.sync="queryParams.pageNo"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
:total="total"
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
<!-- 新增 -->
|
<!-- 新增 -->
|
||||||
<base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel"
|
<base-dialog
|
||||||
@confirm="handleConfirm" :before-close="handleCancel" width='30%'>
|
:dialogTitle="addOrEditTitle"
|
||||||
<energy-plc-connect-add ref="energyPlcConnect" :objList="objList" @successSubmit="successSubmit" />
|
:dialogVisible="centervisible"
|
||||||
|
@cancel="handleCancel"
|
||||||
|
@confirm="handleConfirm"
|
||||||
|
:before-close="handleCancel"
|
||||||
|
width="30%">
|
||||||
|
<energy-plc-connect-add
|
||||||
|
ref="energyPlcConnect"
|
||||||
|
:objList="objList"
|
||||||
|
@successSubmit="successSubmit" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
<!-- 参数绑定/查看 -->
|
<!-- 参数绑定/查看 -->
|
||||||
<energy-plc-param v-if="paramVisible" ref="plcParam" @closeDrawer="closeDrawer"
|
<energy-plc-param
|
||||||
|
v-if="paramVisible"
|
||||||
|
ref="plcParam"
|
||||||
|
@closeDrawer="closeDrawer"
|
||||||
:energyTypeList="energyTypeList"></energy-plc-param>
|
:energyTypeList="energyTypeList"></energy-plc-param>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyPlcConnectPage, deleteEnergyPlcConnect } from "@/api/base/energyPlcConnect";
|
import {
|
||||||
|
getEnergyPlcConnectPage,
|
||||||
|
deleteEnergyPlcConnect,
|
||||||
|
} from '@/api/base/energyPlcConnect';
|
||||||
// import { publicFormatter } from '@/utils/dict'
|
// import { publicFormatter } from '@/utils/dict'
|
||||||
import { getTree } from '@/api/base/factory'
|
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';
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'objName',
|
prop: 'objName',
|
||||||
label: '对象'
|
label: '对象',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'objCode',
|
prop: 'objCode',
|
||||||
label: '对象编码',
|
label: '对象编码',
|
||||||
showOverflowtooltip: true
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'plcTableName',
|
prop: 'plcTableName',
|
||||||
label: '关联表名'
|
label: '关联表名',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'plcTableCode',
|
prop: 'plcTableCode',
|
||||||
label: '关联表编码',
|
label: '关联表编码',
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
showOverflowtooltip: true
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'cnName',
|
prop: 'cnName',
|
||||||
label: '标识名',
|
label: '标识名',
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
showOverflowtooltip: true
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'varNum',
|
prop: 'varNum',
|
||||||
label: '绑定参数数量'
|
label: '绑定参数数量',
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
export default {
|
export default {
|
||||||
name: "EnergyPlcConnect",
|
name: 'EnergyPlcConnect',
|
||||||
components: { EnergyPlcConnectAdd, EnergyPlcParam },
|
components: { EnergyPlcConnectAdd, EnergyPlcParam },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -70,49 +98,51 @@ export default {
|
|||||||
type: 'input',
|
type: 'input',
|
||||||
label: '标识名',
|
label: '标识名',
|
||||||
placeholder: '标识名',
|
placeholder: '标识名',
|
||||||
param: 'cnName'
|
param: 'cnName',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary'
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'separate'
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('base:energy-plc-connect:create') ? 'button' : '',
|
type: this.$auth.hasPermi('base:energy-plc-connect:create')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'success',
|
color: 'success',
|
||||||
plain: true
|
plain: true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('base:energy-plc-connect:bind')
|
this.$auth.hasPermi('base:energy-plc-connect:bind')
|
||||||
? {
|
? {
|
||||||
type: 'connect',
|
type: 'connect',
|
||||||
btnName: '绑定'
|
btnName: '绑定',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
{
|
{
|
||||||
type: 'detail',
|
type: 'detail',
|
||||||
btnName: '详情'
|
btnName: '详情',
|
||||||
},
|
},
|
||||||
this.$auth.hasPermi('base:energy-plc-connect:update')
|
this.$auth.hasPermi('base:energy-plc-connect:update')
|
||||||
? {
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑'
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('base:energy-plc-connect:delete')
|
this.$auth.hasPermi('base:energy-plc-connect:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除'
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableH: this.tableHeight(260),
|
tableH: this.tableHeight(260),
|
||||||
// 总条数
|
// 总条数
|
||||||
@ -120,117 +150,121 @@ export default {
|
|||||||
// 班次基础信息列表
|
// 班次基础信息列表
|
||||||
list: [],
|
list: [],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
addOrEditTitle: "",
|
addOrEditTitle: '',
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
centervisible: false,
|
centervisible: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 20,
|
pageSize: 20,
|
||||||
cnName: null
|
cnName: null,
|
||||||
},
|
},
|
||||||
paramVisible: false,
|
paramVisible: false,
|
||||||
energyTypeList: [],
|
energyTypeList: [],
|
||||||
objList: []
|
objList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(260)
|
this.tableH = this.tableHeight(260);
|
||||||
})
|
});
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
// 获取能源列表
|
// 获取能源列表
|
||||||
this.getEnergyTypeList()
|
this.getEnergyTypeList();
|
||||||
// 获取对象树形结构
|
// 获取对象树形结构
|
||||||
this.getObjTree()
|
this.getObjTree();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.queryParams.cnName = val.cnName
|
this.queryParams.cnName = val.cnName;
|
||||||
this.getList()
|
this.getList();
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
this.addOrEditTitle = '新增'
|
this.addOrEditTitle = '新增';
|
||||||
this.centervisible = true
|
this.centervisible = true;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.energyPlcConnect.init()
|
this.$refs.energyPlcConnect.init();
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
getEnergyPlcConnectPage(this.queryParams).then(response => {
|
getEnergyPlcConnectPage(this.queryParams).then((response) => {
|
||||||
let arr = response.data.list || [];
|
let arr = response.data.list || [];
|
||||||
this.list = arr
|
this.list = arr;
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleClick(val) {
|
handleClick(val) {
|
||||||
console.log(val)
|
console.log(val);
|
||||||
switch (val.type) {
|
switch (val.type) {
|
||||||
case 'edit':
|
case 'edit':
|
||||||
this.addOrEditTitle = '编辑'
|
this.addOrEditTitle = '编辑';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.energyPlcConnect.init(val.data.id)
|
this.$refs.energyPlcConnect.init(val.data.id);
|
||||||
})
|
});
|
||||||
this.centervisible = true
|
this.centervisible = true;
|
||||||
break
|
break;
|
||||||
case 'delete':
|
case 'delete':
|
||||||
this.handleDelete(val.data)
|
this.handleDelete(val.data);
|
||||||
break
|
break;
|
||||||
case 'detail':
|
case 'detail':
|
||||||
this.paramVisible = true
|
this.paramVisible = true;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.plcParam.init(val.data, 'detail')
|
this.$refs.plcParam.init(val.data, 'detail');
|
||||||
})
|
});
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
this.paramVisible = true
|
this.paramVisible = true;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.plcParam.init(val.data, 'connect')
|
this.$refs.plcParam.init(val.data, 'connect');
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
this.$refs.energyPlcConnect.formClear()
|
this.$refs.energyPlcConnect.formClear();
|
||||||
this.centervisible = false
|
this.centervisible = false;
|
||||||
this.addOrEditTitle = ''
|
this.addOrEditTitle = '';
|
||||||
},
|
},
|
||||||
handleConfirm() {
|
handleConfirm() {
|
||||||
this.$refs.energyPlcConnect.submitForm()
|
this.$refs.energyPlcConnect.submitForm();
|
||||||
},
|
},
|
||||||
successSubmit() {
|
successSubmit() {
|
||||||
this.handleCancel()
|
this.handleCancel();
|
||||||
this.getList()
|
this.getList();
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
this.$modal.confirm('是否确认删除对象为"' + row.objName + '"的数据项?').then(function () {
|
this.$modal
|
||||||
|
.confirm('是否确认删除对象为"' + row.objName + '"的数据项?')
|
||||||
|
.then(function () {
|
||||||
return deleteEnergyPlcConnect(row.id);
|
return deleteEnergyPlcConnect(row.id);
|
||||||
}).then(() => {
|
})
|
||||||
|
.then(() => {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("删除成功");
|
this.$modal.msgSuccess('删除成功');
|
||||||
}).catch(() => { });
|
})
|
||||||
|
.catch(() => {});
|
||||||
},
|
},
|
||||||
closeDrawer() {
|
closeDrawer() {
|
||||||
this.getList()
|
this.getList();
|
||||||
},
|
},
|
||||||
getEnergyTypeList() {
|
getEnergyTypeList() {
|
||||||
getEnergyTypeListAll().then((res) => {
|
getEnergyTypeListAll().then((res) => {
|
||||||
this.energyTypeList = res.data || []
|
this.energyTypeList = res.data || [];
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
getObjTree() {
|
getObjTree() {
|
||||||
getTree().then(res => {
|
getTree().then((res) => {
|
||||||
this.objList = res.data || []
|
this.objList = res.data || [];
|
||||||
})
|
});
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,79 +1,161 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form ref="form" :rules="rules" label-width="100px" :model="form">
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:rules="rules"
|
||||||
|
label-width="100px"
|
||||||
|
:model="form">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="能源类型" prop="name">
|
<el-form-item
|
||||||
<el-input v-model="form.name"></el-input>
|
label="能源类型"
|
||||||
|
prop="name">
|
||||||
|
<el-select
|
||||||
|
v-model="form.name"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
v-for="item in getDictDatas(DICT_TYPE.ENERGY_TYPE)"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"></el-option>
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="类型编码" prop="code">
|
<el-form-item
|
||||||
<el-input v-model="form.code" disabled></el-input>
|
label="类型编码"
|
||||||
|
prop="code">
|
||||||
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
disabled></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="单位" prop="unit">
|
<el-form-item
|
||||||
<el-select v-model="form.unit" placeholder="请选择" style="width: 100%;">
|
label="单位"
|
||||||
<el-option v-for="item in getDictDatas(DICT_TYPE.ENERGY_UNIT)" :key="item.value" :label="item.label"
|
prop="unit">
|
||||||
:value="item.value">
|
<el-select
|
||||||
</el-option>
|
v-model="form.unit"
|
||||||
|
placeholder="请选择"
|
||||||
|
filterable
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
v-for="item in getDictDatas(DICT_TYPE.UNIT_DICT)"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="计价方式" prop="pricingMethod">
|
<el-form-item
|
||||||
<el-select v-model="form.pricingMethod" placeholder="请选择" style="width: 100%;">
|
label="计价方式"
|
||||||
<el-option label="时间段" :value='0'></el-option>
|
prop="pricingMethod">
|
||||||
<el-option label="使用量" :value='1'></el-option>
|
<el-select
|
||||||
<el-option label="固定价位" :value='2'></el-option>
|
v-model="form.pricingMethod"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
label="时间段"
|
||||||
|
:value="0"></el-option>
|
||||||
|
<el-option
|
||||||
|
label="使用量"
|
||||||
|
:value="1"></el-option>
|
||||||
|
<el-option
|
||||||
|
label="固定价位"
|
||||||
|
:value="2"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12" v-show="form.pricingMethod === 2">
|
<el-col
|
||||||
<el-form-item label="单价(元)" prop="pricingMethod">
|
:span="12"
|
||||||
<el-input-number v-model="form.singlePrice" :precision="2" :min="0" :max="999999999"
|
v-show="form.pricingMethod === 2">
|
||||||
style="width: 100%;"></el-input-number>
|
<el-form-item
|
||||||
|
label="单价(元)"
|
||||||
|
prop="pricingMethod">
|
||||||
|
<el-input-number
|
||||||
|
v-model="form.singlePrice"
|
||||||
|
:precision="2"
|
||||||
|
:min="0"
|
||||||
|
:max="999999999"
|
||||||
|
style="width: 100%"></el-input-number>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" v-show="form.pricingMethod === 1">
|
<el-col
|
||||||
<el-form-item label="计量维度" prop="dim">
|
:span="12"
|
||||||
<el-select v-model="form.dim" placeholder="请选择" style="width: 100%;">
|
v-show="form.pricingMethod === 1">
|
||||||
<el-option label="月" :value='4'></el-option>
|
<el-form-item
|
||||||
<el-option label="年" :value='5'></el-option>
|
label="计量维度"
|
||||||
|
prop="dim">
|
||||||
|
<el-select
|
||||||
|
v-model="form.dim"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
label="月"
|
||||||
|
:value="4"></el-option>
|
||||||
|
<el-option
|
||||||
|
label="年"
|
||||||
|
:value="5"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24" v-show="form.pricingMethod === 0">
|
<el-col
|
||||||
<el-form-item label="时间段" prop="pricingMethod">
|
:span="24"
|
||||||
<base-table :key='timeKye' :table-props="tableProps1" :table-data="tableData1"
|
v-show="form.pricingMethod === 0">
|
||||||
:add-button-show="addButtonShow" @emitButtonClick="emitButtonClick1" @emitFun="inputChange1">
|
<el-form-item
|
||||||
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn"
|
label="时间段"
|
||||||
|
prop="pricingMethod">
|
||||||
|
<base-table
|
||||||
|
:key="timeKye"
|
||||||
|
:table-props="tableProps1"
|
||||||
|
:table-data="tableData1"
|
||||||
|
:add-button-show="addButtonShow"
|
||||||
|
@emitButtonClick="emitButtonClick1"
|
||||||
|
@emitFun="inputChange1">
|
||||||
|
<method-btn
|
||||||
|
v-if="tableBtn.length"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="80"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick1" />
|
@clickBtn="handleClick1" />
|
||||||
</base-table>
|
</base-table>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24" v-show="form.pricingMethod === 1">
|
<el-col
|
||||||
<el-form-item label="使用量" prop="pricingMethod">
|
:span="24"
|
||||||
<base-table :key='usedKye' :table-props="tableProps2" :table-data="tableData2"
|
v-show="form.pricingMethod === 1">
|
||||||
:add-button-show="addButtonShow" @emitButtonClick="emitButtonClick2" @emitFun="inputChange2">
|
<el-form-item
|
||||||
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn"
|
label="使用量"
|
||||||
|
prop="pricingMethod">
|
||||||
|
<base-table
|
||||||
|
:key="usedKye"
|
||||||
|
:table-props="tableProps2"
|
||||||
|
:table-data="tableData2"
|
||||||
|
:add-button-show="addButtonShow"
|
||||||
|
@emitButtonClick="emitButtonClick2"
|
||||||
|
@emitFun="inputChange2">
|
||||||
|
<method-btn
|
||||||
|
v-if="tableBtn.length"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="80"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick2" />
|
@clickBtn="handleClick2" />
|
||||||
</base-table>
|
</base-table>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="24">
|
||||||
<el-form-item label="是否推送" prop="push">
|
<el-form-item
|
||||||
<el-switch v-model="form.push"></el-switch>
|
label="描述"
|
||||||
</el-form-item>
|
prop="description">
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="描述" prop="description">
|
|
||||||
<el-input v-model="form.description"></el-input>
|
<el-input v-model="form.description"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -81,26 +163,31 @@
|
|||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyType, updateEnergyType, createEnergyType, getEnergyTypeCode } from '@/api/base/energyType'
|
import {
|
||||||
import inputArea from './InputArea.vue'
|
getEnergyType,
|
||||||
import timePickerArea from './TimePickerArea.vue'
|
updateEnergyType,
|
||||||
|
createEnergyType,
|
||||||
|
getEnergyTypeCode,
|
||||||
|
} from '@/api/base/energyType';
|
||||||
|
import inputArea from './InputArea.vue';
|
||||||
|
import timePickerArea from './TimePickerArea.vue';
|
||||||
const tableProps1 = [
|
const tableProps1 = [
|
||||||
{
|
{
|
||||||
prop: 'startTime',
|
prop: 'startTime',
|
||||||
label: '开始时间',
|
label: '开始时间',
|
||||||
subcomponent: timePickerArea
|
subcomponent: timePickerArea,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'endTime',
|
prop: 'endTime',
|
||||||
label: '结束时间',
|
label: '结束时间',
|
||||||
subcomponent: timePickerArea
|
subcomponent: timePickerArea,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'price',
|
prop: 'price',
|
||||||
label: '单价(元)',
|
label: '单价(元)',
|
||||||
subcomponent: inputArea
|
subcomponent: inputArea,
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
const tableProps2 = [
|
const tableProps2 = [
|
||||||
{
|
{
|
||||||
prop: 'startUsed',
|
prop: 'startUsed',
|
||||||
@ -110,14 +197,14 @@ const tableProps2 = [
|
|||||||
{
|
{
|
||||||
prop: 'endUsed',
|
prop: 'endUsed',
|
||||||
label: '上限量',
|
label: '上限量',
|
||||||
subcomponent: inputArea
|
subcomponent: inputArea,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'price',
|
prop: 'price',
|
||||||
label: '单价(元)',
|
label: '单价(元)',
|
||||||
subcomponent: inputArea
|
subcomponent: inputArea,
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
export default {
|
export default {
|
||||||
name: 'energyTypeAdd',
|
name: 'energyTypeAdd',
|
||||||
data() {
|
data() {
|
||||||
@ -130,13 +217,16 @@ export default {
|
|||||||
singlePrice: 0,
|
singlePrice: 0,
|
||||||
pricingMethod: 2,
|
pricingMethod: 2,
|
||||||
dim: '',
|
dim: '',
|
||||||
push: false,
|
description: '',
|
||||||
description: ''
|
|
||||||
},
|
},
|
||||||
isEdit: false, //是否是编辑
|
isEdit: false, //是否是编辑
|
||||||
rules: {
|
rules: {
|
||||||
name: [{ required: true, message: '能源类型不能为空', trigger: 'blur' }],
|
name: [
|
||||||
pricingMethod: [{ required: true, message: '计价方式不能为空', trigger: 'change' }]
|
{ required: true, message: '能源类型不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
pricingMethod: [
|
||||||
|
{ required: true, message: '计价方式不能为空', trigger: 'change' },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
timeKye: 0,
|
timeKye: 0,
|
||||||
usedKye: 0,
|
usedKye: 0,
|
||||||
@ -147,92 +237,91 @@ export default {
|
|||||||
tableBtn: [
|
tableBtn: [
|
||||||
{
|
{
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
name: '删除'
|
name: '删除',
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
addButtonShow: '新增'
|
addButtonShow: '新增',
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(id) {
|
init(id) {
|
||||||
if (id) {
|
if (id) {
|
||||||
this.isEdit = true
|
this.isEdit = true;
|
||||||
this.form.id = id
|
this.form.id = id;
|
||||||
getEnergyType(id).then((res) => {
|
getEnergyType(id).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.form.name = res.data.name
|
this.form.name = res.data.name;
|
||||||
this.form.code = res.data.code
|
this.form.code = res.data.code;
|
||||||
this.form.unit = res.data.unit
|
this.form.unit = res.data.unit;
|
||||||
this.form.pricingMethod = res.data.pricingMethod
|
this.form.pricingMethod = res.data.pricingMethod;
|
||||||
this.form.push = res.data.push ? true : false
|
this.form.description = res.data.description;
|
||||||
this.form.description = res.data.description
|
|
||||||
switch (this.form.pricingMethod) {
|
switch (this.form.pricingMethod) {
|
||||||
case 0:
|
case 0:
|
||||||
this.tableData1 = res.data.segPriceList || []
|
this.tableData1 = res.data.segPriceList || [];
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
this.tableData2 = res.data.usedPriceList || []
|
this.tableData2 = res.data.usedPriceList || [];
|
||||||
this.form.dim = res.data.dim
|
this.form.dim = res.data.dim;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.form.singlePrice = res.data.singlePrice || 0
|
this.form.singlePrice = res.data.singlePrice || 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
console.log(this.form)
|
console.log(this.form);
|
||||||
} else {
|
} else {
|
||||||
this.isEdit = false
|
this.isEdit = false;
|
||||||
this.form.id = ''
|
this.form.id = '';
|
||||||
getEnergyTypeCode().then((res) => {
|
getEnergyTypeCode().then((res) => {
|
||||||
this.form.code = res.data
|
this.form.code = res.data;
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 输入框失去焦点
|
// 输入框失去焦点
|
||||||
inputChange1(val) {
|
inputChange1(val) {
|
||||||
this.tableData1[val._pageIndex - 1][val.prop] = val[val.prop]
|
this.tableData1[val._pageIndex - 1][val.prop] = val[val.prop];
|
||||||
if ((this.tableData1.length > val._pageIndex) && val.prop === 'endTime') {
|
if (this.tableData1.length > val._pageIndex && val.prop === 'endTime') {
|
||||||
this.tableData1[val._pageIndex].startTime = val[val.prop]
|
this.tableData1[val._pageIndex].startTime = val[val.prop];
|
||||||
}
|
}
|
||||||
this.timeKye++
|
this.timeKye++;
|
||||||
},
|
},
|
||||||
inputChange2(val) {
|
inputChange2(val) {
|
||||||
// 上限值必须大于下限值
|
// 上限值必须大于下限值
|
||||||
if (!!val.endUsed && (val.endUsed <= val.startUsed)) {
|
if (!!val.endUsed && val.endUsed <= val.startUsed) {
|
||||||
this.$modal.msgError('上限值不能等于或者小于下限值')
|
this.$modal.msgError('上限值不能等于或者小于下限值');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
this.tableData2[val._pageIndex - 1][val.prop] = val[val.prop]
|
this.tableData2[val._pageIndex - 1][val.prop] = val[val.prop];
|
||||||
if ((this.tableData2.length > val._pageIndex) && val.prop === 'endUsed') {
|
if (this.tableData2.length > val._pageIndex && val.prop === 'endUsed') {
|
||||||
this.tableData2[val._pageIndex].startUsed = val[val.prop]
|
this.tableData2[val._pageIndex].startUsed = val[val.prop];
|
||||||
}
|
}
|
||||||
this.usedKye++
|
this.usedKye++;
|
||||||
},
|
},
|
||||||
// 增加
|
// 增加
|
||||||
emitButtonClick1() {
|
emitButtonClick1() {
|
||||||
let n = this.tableData1.length
|
let n = this.tableData1.length;
|
||||||
let obj = {}
|
let obj = {};
|
||||||
obj.startTime = n === 0 ? '' : this.tableData1[n - 1].endTime
|
obj.startTime = n === 0 ? '' : this.tableData1[n - 1].endTime;
|
||||||
obj.endTime = ''
|
obj.endTime = '';
|
||||||
obj.price = 0
|
obj.price = 0;
|
||||||
this.tableData1.push(obj)
|
this.tableData1.push(obj);
|
||||||
},
|
},
|
||||||
emitButtonClick2() {
|
emitButtonClick2() {
|
||||||
let n = this.tableData2.length
|
let n = this.tableData2.length;
|
||||||
let obj = {}
|
let obj = {};
|
||||||
obj.startUsed = n === 0 ? 0 : this.tableData2[n - 1].endUsed
|
obj.startUsed = n === 0 ? 0 : this.tableData2[n - 1].endUsed;
|
||||||
obj.endUsed = 0
|
obj.endUsed = 0;
|
||||||
obj.price = 0
|
obj.price = 0;
|
||||||
this.tableData2.push(obj)
|
this.tableData2.push(obj);
|
||||||
},
|
},
|
||||||
// 删除
|
// 删除
|
||||||
handleClick1(val) {
|
handleClick1(val) {
|
||||||
this.tableData1.splice(val.data._pageIndex - 1, 1)
|
this.tableData1.splice(val.data._pageIndex - 1, 1);
|
||||||
this.timeKye++
|
this.timeKye++;
|
||||||
},
|
},
|
||||||
handleClick2(val) {
|
handleClick2(val) {
|
||||||
this.tableData2.splice(val.data._pageIndex - 1, 1)
|
this.tableData2.splice(val.data._pageIndex - 1, 1);
|
||||||
this.usedKye++
|
this.usedKye++;
|
||||||
},
|
},
|
||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs['form'].validate((valid) => {
|
this.$refs['form'].validate((valid) => {
|
||||||
@ -240,37 +329,37 @@ export default {
|
|||||||
switch (this.form.pricingMethod) {
|
switch (this.form.pricingMethod) {
|
||||||
case 0: // 时间段
|
case 0: // 时间段
|
||||||
if (this.tableData1.length === 0) {
|
if (this.tableData1.length === 0) {
|
||||||
this.$modal.msgError('时间段表格数据不能为空')
|
this.$modal.msgError('时间段表格数据不能为空');
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
this.tableData1.map(item => {
|
this.tableData1.map((item) => {
|
||||||
if (item.price <= 0) {
|
if (item.price <= 0) {
|
||||||
this.$modal.msgError('单价有误请检查,请检查')
|
this.$modal.msgError('单价有误请检查,请检查');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 1: // 使用量
|
case 1: // 使用量
|
||||||
if (this.tableData2.length === 0) {
|
if (this.tableData2.length === 0) {
|
||||||
this.$modal.msgError('使用量表格数据不能为空')
|
this.$modal.msgError('使用量表格数据不能为空');
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
this.tableData1.map(item => {
|
this.tableData1.map((item) => {
|
||||||
if (item.price <= 0) {
|
if (item.price <= 0) {
|
||||||
this.$modal.msgError('单价有误请检查,请检查')
|
this.$modal.msgError('单价有误请检查,请检查');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default: // 固定单价
|
default: // 固定单价
|
||||||
if (!this.form.singlePrice) {
|
if (!this.form.singlePrice) {
|
||||||
this.$modal.msgError('单价有误请检查,请检查')
|
this.$modal.msgError('单价有误请检查,请检查');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(this.form)
|
console.log(this.form);
|
||||||
if (this.isEdit) {
|
if (this.isEdit) {
|
||||||
// 编辑
|
// 编辑
|
||||||
updateEnergyType({
|
updateEnergyType({
|
||||||
@ -281,16 +370,18 @@ export default {
|
|||||||
pricingMethod: this.form.pricingMethod,
|
pricingMethod: this.form.pricingMethod,
|
||||||
description: this.form.description,
|
description: this.form.description,
|
||||||
dim: this.form.pricingMethod === 1 ? this.form.dim : '',
|
dim: this.form.pricingMethod === 1 ? this.form.dim : '',
|
||||||
singlePrice: this.form.pricingMethod === 2 ? this.form.singlePrice : '',
|
singlePrice:
|
||||||
segPriceList: this.form.pricingMethod === 0 ? this.tableData1 : [],
|
this.form.pricingMethod === 2 ? this.form.singlePrice : '',
|
||||||
usedPriceList: this.form.pricingMethod === 1 ? this.tableData2 : [],
|
segPriceList:
|
||||||
push: this.form.push ? 1 : 0
|
this.form.pricingMethod === 0 ? this.tableData1 : [],
|
||||||
|
usedPriceList:
|
||||||
|
this.form.pricingMethod === 1 ? this.tableData2 : [],
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$modal.msgSuccess("操作成功");
|
this.$modal.msgSuccess('操作成功');
|
||||||
this.$emit('successSubmit')
|
this.$emit('successSubmit');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
createEnergyType({
|
createEnergyType({
|
||||||
code: this.form.code,
|
code: this.form.code,
|
||||||
@ -299,31 +390,33 @@ export default {
|
|||||||
pricingMethod: this.form.pricingMethod,
|
pricingMethod: this.form.pricingMethod,
|
||||||
description: this.form.description,
|
description: this.form.description,
|
||||||
dim: this.form.pricingMethod === 1 ? this.form.dim : '',
|
dim: this.form.pricingMethod === 1 ? this.form.dim : '',
|
||||||
singlePrice: this.form.pricingMethod === 2 ? this.form.singlePrice : '',
|
singlePrice:
|
||||||
segPriceList: this.form.pricingMethod === 0 ? this.tableData1 : [],
|
this.form.pricingMethod === 2 ? this.form.singlePrice : '',
|
||||||
usedPriceList: this.form.pricingMethod === 1 ? this.tableData2 : [],
|
segPriceList:
|
||||||
push: this.form.push ? 1 : 0
|
this.form.pricingMethod === 0 ? this.tableData1 : [],
|
||||||
|
usedPriceList:
|
||||||
|
this.form.pricingMethod === 1 ? this.tableData2 : [],
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$modal.msgSuccess("操作成功");
|
this.$modal.msgSuccess('操作成功');
|
||||||
this.$emit('successSubmit')
|
this.$emit('successSubmit');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
formClear() {
|
formClear() {
|
||||||
this.$refs.form.resetFields()
|
this.$refs.form.resetFields();
|
||||||
this.form.singlePrice = 0
|
this.form.singlePrice = 0;
|
||||||
this.isEdit = false
|
this.isEdit = false;
|
||||||
this.timeKye = 0
|
this.timeKye = 0;
|
||||||
this.usedKye = 0
|
this.usedKye = 0;
|
||||||
this.tableData1 = []
|
this.tableData1 = [];
|
||||||
this.tableData2 = []
|
this.tableData2 = [];
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,224 +1,191 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
|
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-bar
|
<search-bar
|
||||||
:formConfigs="formConfig"
|
:formConfigs="formConfig"
|
||||||
ref="searchBarForm"
|
ref="searchBarForm"
|
||||||
@headBtnClick="buttonClick"
|
:removeBlue="true"
|
||||||
/>
|
@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">
|
||||||
>
|
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="80"
|
:width="80"
|
||||||
label="操作"
|
label="操作"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick" />
|
||||||
/>
|
|
||||||
</base-table>
|
</base-table>
|
||||||
<pagination
|
|
||||||
:page.sync="queryParams.pageNo"
|
|
||||||
:limit.sync="queryParams.pageSize"
|
|
||||||
:total="total"
|
|
||||||
@pagination="getList"
|
|
||||||
/>
|
|
||||||
<!-- 新增 -->
|
<!-- 新增 -->
|
||||||
<base-dialog
|
<base-dialog
|
||||||
:dialogTitle="addOrEditTitle"
|
:dialogTitle="addOrEditTitle"
|
||||||
:dialogVisible="centervisible"
|
:dialogVisible="centervisible"
|
||||||
@cancel="handleCancel"
|
@cancel="handleCancel"
|
||||||
@confirm="handleConfirm"
|
@confirm="handleConfirm"
|
||||||
:before-close="handleCancel"
|
:before-close="handleCancel">
|
||||||
>
|
<energy-type-add
|
||||||
<energy-type-add ref="energyType" @successSubmit="successSubmit" />
|
ref="energyType"
|
||||||
|
@successSubmit="successSubmit" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyTypePage, deleteEnergyType } from "@/api/base/energyType";
|
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';
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '类型编码',
|
label: '类型编码',
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
minWidth: 150
|
minWidth: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '能源类型'
|
label: '能源类型',
|
||||||
|
filter: publicFormatter('energy_type'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'unit',
|
prop: 'unit',
|
||||||
label: '单位',
|
label: '单位',
|
||||||
filter: publicFormatter('energy_unit')
|
filter: publicFormatter('unit_dict'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'pricingMethod',
|
prop: 'pricingMethod',
|
||||||
label: '计价方式'
|
label: '计价方式',
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'push',
|
|
||||||
label: '是否推送',
|
|
||||||
filter: publicFormatter('push')
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'price',
|
prop: 'price',
|
||||||
label: '价格(元)',
|
label: '价格(元)',
|
||||||
subcomponent: InnerTable
|
subcomponent: InnerTable,
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
export default {
|
export default {
|
||||||
name: "EnergyType",
|
name: 'EnergyType',
|
||||||
components: { EnergyTypeAdd },
|
components: { EnergyTypeAdd },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '能源类型',
|
|
||||||
placeholder: '能源类型',
|
|
||||||
param: 'name'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '查询',
|
|
||||||
name: 'search',
|
|
||||||
color: 'primary'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: this.$auth.hasPermi('base:energy-type:create') ? 'separate' : '',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('base:energy-type:create') ? 'button' : '',
|
type: this.$auth.hasPermi('base:energy-type:create') ? 'button' : '',
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'success',
|
color: 'success',
|
||||||
plain: true
|
plain: true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('base:energy-type:update')
|
this.$auth.hasPermi('base:energy-type:update')
|
||||||
? {
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑'
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('base:energy-type:delete')
|
this.$auth.hasPermi('base:energy-type:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除'
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableH: this.tableHeight(260),
|
tableH: this.tableHeight(220),
|
||||||
pricingMethodList: [
|
pricingMethodList: [
|
||||||
{ value: 0, label: '分时间段计价' },
|
{ value: 0, label: '分时间段计价' },
|
||||||
{ value: 1, label: '分使用量计价' },
|
{ value: 1, label: '分使用量计价' },
|
||||||
{value: 2,label: '单一计价'}
|
{ value: 2, label: '单一计价' },
|
||||||
],
|
],
|
||||||
// 总条数
|
// 总条数
|
||||||
total: 0,
|
total: 0,
|
||||||
// 班次基础信息列表
|
// 班次基础信息列表
|
||||||
list: [],
|
list: [],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
addOrEditTitle: "",
|
addOrEditTitle: '',
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
centervisible: false,
|
centervisible: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 20,
|
pageSize: 100,
|
||||||
name: null,
|
},
|
||||||
code: null
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(260)
|
this.tableH = this.tableHeight(220);
|
||||||
})
|
});
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick(val) {
|
buttonClick() {
|
||||||
switch (val.btnName) {
|
this.addOrEditTitle = '新增';
|
||||||
case 'search':
|
this.centervisible = true;
|
||||||
this.queryParams.pageNo = 1;
|
|
||||||
this.queryParams.name = val.name
|
|
||||||
this.queryParams.code = val.code
|
|
||||||
this.getList()
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
this.addOrEditTitle = '新增'
|
|
||||||
this.centervisible = true
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.energyType.init()
|
this.$refs.energyType.init();
|
||||||
})
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
getEnergyTypePage(this.queryParams).then(response => {
|
getEnergyTypePage(this.queryParams).then((response) => {
|
||||||
let arr = response.data.list || [];
|
let arr = response.data.list || [];
|
||||||
arr&&arr.map(item => {
|
arr &&
|
||||||
this.pricingMethodList.map(i => {
|
arr.map((item) => {
|
||||||
|
this.pricingMethodList.map((i) => {
|
||||||
if (item.pricingMethod === i.value) {
|
if (item.pricingMethod === i.value) {
|
||||||
item.pricingMethod = i.label
|
item.pricingMethod = i.label;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
this.list = arr
|
this.list = arr;
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleClick(val) {
|
handleClick(val) {
|
||||||
switch (val.type) {
|
switch (val.type) {
|
||||||
case 'edit':
|
case 'edit':
|
||||||
this.addOrEditTitle = '编辑'
|
this.addOrEditTitle = '编辑';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.energyType.init(val.data.id)
|
this.$refs.energyType.init(val.data.id);
|
||||||
})
|
});
|
||||||
this.centervisible = true
|
this.centervisible = true;
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
this.handleDelete(val.data)
|
this.handleDelete(val.data);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
this.$refs.energyType.formClear()
|
this.$refs.energyType.formClear();
|
||||||
this.centervisible = false
|
this.centervisible = false;
|
||||||
this.addOrEditTitle = ''
|
this.addOrEditTitle = '';
|
||||||
},
|
},
|
||||||
handleConfirm() {
|
handleConfirm() {
|
||||||
this.$refs.energyType.submitForm()
|
this.$refs.energyType.submitForm();
|
||||||
},
|
},
|
||||||
successSubmit() {
|
successSubmit() {
|
||||||
this.handleCancel()
|
this.handleCancel();
|
||||||
this.getList()
|
this.getList();
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
this.$modal.confirm('是否确认删除能源类型为"' + row.name + '"的数据项?').then(function() {
|
this.$modal
|
||||||
|
.confirm('是否确认删除能源类型为"' + row.name + '"的数据项?')
|
||||||
|
.then(function () {
|
||||||
return deleteEnergyType(row.id);
|
return deleteEnergyType(row.id);
|
||||||
}).then(() => {
|
})
|
||||||
|
.then(() => {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("删除成功");
|
this.$modal.msgSuccess('删除成功');
|
||||||
}).catch(() => {});
|
})
|
||||||
}
|
.catch(() => {});
|
||||||
}
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,22 +1,35 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form ref="form" :rules="rules" label-width="110px" :model="form">
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:rules="rules"
|
||||||
|
label-width="110px"
|
||||||
|
:model="form">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="抄表方式" prop="method">
|
<el-form-item
|
||||||
<el-select v-model="form.method" placeholder="请选择" style="width: 100%;" @change="changeMethod">
|
label="抄表方式"
|
||||||
|
prop="method">
|
||||||
|
<el-select
|
||||||
|
v-model="form.method"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
@change="changeMethod">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in getDictDatas(DICT_TYPE.METHOD)"
|
v-for="item in getDictDatas(DICT_TYPE.METHOD)"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value">
|
:value="item.value"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" v-if='form.method == 1'>
|
<el-col
|
||||||
<el-form-item label="监控对象" prop="objectId">
|
:span="12"
|
||||||
|
v-if="form.method == 1">
|
||||||
|
<el-form-item
|
||||||
|
label="监控对象"
|
||||||
|
prop="objectId">
|
||||||
<el-cascader
|
<el-cascader
|
||||||
style='width: 100%;'
|
style="width: 100%"
|
||||||
v-model="objIds"
|
v-model="objIds"
|
||||||
:options="objList"
|
:options="objList"
|
||||||
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
:props="{ checkStrictly: true, value: 'id', label: 'name' }"
|
||||||
@ -25,73 +38,123 @@
|
|||||||
clearable></el-cascader>
|
clearable></el-cascader>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" v-if='form.method == 2'>
|
<el-col
|
||||||
<el-form-item label="水/气表名" prop="tableName">
|
:span="12"
|
||||||
<el-select v-model="form.tableName" placeholder="请选择" style="width: 100%;">
|
v-if="form.method == 2">
|
||||||
|
<el-form-item
|
||||||
|
label="能源表名"
|
||||||
|
prop="tableName">
|
||||||
|
<el-select
|
||||||
|
v-model="form.tableName"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in getDictDatas(DICT_TYPE.TABLE_NAME)"
|
v-for="item in getDictDatas(DICT_TYPE.TABLE_NAME)"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value">
|
:value="item.value"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="监控能源类型" prop="energyTypeId">
|
<el-form-item
|
||||||
<el-select v-model="form.energyTypeId" placeholder="请选择" style="width: 100%;" filterable @change="toggleType">
|
label="监控能源类型"
|
||||||
|
prop="energyTypeId">
|
||||||
|
<el-select
|
||||||
|
v-model="form.energyTypeId"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
filterable
|
||||||
|
@change="toggleType">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in this.energyTypeList"
|
v-for="item in this.energyTypeList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.id">
|
:value="item.id"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" v-if='form.method == 1'>
|
<el-col
|
||||||
<el-form-item label="监控模式" prop="type">
|
:span="12"
|
||||||
<el-select v-model="form.type" placeholder="请选择" style="width: 100%;" @change="typeChange">
|
v-if="form.method == 1">
|
||||||
<el-option label="合并" :value= "1" ></el-option>
|
<el-form-item
|
||||||
<el-option label="详细" :value= "2" ></el-option>
|
label="监控模式"
|
||||||
|
prop="type">
|
||||||
|
<el-select
|
||||||
|
v-model="form.type"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
@change="typeChange">
|
||||||
|
<el-option
|
||||||
|
label="合并"
|
||||||
|
:value="1"></el-option>
|
||||||
|
<el-option
|
||||||
|
label="详细"
|
||||||
|
:value="2"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12" v-if='form.method == 1'>
|
<el-col
|
||||||
<el-form-item label="监控详细参数" prop="type" v-if="form.type === 2">
|
:span="12"
|
||||||
<el-select v-model="form.plcParamId" placeholder="请选择" style="width: 100%;" @change="selectDetail">
|
v-if="form.method == 1">
|
||||||
|
<el-form-item
|
||||||
|
label="监控详细参数"
|
||||||
|
prop="type"
|
||||||
|
v-if="form.type === 2">
|
||||||
|
<el-select
|
||||||
|
v-model="form.plcParamId"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
@change="selectDetail">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in detailList"
|
v-for="item in detailList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.id">
|
:value="item.id"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="指标类型" prop="limitType">
|
<el-form-item
|
||||||
<el-select v-model="form.limitType" placeholder="请选择" style="width: 100%;" :disabled='form.method == 2'>
|
label="指标类型"
|
||||||
|
prop="limitType">
|
||||||
|
<el-select
|
||||||
|
v-model="form.limitType"
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
:disabled="form.method == 2">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in getDictDatas(DICT_TYPE.MONITOR_INDEX_TYPE)"
|
v-for="item in getDictDatas(DICT_TYPE.MONITOR_INDEX_TYPE)"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value">
|
:value="item.value"></el-option>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="消耗量阈值">
|
<el-form-item label="消耗量阈值">
|
||||||
<el-input-number v-model="form.minValue" placeholder="最小值" :max="9999999" style="width: 50%;"></el-input-number>
|
<el-input-number
|
||||||
<el-input-number v-model="form.maxValue" placeholder="最大值" :max="9999999" style="width: 50%;"></el-input-number>
|
v-model="form.minValue"
|
||||||
|
placeholder="最小值"
|
||||||
|
:max="9999999"
|
||||||
|
style="width: 50%"></el-input-number>
|
||||||
|
<el-input-number
|
||||||
|
v-model="form.maxValue"
|
||||||
|
placeholder="最大值"
|
||||||
|
:max="9999999"
|
||||||
|
style="width: 50%"></el-input-number>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyLimit, updateEnergyLimit, createEnergyLimit, getEnergyParamList } from '@/api/monitoring/energyLimit'
|
import {
|
||||||
|
getEnergyLimit,
|
||||||
|
updateEnergyLimit,
|
||||||
|
createEnergyLimit,
|
||||||
|
getEnergyParamList,
|
||||||
|
} from '@/api/monitoring/energyLimit';
|
||||||
export default {
|
export default {
|
||||||
name: 'energyLimitAdd',
|
name: 'energyLimitAdd',
|
||||||
props: {
|
props: {
|
||||||
@ -99,13 +162,13 @@ export default {
|
|||||||
type: Array,
|
type: Array,
|
||||||
required: true,
|
required: true,
|
||||||
default: () => {
|
default: () => {
|
||||||
return []
|
return [];
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
objList: {
|
objList: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => []
|
default: () => [],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -119,161 +182,176 @@ export default {
|
|||||||
plcParamId: '',
|
plcParamId: '',
|
||||||
limitType: '',
|
limitType: '',
|
||||||
minValue: 0,
|
minValue: 0,
|
||||||
maxValue: 0
|
maxValue: 0,
|
||||||
},
|
},
|
||||||
objIds: [], // 回显数组
|
objIds: [], // 回显数组
|
||||||
isEdit: false, //是否是编辑
|
isEdit: false, //是否是编辑
|
||||||
rules: {
|
rules: {
|
||||||
method: [{ required: true, message: '抄表方式不能为空', trigger: 'change' }],
|
method: [
|
||||||
objectId: [{ required: true, message: '监控对象不能为空', trigger: 'change' }],
|
{ required: true, message: '抄表方式不能为空', trigger: 'change' },
|
||||||
energyTypeId: [{ required: true, message: '能源类型不能为空', trigger: 'change' }],
|
],
|
||||||
type: [{ required: true, message: '监控模式不能为空', trigger: 'change' }],
|
objectId: [
|
||||||
limitType: [{ required: true, message: '指标类型不能为空', trigger: 'change' }]
|
{ required: true, message: '监控对象不能为空', trigger: 'change' },
|
||||||
|
],
|
||||||
|
energyTypeId: [
|
||||||
|
{ required: true, message: '能源类型不能为空', trigger: 'change' },
|
||||||
|
],
|
||||||
|
type: [
|
||||||
|
{ required: true, message: '监控模式不能为空', trigger: 'change' },
|
||||||
|
],
|
||||||
|
limitType: [
|
||||||
|
{ required: true, message: '指标类型不能为空', trigger: 'change' },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
detailList: []
|
detailList: [],
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(id) {
|
init(id) {
|
||||||
if (id) {
|
if (id) {
|
||||||
this.isEdit = true
|
this.isEdit = true;
|
||||||
this.form.id = id
|
this.form.id = id;
|
||||||
getEnergyLimit(id).then((res) => {
|
getEnergyLimit(id).then((res) => {
|
||||||
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.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.objIds = this.changeDetSelect(this.form.objectId, this.objList)
|
? this.form.limitType + ''
|
||||||
|
: '';
|
||||||
|
this.objIds = this.changeDetSelect(
|
||||||
|
this.form.objectId,
|
||||||
|
this.objList
|
||||||
|
);
|
||||||
if (this.form.type === 2) {
|
if (this.form.type === 2) {
|
||||||
this.getDetailList()
|
this.getDetailList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
this.isEdit = false
|
this.isEdit = false;
|
||||||
this.form.id = ''
|
this.form.id = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 切换方式
|
// 切换方式
|
||||||
changeMethod() {
|
changeMethod() {
|
||||||
if (this.form.method === '2') {
|
if (this.form.method === '2') {
|
||||||
this.form.limitType = "2"
|
this.form.limitType = '2';
|
||||||
} else {
|
} else {
|
||||||
this.form.limitType = ''
|
this.form.limitType = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 监控详细参数
|
// 监控详细参数
|
||||||
getDetailList() {
|
getDetailList() {
|
||||||
getEnergyParamList({
|
getEnergyParamList({
|
||||||
objId: this.form.objectId,
|
objId: this.form.objectId,
|
||||||
energyTypeId: this.form.energyTypeId
|
energyTypeId: this.form.energyTypeId,
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.detailList = res.data
|
this.detailList = res.data;
|
||||||
} else {
|
} else {
|
||||||
this.detailList = []
|
this.detailList = [];
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
typeChange(val) {
|
typeChange(val) {
|
||||||
console.log(this.form)
|
console.log(this.form);
|
||||||
this.form.plcParamId = ''
|
this.form.plcParamId = '';
|
||||||
if (val === 2) {
|
if (val === 2) {
|
||||||
if (this.form.objectId && this.form.energyTypeId) {
|
if (this.form.objectId && this.form.energyTypeId) {
|
||||||
this.getDetailList()
|
this.getDetailList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggleType() {
|
toggleType() {
|
||||||
if (this.form.energyTypeId && this.form.type) {
|
if (this.form.energyTypeId && this.form.type) {
|
||||||
this.getDetailList()
|
this.getDetailList();
|
||||||
this.form.plcParamId = ''
|
this.form.plcParamId = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 递归处理分类回显问题
|
// 递归处理分类回显问题
|
||||||
changeDetSelect(key, treeData) {
|
changeDetSelect(key, treeData) {
|
||||||
let arr = [] // 递归时操作的数组
|
let arr = []; // 递归时操作的数组
|
||||||
let returnArr = [] // 存放结果的数组
|
let returnArr = []; // 存放结果的数组
|
||||||
let depth = 0 // 定义全局层级
|
let depth = 0; // 定义全局层级
|
||||||
// 定义递归函数
|
// 定义递归函数
|
||||||
function childrenEach(childrendData, depthN) {
|
function childrenEach(childrendData, depthN) {
|
||||||
for (var j = 0; j < childrendData.length; j++) {
|
for (var j = 0; j < childrendData.length; j++) {
|
||||||
depth = depthN
|
depth = depthN;
|
||||||
arr[depthN] = childrendData[j].id
|
arr[depthN] = childrendData[j].id;
|
||||||
if (childrendData[j].id == key) {
|
if (childrendData[j].id == key) {
|
||||||
returnArr = arr.slice(0, depthN + 1)
|
returnArr = arr.slice(0, depthN + 1);
|
||||||
break
|
break;
|
||||||
} else {
|
} else {
|
||||||
if (childrendData[j].children) {
|
if (childrendData[j].children) {
|
||||||
depth++
|
depth++;
|
||||||
childrenEach(childrendData[j].children, depth)
|
childrenEach(childrendData[j].children, depth);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return returnArr
|
return returnArr;
|
||||||
}
|
}
|
||||||
return childrenEach(treeData, depth)
|
return childrenEach(treeData, depth);
|
||||||
},
|
},
|
||||||
selectObj(val) {
|
selectObj(val) {
|
||||||
this.form.objectId = val[val.length-1]
|
this.form.objectId = val[val.length - 1];
|
||||||
this.form.objectType = val.length-1
|
this.form.objectType = val.length - 1;
|
||||||
if (this.form.energyTypeId && this.form.type) {
|
if (this.form.energyTypeId && this.form.type) {
|
||||||
this.getDetailList()
|
this.getDetailList();
|
||||||
this.form.plcParamId = ''
|
this.form.plcParamId = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
selectDetail() {
|
selectDetail() {
|
||||||
this.$forceUpdate()
|
this.$forceUpdate();
|
||||||
},
|
},
|
||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs['form'].validate((valid) => {
|
this.$refs['form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
if (this.form.type === 2 && !this.form.plcParamId) {
|
if (this.form.type === 2 && !this.form.plcParamId) {
|
||||||
this.$modal.msgError("监控模式为详细时,详细参数为必填");
|
this.$modal.msgError('监控模式为详细时,详细参数为必填');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (this.form.minValue && this.form.maxValue) {
|
if (this.form.minValue && this.form.maxValue) {
|
||||||
if (this.form.minValue > this.form.maxValue) {
|
if (this.form.minValue > this.form.maxValue) {
|
||||||
this.$modal.msgError("消耗量阈值,最小值不能大于最大值");
|
this.$modal.msgError('消耗量阈值,最小值不能大于最大值');
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.form.minValue = this.form.minValue || 0
|
this.form.minValue = this.form.minValue || 0;
|
||||||
this.form.maxValue = this.form.maxValue || 0
|
this.form.maxValue = this.form.maxValue || 0;
|
||||||
if (this.isEdit) {
|
if (this.isEdit) {
|
||||||
// 编辑
|
// 编辑
|
||||||
updateEnergyLimit({ ...this.form }).then((res) => {
|
updateEnergyLimit({ ...this.form }).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$modal.msgSuccess("操作成功");
|
this.$modal.msgSuccess('操作成功');
|
||||||
this.$emit('successSubmit')
|
this.$emit('successSubmit');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
createEnergyLimit({ ...this.form }).then((res) => {
|
createEnergyLimit({ ...this.form }).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$modal.msgSuccess("操作成功");
|
this.$modal.msgSuccess('操作成功');
|
||||||
this.$emit('successSubmit')
|
this.$emit('successSubmit');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
formClear() {
|
formClear() {
|
||||||
this.$refs.form.resetFields()
|
this.$refs.form.resetFields();
|
||||||
this.form.type = ''
|
this.form.type = '';
|
||||||
this.form.plcParamId = ''
|
this.form.plcParamId = '';
|
||||||
this.form.minValue = null
|
this.form.minValue = null;
|
||||||
this.form.maxValue = null
|
this.form.maxValue = null;
|
||||||
this.objIds = ''
|
this.objIds = '';
|
||||||
this.detailList = []
|
this.detailList = [];
|
||||||
this.isEdit = false
|
this.isEdit = false;
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
|
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
|
||||||
|
@ -1,35 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
|
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-bar
|
<search-bar
|
||||||
:formConfigs="formConfig"
|
:formConfigs="formConfig"
|
||||||
ref="searchBarForm"
|
ref="searchBarForm"
|
||||||
@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">
|
||||||
>
|
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="80"
|
:width="80"
|
||||||
label="操作"
|
label="操作"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick" />
|
||||||
/>
|
|
||||||
</base-table>
|
</base-table>
|
||||||
<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" />
|
||||||
/>
|
|
||||||
<!-- 新增 -->
|
<!-- 新增 -->
|
||||||
<base-dialog
|
<base-dialog
|
||||||
:dialogTitle="addOrEditTitle"
|
:dialogTitle="addOrEditTitle"
|
||||||
@ -37,41 +32,48 @@
|
|||||||
@cancel="handleCancel"
|
@cancel="handleCancel"
|
||||||
@confirm="handleConfirm"
|
@confirm="handleConfirm"
|
||||||
:before-close="handleCancel"
|
:before-close="handleCancel"
|
||||||
width='50%'
|
width="50%">
|
||||||
>
|
<energy-limit-add
|
||||||
<energy-limit-add ref="energyLimit" @successSubmit="successSubmit" :energyTypeList="energyTypeList" :objList="objList"/>
|
ref="energyLimit"
|
||||||
|
@successSubmit="successSubmit"
|
||||||
|
:energyTypeList="energyTypeList"
|
||||||
|
:objList="objList" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getEnergyLimitPage, deleteEnergyLimit } from "@/api/monitoring/energyLimit";
|
import {
|
||||||
import { getEnergyTypeListAll } from "@/api/base/energyType";
|
getEnergyLimitPage,
|
||||||
import { getTree } from '@/api/base/factory'
|
deleteEnergyLimit,
|
||||||
import { publicFormatter } from '@/utils/dict'
|
} from '@/api/monitoring/energyLimit';
|
||||||
import EnergyLimitAdd from './components/energyLimitAdd'
|
import { getEnergyTypeListAll } from '@/api/base/energyType';
|
||||||
|
import { getTree } from '@/api/base/factory';
|
||||||
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
import EnergyLimitAdd from './components/energyLimitAdd';
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'method',
|
prop: 'method',
|
||||||
label: '抄表方式',
|
label: '抄表方式',
|
||||||
filter: publicFormatter('method')
|
filter: publicFormatter('method'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'objName',
|
prop: 'objName',
|
||||||
label: '监控对象'
|
label: '监控对象',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'objCode',
|
prop: 'objCode',
|
||||||
label: '对象编码'
|
label: '对象编码',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'tableName',
|
prop: 'tableName',
|
||||||
label: '水/气表名',
|
label: '能源表名',
|
||||||
filter: publicFormatter('table_name')
|
filter: publicFormatter('table_name'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'energyType',
|
prop: 'energyType',
|
||||||
label: '能源类型'
|
label: '能源类型',
|
||||||
|
filter: publicFormatter('energy_type'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'type',
|
prop: 'type',
|
||||||
@ -80,20 +82,20 @@ const tableProps = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'plcParamName',
|
prop: 'plcParamName',
|
||||||
label: '监控参数'
|
label: '监控参数',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'limitType',
|
prop: 'limitType',
|
||||||
label: '指标类型',
|
label: '指标类型',
|
||||||
filter: publicFormatter('monitor_index_type')
|
filter: publicFormatter('monitor_index_type'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'limitValue',
|
prop: 'limitValue',
|
||||||
label: '阈值'
|
label: '阈值',
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
export default {
|
export default {
|
||||||
name: "EnergyLimit",
|
name: 'EnergyLimit',
|
||||||
components: { EnergyLimitAdd },
|
components: { EnergyLimitAdd },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -102,7 +104,7 @@ export default {
|
|||||||
type: 'select',
|
type: 'select',
|
||||||
label: '能源类型',
|
label: '能源类型',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'energyTypeId'
|
param: 'energyTypeId',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@ -110,39 +112,41 @@ export default {
|
|||||||
selectOptions: this.getDictDatas(this.DICT_TYPE.MONITOR_INDEX_TYPE),
|
selectOptions: this.getDictDatas(this.DICT_TYPE.MONITOR_INDEX_TYPE),
|
||||||
labelField: 'label',
|
labelField: 'label',
|
||||||
valueField: 'value',
|
valueField: 'value',
|
||||||
param: 'limitType'
|
param: 'limitType',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary'
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'separate'
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('monitoring:energy-limit:create') ? 'button' : '',
|
type: this.$auth.hasPermi('monitoring:energy-limit:create')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'success',
|
color: 'success',
|
||||||
plain: true
|
plain: true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('monitoring:energy-limit:update')
|
this.$auth.hasPermi('monitoring:energy-limit:update')
|
||||||
? {
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '编辑'
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('monitoring:energy-limit:delete')
|
this.$auth.hasPermi('monitoring:energy-limit:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除'
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableH: this.tableHeight(260),
|
tableH: this.tableHeight(260),
|
||||||
// 总条数
|
// 总条数
|
||||||
@ -150,7 +154,7 @@ export default {
|
|||||||
// 班次基础信息列表
|
// 班次基础信息列表
|
||||||
list: [],
|
list: [],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
addOrEditTitle: "",
|
addOrEditTitle: '',
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
centervisible: false,
|
centervisible: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
@ -158,112 +162,117 @@ export default {
|
|||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 20,
|
pageSize: 20,
|
||||||
energyTypeId: null,
|
energyTypeId: null,
|
||||||
limitType: null
|
limitType: null,
|
||||||
},
|
},
|
||||||
energyTypeList: [],
|
energyTypeList: [],
|
||||||
typeList: [
|
typeList: [
|
||||||
{ label: '合并', value: '1' },
|
{ label: '合并', value: '1' },
|
||||||
{label: '详细', value: '2'}
|
{ label: '详细', value: '2' },
|
||||||
],
|
],
|
||||||
objList: []
|
objList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(260)
|
this.tableH = this.tableHeight(260);
|
||||||
})
|
});
|
||||||
this.getList();
|
this.getList();
|
||||||
this.getTypeList()
|
this.getTypeList();
|
||||||
// 获取对象树形结构
|
// 获取对象树形结构
|
||||||
this.getObjTree()
|
this.getObjTree();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getTypeList() {
|
getTypeList() {
|
||||||
getEnergyTypeListAll().then((res) => {
|
getEnergyTypeListAll().then((res) => {
|
||||||
this.formConfig[0].selectOptions = res.data || []
|
this.formConfig[0].selectOptions = res.data || [];
|
||||||
this.energyTypeList = res.data || []
|
this.energyTypeList = res.data || [];
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.queryParams.energyTypeId = val.energyTypeId
|
this.queryParams.energyTypeId = val.energyTypeId;
|
||||||
this.queryParams.limitType = val.limitType
|
this.queryParams.limitType = val.limitType;
|
||||||
this.getList()
|
this.getList();
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
this.addOrEditTitle = '新增'
|
this.addOrEditTitle = '新增';
|
||||||
this.centervisible = true
|
this.centervisible = true;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.energyLimit.init()
|
this.$refs.energyLimit.init();
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
getEnergyLimitPage(this.queryParams).then(response => {
|
getEnergyLimitPage(this.queryParams).then((response) => {
|
||||||
let arr = response.data.list || [];
|
let arr = response.data.list || [];
|
||||||
arr&&arr.map(item => {
|
arr &&
|
||||||
this.typeList.map(i => {
|
arr.map((item) => {
|
||||||
|
this.typeList.map((i) => {
|
||||||
if (item.type === i.value) {
|
if (item.type === i.value) {
|
||||||
item.type = i.label
|
item.type = i.label;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
if (item.minValue && item.maxValue) {
|
if (item.minValue && item.maxValue) {
|
||||||
item.limitValue = item.minValue + '-' + item.maxValue
|
item.limitValue = item.minValue + '-' + item.maxValue;
|
||||||
} else if (item.minValue) {
|
} else if (item.minValue) {
|
||||||
item.limitValue = '最小值' + item.minValue
|
item.limitValue = '最小值' + item.minValue;
|
||||||
} else if (item.maxValue) {
|
} else if (item.maxValue) {
|
||||||
item.limitValue = '最大值' + item.maxValue
|
item.limitValue = '最大值' + item.maxValue;
|
||||||
} else {
|
} else {
|
||||||
item.limitValue = ''
|
item.limitValue = '';
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
this.list = arr
|
this.list = arr;
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleClick(val) {
|
handleClick(val) {
|
||||||
switch (val.type) {
|
switch (val.type) {
|
||||||
case 'edit':
|
case 'edit':
|
||||||
this.addOrEditTitle = '编辑'
|
this.addOrEditTitle = '编辑';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.energyLimit.init(val.data.id)
|
this.$refs.energyLimit.init(val.data.id);
|
||||||
})
|
});
|
||||||
this.centervisible = true
|
this.centervisible = true;
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
this.handleDelete(val.data)
|
this.handleDelete(val.data);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
this.$refs.energyLimit.formClear()
|
this.$refs.energyLimit.formClear();
|
||||||
this.centervisible = false
|
this.centervisible = false;
|
||||||
this.addOrEditTitle = ''
|
this.addOrEditTitle = '';
|
||||||
},
|
},
|
||||||
handleConfirm() {
|
handleConfirm() {
|
||||||
this.$refs.energyLimit.submitForm()
|
this.$refs.energyLimit.submitForm();
|
||||||
},
|
},
|
||||||
successSubmit() {
|
successSubmit() {
|
||||||
this.handleCancel()
|
this.handleCancel();
|
||||||
this.getList()
|
this.getList();
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
this.$modal.confirm('是否确认删除监控对象为"' + row.objName + '"的数据项?').then(function() {
|
this.$modal
|
||||||
|
.confirm('是否确认删除监控对象为"' + row.objName + '"的数据项?')
|
||||||
|
.then(function () {
|
||||||
return deleteEnergyLimit(row.id);
|
return deleteEnergyLimit(row.id);
|
||||||
}).then(() => {
|
})
|
||||||
|
.then(() => {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("删除成功");
|
this.$modal.msgSuccess('删除成功');
|
||||||
}).catch(() => {});
|
})
|
||||||
|
.catch(() => {});
|
||||||
},
|
},
|
||||||
getObjTree() {
|
getObjTree() {
|
||||||
getTree().then(res => {
|
getTree().then((res) => {
|
||||||
this.objList = res.data || []
|
this.objList = res.data || [];
|
||||||
})
|
});
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,76 +1,77 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container" id='energyReportBox'>
|
<div
|
||||||
|
class="app-container"
|
||||||
|
id="energyReportBox">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<search-bar
|
<search-bar
|
||||||
:formConfigs="formConfig"
|
:formConfigs="formConfig"
|
||||||
ref="searchBarForm"
|
ref="searchBarForm"
|
||||||
:isFold="isFold"
|
:isFold="isFold"
|
||||||
@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" />
|
||||||
/>
|
|
||||||
<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 { energyReportPageAuto, energyReportPageExportAuto } from "@/api/monitoring/energyReport"
|
import {
|
||||||
import { getEnergyTypeListAll } from "@/api/base/energyType";
|
energyReportPageAuto,
|
||||||
import { publicFormatter } from '@/utils/dict'
|
energyReportPageExportAuto,
|
||||||
import { parseTime } from '@/utils/ruoyi'
|
} from '@/api/monitoring/energyReport';
|
||||||
|
import { getEnergyTypeListAll } from '@/api/base/energyType';
|
||||||
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
import { parseTime } from '@/utils/ruoyi';
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'statisticType',
|
prop: 'statisticType',
|
||||||
label: '统计类型',
|
label: '统计类型',
|
||||||
filter: publicFormatter('statistic_type')
|
filter: publicFormatter('statistic_type'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'startTime',
|
prop: 'startTime',
|
||||||
label: '开始时间',
|
label: '开始时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
minWidth: 160
|
minWidth: 160,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'endTime',
|
prop: 'endTime',
|
||||||
label: '结束时间',
|
label: '结束时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
minWidth: 160
|
minWidth: 160,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'statisticName',
|
prop: 'statisticName',
|
||||||
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: '消耗量',
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
export default {
|
export default {
|
||||||
name: "EnergyLimit",
|
name: 'EnergyLimit',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isFold: false,
|
isFold: false,
|
||||||
@ -80,7 +81,7 @@ export default {
|
|||||||
label: '能源类型',
|
label: '能源类型',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'energyTypeId',
|
param: 'energyTypeId',
|
||||||
filterable: true
|
filterable: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@ -88,37 +89,39 @@ export default {
|
|||||||
selectOptions: this.getDictDatas(this.DICT_TYPE.STATISTIC_TYPE),
|
selectOptions: this.getDictDatas(this.DICT_TYPE.STATISTIC_TYPE),
|
||||||
labelField: 'label',
|
labelField: 'label',
|
||||||
valueField: 'value',
|
valueField: 'value',
|
||||||
param: 'statisticType'
|
param: 'statisticType',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间',
|
label: '时间',
|
||||||
dateType: 'datetimerange',
|
dateType: 'datetimerange',
|
||||||
format: 'yyyy-MM-dd HH:mm:ss',
|
format: 'yyyy-MM-dd HH:mm:ss',
|
||||||
valueFormat: "timestamp",
|
valueFormat: 'timestamp',
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
param: 'timeVal',
|
param: 'timeVal',
|
||||||
defaultSelect: [],
|
defaultSelect: [],
|
||||||
width: 350
|
width: 350,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary'
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'separate'
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('monitoring:energy-report:export') ? 'button' : '',
|
type: this.$auth.hasPermi('monitoring:energy-report:export')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
btnName: '导出',
|
btnName: '导出',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
plain: true
|
plain: true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
tableProps,
|
tableProps,
|
||||||
tableH: this.tableHeight(260),
|
tableH: this.tableHeight(260),
|
||||||
@ -133,53 +136,61 @@ export default {
|
|||||||
energyTypeId: null,
|
energyTypeId: null,
|
||||||
statisticType: null,
|
statisticType: null,
|
||||||
startTime: null,
|
startTime: null,
|
||||||
endTime: null
|
endTime: null,
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
window.addEventListener('resize', () => {
|
window.addEventListener('resize', this._eventListeners);
|
||||||
this.tableH = this.tableHeight(260)
|
this.getList();
|
||||||
this.isFold = this.searchBarWidth('energyReportBox', 1198)
|
this.getTypeList();
|
||||||
})
|
|
||||||
this.getList()
|
|
||||||
this.getTypeList()
|
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.isFold = this.searchBarWidth('energyReportBox', 1198)
|
this.isFold = this.searchBarWidth('energyReportBox', 1198);
|
||||||
|
},
|
||||||
|
destroyed() {
|
||||||
|
window.removeEventListener('resize', this._eventListeners);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
_eventListeners() {
|
||||||
|
this.tableH = this.tableHeight(260);
|
||||||
|
this.isFold = this.searchBarWidth('energyReportBox', 1198);
|
||||||
|
},
|
||||||
getTypeList() {
|
getTypeList() {
|
||||||
getEnergyTypeListAll().then((res) => {
|
getEnergyTypeListAll().then((res) => {
|
||||||
this.formConfig[0].selectOptions = res.data || []
|
this.formConfig[0].selectOptions = res.data || [];
|
||||||
// this.energyTypeList = res.data || []
|
// this.energyTypeList = res.data || []
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.queryParams.pageNo = 1
|
this.queryParams.pageNo = 1;
|
||||||
this.queryParams.energyTypeId = val.energyTypeId
|
this.queryParams.energyTypeId = val.energyTypeId;
|
||||||
this.queryParams.statisticType = val.statisticType
|
this.queryParams.statisticType = val.statisticType;
|
||||||
this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null
|
this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null;
|
||||||
this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null
|
this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null;
|
||||||
this.getList()
|
this.getList();
|
||||||
break
|
break;
|
||||||
default:
|
default:
|
||||||
this.$modal.confirm('是否确认导出').then(() => {
|
this.$modal
|
||||||
|
.confirm('是否确认导出')
|
||||||
|
.then(() => {
|
||||||
return energyReportPageExportAuto({ ...this.queryParams });
|
return energyReportPageExportAuto({ ...this.queryParams });
|
||||||
}).then(response => {
|
})
|
||||||
|
.then((response) => {
|
||||||
this.$download.excel(response, '能源统计报表.xls');
|
this.$download.excel(response, '能源统计报表.xls');
|
||||||
}).catch(() => {})
|
})
|
||||||
|
.catch(() => {});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
energyReportPageAuto(this.queryParams).then(response => {
|
energyReportPageAuto(this.queryParams).then((response) => {
|
||||||
this.list = response.data.list || [];
|
this.list = response.data.list || [];
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -33,6 +34,7 @@ import {
|
|||||||
getEqAnalysis,
|
getEqAnalysis,
|
||||||
exportEqAnalysisExcel,
|
exportEqAnalysisExcel,
|
||||||
} from '@/api/equipment/analysis/statistics';
|
} from '@/api/equipment/analysis/statistics';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
// {
|
// {
|
||||||
@ -52,35 +54,49 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'lineName',
|
prop: 'lineName',
|
||||||
label: '产线',
|
label: '产线',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'sectionName',
|
prop: 'sectionName',
|
||||||
label: '工段',
|
label: '工段',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentName',
|
prop: 'equipmentName',
|
||||||
label: '设备名称',
|
label: '设备名称',
|
||||||
|
minWidth: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentType',
|
prop: 'equipmentType',
|
||||||
label: '设备类型',
|
label: '设备类型',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'workTime',
|
prop: 'workTime',
|
||||||
label: '工作时间累积(h)',
|
label: '工作时间累积(h)',
|
||||||
|
width: 160,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'repairCount',
|
prop: 'repairCount',
|
||||||
label: '维修次数',
|
label: '维修次数',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintainCount',
|
prop: 'maintainCount',
|
||||||
label: '保养次数',
|
label: '保养次数',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
|
|
||||||
@ -110,7 +126,7 @@ export default {
|
|||||||
tableBtn: [].filter((v) => v),
|
tableBtn: [].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
total: 1,
|
total: 1,
|
||||||
recordTime: [
|
recordTime: [
|
||||||
|
@ -75,6 +75,12 @@ export default {
|
|||||||
},
|
},
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'item',
|
trigger: 'item',
|
||||||
|
formatter: (v) => {
|
||||||
|
const num = String(v.value)?.split('.').length === 2 ? v.value?.toFixed(2) : v.value
|
||||||
|
return `<div>
|
||||||
|
<span>${v.name}: ${num}</span>
|
||||||
|
</div>`
|
||||||
|
}
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
show: false,
|
show: false,
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
max-height="600"
|
:max-height="tableH"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun">
|
||||||
<!-- <method-btn
|
<!-- <method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
@ -42,14 +42,16 @@
|
|||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ExceptionAnalysis',
|
name: 'ExceptionAnalysis',
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
components: {},
|
components: {},
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
heightNum: 220,
|
||||||
searchBarKeys: ['name', 'code'],
|
searchBarKeys: ['name', 'code'],
|
||||||
// tableBtn: [
|
// tableBtn: [
|
||||||
// this.$auth.hasPermi('base:equipment-group:update')
|
// this.$auth.hasPermi('base:equipment-group:update')
|
||||||
|
@ -48,9 +48,11 @@
|
|||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import LineChart from './components/lineChart.vue';
|
import LineChart from './components/lineChart.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'QualityAnalysis',
|
name: 'QualityAnalysis',
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
components: { LineChart },
|
components: { LineChart },
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
@ -58,7 +60,6 @@ export default {
|
|||||||
const [y, m, d] = [now.getFullYear(), now.getMonth(), now.getDate()];
|
const [y, m, d] = [now.getFullYear(), now.getMonth(), now.getDate()];
|
||||||
return {
|
return {
|
||||||
dialogVisible: false,
|
dialogVisible: false,
|
||||||
tableH: this.tableHeight(260),
|
|
||||||
urls: {
|
urls: {
|
||||||
page: '/analysis/equipment-analysis/quality',
|
page: '/analysis/equipment-analysis/quality',
|
||||||
},
|
},
|
||||||
@ -254,9 +255,9 @@ export default {
|
|||||||
this.fillProductOptions();
|
this.fillProductOptions();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
window.addEventListener('resize', () => {
|
// window.addEventListener('resize', () => {
|
||||||
this.tableH = this.tableHeight(260)
|
// this.tableH = this.tableHeight(260)
|
||||||
})
|
// })
|
||||||
this.$refs['search-bar'].headBtnClick('search');
|
this.$refs['search-bar'].headBtnClick('search');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -61,6 +62,8 @@ import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
|||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import AddOrUpdate from './AddOrUpdate.vue';
|
import AddOrUpdate from './AddOrUpdate.vue';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
const btn = {
|
const btn = {
|
||||||
@ -89,7 +92,7 @@ const btn = {
|
|||||||
export default {
|
export default {
|
||||||
name: 'Record',
|
name: 'Record',
|
||||||
components: { AddOrUpdate },
|
components: { AddOrUpdate },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
readOnly: false,
|
readOnly: false,
|
||||||
@ -116,17 +119,17 @@ export default {
|
|||||||
// : undefined,
|
// : undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'productionLine', label: '产线' },
|
{ prop: 'productionLine', label: '产线', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'workshopSection', label: '工段' },
|
{ prop: 'workshopSection', label: '工段', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'equipment', label: '设备名称' },
|
{ prop: 'equipment', label: '设备名称', width: 120, showOverflowtooltip: true },
|
||||||
{
|
{
|
||||||
prop: 'alarmGrade',
|
prop: 'alarmGrade',
|
||||||
label: '报警级别',
|
label: '报警级别',
|
||||||
filter: publicFormatter(this.DICT_TYPE.EQU_ALARM_LEVEL),
|
filter: publicFormatter(this.DICT_TYPE.EQU_ALARM_LEVEL),
|
||||||
},
|
},
|
||||||
{ prop: 'createTime', label: '报警时间', filter: timeFilter },
|
{ prop: 'createTime', label: '报警时间', filter: timeFilter, width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'alarmCode', label: '设备报警码' },
|
{ prop: 'alarmCode', label: '设备报警码', width: 180, showOverflowtooltip: true },
|
||||||
{ prop: 'alarmContent', label: '报警内容' },
|
{ prop: 'alarmContent', label: '报警内容', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'opt1', label: '处理记录', name: '查看', subcomponent: btn },
|
{ prop: 'opt1', label: '处理记录', name: '查看', subcomponent: btn },
|
||||||
{ prop: 'opt2', label: '处理', name: '报警处理', subcomponent: btn },
|
{ prop: 'opt2', label: '处理', name: '报警处理', subcomponent: btn },
|
||||||
// { prop: 'remark', label: '备注' },
|
// { prop: 'remark', label: '备注' },
|
||||||
@ -203,7 +206,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
lineId: null,
|
lineId: null,
|
||||||
equipmentId: null,
|
equipmentId: null,
|
||||||
recordTime: [],
|
recordTime: [],
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -70,7 +71,7 @@
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
equipmentGroupId: alarmForm.id,
|
equipmentGroupId: alarmForm.id,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
},
|
},
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:alarm-group:update')
|
this.$auth.hasPermi('equipment:alarm-group:update')
|
||||||
@ -109,10 +110,11 @@ import { publicFormatter } from '@/utils/dict';
|
|||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
// import { getAccessToken } from '@/utils/auth';
|
// import { getAccessToken } from '@/utils/auth';
|
||||||
import BasicDrawer from './components/BasicDrawer.vue';
|
import BasicDrawer from './components/BasicDrawer.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentGroup',
|
name: 'EquipmentGroup',
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
components: { BasicDrawer },
|
components: { BasicDrawer },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -72,7 +73,7 @@
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
equipmentGroupId: alarmForm.id,
|
equipmentGroupId: alarmForm.id,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
},
|
},
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('base:equipment-group:update')
|
this.$auth.hasPermi('base:equipment-group:update')
|
||||||
@ -112,11 +113,12 @@ import moment from 'moment';
|
|||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import BasicDrawer from './components/BasicDrawer.vue';
|
import BasicDrawer from './components/BasicDrawer.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentBindGroup',
|
name: 'EquipmentBindGroup',
|
||||||
components: { BasicDrawer },
|
components: { BasicDrawer },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['groupId', 'equipmentName'],
|
searchBarKeys: ['groupId', 'equipmentName'],
|
||||||
@ -254,7 +256,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
equipmentName: null,
|
equipmentName: null,
|
||||||
groupId: null,
|
groupId: null,
|
||||||
},
|
},
|
||||||
|
@ -19,7 +19,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -127,10 +128,11 @@ import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
|||||||
import BasicDrawer from './components/BasicDrawer.vue';
|
import BasicDrawer from './components/BasicDrawer.vue';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentPlcConnect',
|
name: 'EquipmentPlcConnect',
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
components: { BasicDrawer, AddOrUpdate },
|
components: { BasicDrawer, AddOrUpdate },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -156,14 +158,14 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'productionLine', label: '产线' },
|
{ prop: 'productionLine', label: '产线', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'workshopSection', label: '工段' },
|
{ prop: 'workshopSection', label: '工段', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'equipmentName', label: '设备名' },
|
{ prop: 'equipmentName', label: '设备名', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'equipmentCode', label: '设备编码' },
|
{ prop: 'equipmentCode', label: '设备编码', width: 200, showOverflowtooltip: true },
|
||||||
{ prop: 'plcCode', label: '关联表编码' },
|
{ prop: 'plcCode', label: '关联表编码', width: 220, showOverflowtooltip: true },
|
||||||
{ prop: 'plcTableName', label: '关联表名' },
|
{ prop: 'plcTableName', label: '关联表名', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'plcName', label: '标识名称' },
|
{ prop: 'plcName', label: '标识名称', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'bindingParameters', label: '绑定参数数量' },
|
{ prop: 'bindingParameters', label: '绑定参数数量', width: 120, showOverflowtooltip: true },
|
||||||
// {
|
// {
|
||||||
// _action: 'params-bind',
|
// _action: 'params-bind',
|
||||||
// label: '查看绑定',
|
// label: '查看绑定',
|
||||||
@ -269,7 +271,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
plcId: null,
|
plcId: null,
|
||||||
equipmentId: null,
|
equipmentId: null,
|
||||||
},
|
},
|
||||||
|
@ -20,7 +20,8 @@
|
|||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
ref="pageTable"
|
ref="pageTable"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -60,6 +61,7 @@ import {
|
|||||||
exportEquipmentPlcExcel,
|
exportEquipmentPlcExcel,
|
||||||
} from '@/api/base/equipmentPlc';
|
} from '@/api/base/equipmentPlc';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const switchBtn = {
|
const switchBtn = {
|
||||||
name: 'SwitchBtn',
|
name: 'SwitchBtn',
|
||||||
@ -99,7 +101,7 @@ const switchBtn = {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentPlc',
|
name: 'EquipmentPlc',
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
components: {},
|
components: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -127,16 +129,16 @@ export default {
|
|||||||
// width: 180,
|
// width: 180,
|
||||||
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
// },
|
// },
|
||||||
{ prop: 'code', label: '编码' },
|
{ prop: 'code', label: '编码', width: 180, showOverflowtooltip: true },
|
||||||
{ prop: 'plcTableName', label: '关联表名' },
|
{ prop: 'plcTableName', label: '关联表名', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'name', label: '标识名称' },
|
{ prop: 'name', label: '标识名称', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'enName', label: '英文名称' },
|
{ prop: 'enName', label: '英文名称', width: 150, showOverflowtooltip: true },
|
||||||
{
|
{
|
||||||
prop: 'collection',
|
prop: 'collection',
|
||||||
label: '是否采集',
|
label: '是否采集',
|
||||||
subcomponent: switchBtn,
|
subcomponent: switchBtn,
|
||||||
},
|
},
|
||||||
{ prop: 'description', label: '描述' },
|
{ prop: 'description', label: '描述', minWidth: 150, showOverflowtooltip: true },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
@ -240,7 +242,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
plcTableName: null,
|
plcTableName: null,
|
||||||
name: null,
|
name: null,
|
||||||
},
|
},
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
background: '#f2f4f9',
|
background: '#f2f4f9',
|
||||||
color: '#606266',
|
color: '#606266',
|
||||||
}"
|
}"
|
||||||
|
:max-height="tableH"
|
||||||
class="waiting-list-table">
|
class="waiting-list-table">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
type="selection"
|
type="selection"
|
||||||
@ -37,8 +38,9 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[0]"
|
v-if="selectedBox[0]"
|
||||||
label="巡检单名称"
|
label="巡检单名称"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
prop="name"></el-table-column>
|
prop="name"></el-table-column>
|
||||||
<el-table-column v-if="selectedBox[1]" label="部门" prop="planName">
|
<el-table-column v-if="selectedBox[1]" label="部门" :show-overflow-tooltip="true" prop="planName">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.department || '---' }}
|
{{ scope.row.department || '---' }}
|
||||||
</template>
|
</template>
|
||||||
@ -46,6 +48,7 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[2]"
|
v-if="selectedBox[2]"
|
||||||
label="巡检时间"
|
label="巡检时间"
|
||||||
|
width="150"
|
||||||
prop="actualCheckTime">
|
prop="actualCheckTime">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.actualCheckTime | timeFilter }}
|
{{ scope.row.actualCheckTime | timeFilter }}
|
||||||
@ -54,6 +57,8 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[3]"
|
v-if="selectedBox[3]"
|
||||||
label="班次"
|
label="班次"
|
||||||
|
width="180"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
prop="groupClass">
|
prop="groupClass">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.groupClass || '---' }}
|
{{ scope.row.groupClass || '---' }}
|
||||||
@ -62,6 +67,7 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[4]"
|
v-if="selectedBox[4]"
|
||||||
label="确认截止时间"
|
label="确认截止时间"
|
||||||
|
width="150"
|
||||||
prop="confirmDueTime">
|
prop="confirmDueTime">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.confirmDueTime | timeFilter }}
|
{{ scope.row.confirmDueTime | timeFilter }}
|
||||||
@ -70,6 +76,7 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[5]"
|
v-if="selectedBox[5]"
|
||||||
width="150"
|
width="150"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
label="备注"
|
label="备注"
|
||||||
prop="remark">
|
prop="remark">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@ -172,6 +179,7 @@ export default {
|
|||||||
true
|
true
|
||||||
],
|
],
|
||||||
selectedPlan: [],
|
selectedPlan: [],
|
||||||
|
tableH: this.tableHeight(260)
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -182,6 +190,16 @@ export default {
|
|||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
this.tableH = this.tableHeight(260)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
destroyed() {
|
||||||
|
window.removeEventListener('resize', () => {
|
||||||
|
this.tableH = this.tableHeight(260)
|
||||||
|
});
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
checkSelectable(row, index) {
|
checkSelectable(row, index) {
|
||||||
return true;
|
return true;
|
||||||
|
@ -139,7 +139,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
maintainPlanId: null,
|
maintainPlanId: null,
|
||||||
startTime: null,
|
startTime: null,
|
||||||
special: false,
|
special: false,
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -65,6 +66,7 @@ import addRecord from './addRecord.vue';
|
|||||||
import AddContent from './addContent.vue';
|
import AddContent from './addContent.vue';
|
||||||
import { exportCheckOrderExcel, deleteEqCheckLog } from '@/api/equipment/base/inspection/record'
|
import { exportCheckOrderExcel, deleteEqCheckLog } from '@/api/equipment/base/inspection/record'
|
||||||
import { parseTime } from '../../../../core/mixins/code-filter';
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
@ -91,7 +93,7 @@ const btn = {
|
|||||||
export default {
|
export default {
|
||||||
name: 'EquipmentInspectionRecord',
|
name: 'EquipmentInspectionRecord',
|
||||||
components: { addRecord, AddContent },
|
components: { addRecord, AddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
@ -250,7 +252,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
special: false,
|
special: false,
|
||||||
name: null,
|
name: null,
|
||||||
actualCheckTime: null,
|
actualCheckTime: null,
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -53,13 +54,14 @@ import addOrUpdata from './add-or-updata.vue';
|
|||||||
import add from './add.vue';
|
import add from './add.vue';
|
||||||
import { parseTime } from '../../../../core/mixins/code-filter';
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
import { groupClassesListAll } from '@/api/monitoring/teamProduction';
|
import { groupClassesListAll } from '@/api/monitoring/teamProduction';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
// import { publicFormatter } from '@/utils/dict';
|
// import { publicFormatter } from '@/utils/dict';
|
||||||
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentCheckSetting',
|
name: 'EquipmentCheckSetting',
|
||||||
components: { addOrUpdata, add },
|
components: { addOrUpdata, add },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
@ -102,7 +104,7 @@ export default {
|
|||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '巡检单编码',
|
label: '巡检单编码',
|
||||||
minWidth: 150,
|
minWidth: 170,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{ prop: 'department', label: '部门', showOverflowtooltip: true },
|
{ prop: 'department', label: '部门', showOverflowtooltip: true },
|
||||||
@ -225,7 +227,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
equipmentId: null,
|
equipmentId: null,
|
||||||
name: null,
|
name: null,
|
||||||
special: false,
|
special: false,
|
||||||
|
@ -7,12 +7,13 @@
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
:visible="visible"
|
:visible.sync="visible"
|
||||||
:show-close="false"
|
:show-close="false"
|
||||||
:wrapper-closable="false"
|
:wrapper-closable="true"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
custom-class="mes-drawer"
|
custom-class="mes-drawer"
|
||||||
size="60%"
|
size="60%"
|
||||||
|
:before-close="beforeClose"
|
||||||
@closed="$emit('destroy')">
|
@closed="$emit('destroy')">
|
||||||
<SmallTitle slot="title">编辑</SmallTitle>
|
<SmallTitle slot="title">编辑</SmallTitle>
|
||||||
|
|
||||||
@ -344,6 +345,7 @@ export default {
|
|||||||
label: '设备名称',
|
label: '设备名称',
|
||||||
prop: 'equipmentId',
|
prop: 'equipmentId',
|
||||||
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=false',
|
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=false',
|
||||||
|
bind: { clearable: true, filterable: true },
|
||||||
// method: 'post',
|
// method: 'post',
|
||||||
// queryParams: {
|
// queryParams: {
|
||||||
// pageNo: 1,
|
// pageNo: 1,
|
||||||
@ -443,6 +445,15 @@ export default {
|
|||||||
this.getList('line');
|
this.getList('line');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
beforeClose(done) {
|
||||||
|
// if (!this.isdetail) {
|
||||||
|
this.$confirm('确认关闭?')
|
||||||
|
.then(_ => {
|
||||||
|
done();
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
// }
|
||||||
|
},
|
||||||
handleSearchBarBtnClick(btn) {
|
handleSearchBarBtnClick(btn) {
|
||||||
switch (btn.btnName) {
|
switch (btn.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
background: '#f2f4f9',
|
background: '#f2f4f9',
|
||||||
color: '#606266',
|
color: '#606266',
|
||||||
}"
|
}"
|
||||||
|
:max-height="tableH"
|
||||||
class="waiting-list-table">
|
class="waiting-list-table">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
type="selection"
|
type="selection"
|
||||||
@ -36,8 +37,9 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[0]"
|
v-if="selectedBox[0]"
|
||||||
width="128"
|
width="160"
|
||||||
label="设备保养单号"
|
label="设备保养单号"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
prop="maintainOrderNumber"></el-table-column>
|
prop="maintainOrderNumber"></el-table-column>
|
||||||
<el-table-column v-if="selectedBox[1]" width="128" label="保养计划名称" prop="planName">
|
<el-table-column v-if="selectedBox[1]" width="128" label="保养计划名称" prop="planName">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@ -224,6 +226,7 @@ export default {
|
|||||||
true,
|
true,
|
||||||
],
|
],
|
||||||
selectedPlan: [],
|
selectedPlan: [],
|
||||||
|
tableH: this.tableHeight(260),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -234,6 +237,16 @@ export default {
|
|||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
this.tableH = this.tableHeight(260)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
destroyed() {
|
||||||
|
window.removeEventListener('resize', () => {
|
||||||
|
this.tableH = this.tableHeight(260)
|
||||||
|
});
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
checkSelectable(row, index) {
|
checkSelectable(row, index) {
|
||||||
return (
|
return (
|
||||||
|
@ -335,6 +335,7 @@ export default {
|
|||||||
label: '设备名称',
|
label: '设备名称',
|
||||||
prop: 'equipmentId',
|
prop: 'equipmentId',
|
||||||
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=false',
|
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=false',
|
||||||
|
bind: { clearable: true, filterable: true },
|
||||||
// method: 'post',
|
// method: 'post',
|
||||||
// queryParams: {
|
// queryParams: {
|
||||||
// pageNo: 1,
|
// pageNo: 1,
|
||||||
|
@ -197,7 +197,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
maintainPlanId: null,
|
maintainPlanId: null,
|
||||||
startTime: null,
|
startTime: null,
|
||||||
special: false,
|
special: false,
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<!-- <method-btn
|
<!-- <method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -59,6 +60,7 @@ import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
|||||||
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record'
|
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record'
|
||||||
import { parseTime } from '@/utils/ruoyi'
|
import { parseTime } from '@/utils/ruoyi'
|
||||||
import AddContent from '../PlanConfig/addContent.vue';
|
import AddContent from '../PlanConfig/addContent.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const remainBox = {
|
const remainBox = {
|
||||||
name: 'RemainBox',
|
name: 'RemainBox',
|
||||||
@ -116,7 +118,7 @@ const btn = {
|
|||||||
export default {
|
export default {
|
||||||
name: 'Monitor',
|
name: 'Monitor',
|
||||||
components: { AddContent },
|
components: { AddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addContent: false,
|
addContent: false,
|
||||||
@ -129,7 +131,7 @@ export default {
|
|||||||
// width: 180,
|
// width: 180,
|
||||||
// filter: parseTime(createTime),
|
// filter: parseTime(createTime),
|
||||||
// },
|
// },
|
||||||
{ prop: 'code', label: '保养计划单号', minWidth: 118, showOverflowtooltip: true },
|
{ prop: 'code', label: '保养计划单号', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'name', label: '保养计划名称', minWidth: 118, showOverflowtooltip: true },
|
{ prop: 'name', label: '保养计划名称', minWidth: 118, showOverflowtooltip: true },
|
||||||
{ prop: 'departmentName', label: '部门', minWidth: 100, showOverflowtooltip: true },
|
{ prop: 'departmentName', label: '部门', minWidth: 100, showOverflowtooltip: true },
|
||||||
{ prop: 'lineName', label: '产线名', minWidth: 100, showOverflowtooltip: true },
|
{ prop: 'lineName', label: '产线名', minWidth: 100, showOverflowtooltip: true },
|
||||||
@ -205,7 +207,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
special: false,
|
special: false,
|
||||||
equipmentName: null,
|
equipmentName: null,
|
||||||
createTime: null,
|
createTime: null,
|
||||||
|
@ -9,11 +9,12 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="tableData">
|
:table-data="tableData"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="150"
|
:width="120"
|
||||||
label="操作"
|
label="操作"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
@ -53,6 +54,7 @@ import { parseTime, toDay } from '../../../../core/mixins/code-filter';
|
|||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import { getPlanPage } from '@/api/equipment/base/maintain/planconfig';
|
import { getPlanPage } from '@/api/equipment/base/maintain/planconfig';
|
||||||
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record';
|
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
// {
|
// {
|
||||||
@ -62,46 +64,64 @@ const tableProps = [
|
|||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '保养计划名称'
|
label: '保养计划名称',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'departmentName',
|
prop: 'departmentName',
|
||||||
label: '部门'
|
label: '部门',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'lineName',
|
prop: 'lineName',
|
||||||
label: '产线名'
|
label: '产线名',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintenancePeriod',
|
prop: 'maintenancePeriod',
|
||||||
label: '保养频率(天/次)'
|
label: '保养频率(天/次)',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'firstMaintenanceTime',
|
prop: 'firstMaintenanceTime',
|
||||||
label: '首次保养时间',
|
label: '首次保养时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintainDuration',
|
prop: 'maintainDuration',
|
||||||
label: '保养时长'
|
label: '保养时长',
|
||||||
|
width: 120,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintainer',
|
prop: 'maintainer',
|
||||||
label: '计划保养人员'
|
label: '计划保养人员',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'confirmTimeLimit',
|
prop: 'confirmTimeLimit',
|
||||||
label: '确认时限',
|
label: '确认时限',
|
||||||
filter: toDay
|
filter: toDay,
|
||||||
|
width: 130,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
|
width: 150,
|
||||||
|
showOverflowtooltip: true
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
@ -111,7 +131,7 @@ export default {
|
|||||||
tableProps,
|
tableProps,
|
||||||
addContent: false,
|
addContent: false,
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
total: 0,
|
total: 0,
|
||||||
special: false,
|
special: false,
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -65,6 +66,7 @@ import Editor from '@/components/Editor';
|
|||||||
import { deleteEqMaintainLog, exportMaintainLogExcel } from '@/api/equipment/base/maintain/record';
|
import { deleteEqMaintainLog, exportMaintainLogExcel } from '@/api/equipment/base/maintain/record';
|
||||||
import AddContent from './addContent.vue';
|
import AddContent from './addContent.vue';
|
||||||
import { parseTime } from '../../../../core/mixins/code-filter';
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
@ -91,7 +93,7 @@ const btn = {
|
|||||||
export default {
|
export default {
|
||||||
name: 'EquipmentMaintainRecord',
|
name: 'EquipmentMaintainRecord',
|
||||||
components: { AddContent },
|
components: { AddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addContent: false,
|
addContent: false,
|
||||||
@ -337,7 +339,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
special: false,
|
special: false,
|
||||||
maintainPlanId: null,
|
maintainPlanId: null,
|
||||||
maintainPlanId: null,
|
maintainPlanId: null,
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -58,12 +59,13 @@ import { deleteRepair, exportRepairLogExcel } from '@/api/equipment/base/repair'
|
|||||||
import { parseTime } from '@/utils/ruoyi'
|
import { parseTime } from '@/utils/ruoyi'
|
||||||
import htmls from './htmls.vue'
|
import htmls from './htmls.vue'
|
||||||
import DialogForm from './Repair--add.vue';
|
import DialogForm from './Repair--add.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentRepair',
|
name: 'EquipmentRepair',
|
||||||
components: { CustomDialogForm, DialogForm },
|
components: { CustomDialogForm, DialogForm },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
@ -102,11 +104,11 @@ export default {
|
|||||||
// width: 180,
|
// width: 180,
|
||||||
// filter: parseTime,
|
// filter: parseTime,
|
||||||
// },
|
// },
|
||||||
{ prop: 'repairOrderNumber', label: '维修单号' },
|
{ prop: 'repairOrderNumber', label: '维修单号', width: 180, showOverflowtooltip: true },
|
||||||
{ prop: 'lineName', label: '产线名' },
|
{ prop: 'lineName', label: '产线名', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'sectionName', label: '工段名' },
|
{ prop: 'sectionName', label: '工段名', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'equipmentName', label: '设备名称', minWidth: 100, showOverflowtooltip: true },
|
{ prop: 'equipmentName', label: '设备名称', minWidth: 100, showOverflowtooltip: true },
|
||||||
{ prop: 'faultDetail', label: '故障明细', subcomponent: htmls },
|
{ prop: 'faultDetail', label: '故障明细', subcomponent: htmls, width: 180, showOverflowtooltip: true },
|
||||||
// { prop: 'maintenanceDetail', label: '维修明细', subcomponent: htmls, minWidth: 100, showOverflowtooltip: true },
|
// { prop: 'maintenanceDetail', label: '维修明细', subcomponent: htmls, minWidth: 100, showOverflowtooltip: true },
|
||||||
{
|
{
|
||||||
prop: 'maintenanceStartTime',
|
prop: 'maintenanceStartTime',
|
||||||
@ -193,7 +195,7 @@ export default {
|
|||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
special: false,
|
special: false,
|
||||||
maintenanceResult: null,
|
maintenanceResult: null,
|
||||||
createTime: null,
|
createTime: null,
|
||||||
|
@ -88,7 +88,8 @@
|
|||||||
:page="1"
|
:page="1"
|
||||||
:limit="999"
|
:limit="999"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH">
|
||||||
<!-- <method-btn
|
<!-- <method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
@ -119,9 +120,11 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Graph from './graph.vue';
|
import Graph from './graph.vue';
|
||||||
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentProcessAmount',
|
name: 'EquipmentProcessAmount',
|
||||||
|
mixins: [tableHeightMixin],
|
||||||
components: { Graph },
|
components: { Graph },
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
|
Loading…
Reference in New Issue
Block a user