You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
386 lines
14 KiB
Vue
386 lines
14 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item label="阈值状态" prop="thresholdStatus">
|
|
<el-select
|
|
v-model="queryParams.thresholdStatus"
|
|
placeholder="阈值状态"
|
|
clearable
|
|
style="width: 240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in dict.type.monitor_status"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-hasPermi="['energy:dnbThreshold:add']"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="single"
|
|
@click="handleUpdate"
|
|
v-hasPermi="['energy:dnbThreshold:edit']"
|
|
>修改</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
v-hasPermi="['energy:dnbThreshold:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<!-- <el-col :span="1.5">-->
|
|
<!-- <el-button-->
|
|
<!-- type="warning"-->
|
|
<!-- plain-->
|
|
<!-- icon="el-icon-download"-->
|
|
<!-- size="mini"-->
|
|
<!-- @click="handleExport"-->
|
|
<!-- v-hasPermi="['energy:dnbThreshold:export']"-->
|
|
<!-- >导出</el-button>-->
|
|
<!-- </el-col>-->
|
|
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="dnbThresholdList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="自增标识" align="center" prop="objid" v-if="false"/>
|
|
<el-table-column label="计量设备编号" align="center" prop="monitorId" min-width="110"/>
|
|
<el-table-column label="计量设备名称" align="center" prop="monitorName" min-width="110"/>
|
|
<el-table-column label="A相电流最大值" align="center" prop="iAMax" min-width="110"/>
|
|
<el-table-column label="A相电流最小值" align="center" prop="iAMin" min-width="110"/>
|
|
<el-table-column label="B相电流最大值" align="center" prop="iBMax" min-width="110"/>
|
|
<el-table-column label="B相电流最小值" align="center" prop="iBMin" min-width="110"/>
|
|
<el-table-column label="C相电流最大值" align="center" prop="iCMax" min-width="110"/>
|
|
<el-table-column label="C相电流最小值" align="center" prop="iCMin" min-width="110"/>
|
|
<el-table-column label="A相电压最大值" align="center" prop="vAMax" min-width="110"/>
|
|
<el-table-column label="A相电压最小值" align="center" prop="vAMin" min-width="110"/>
|
|
<el-table-column label="B相电压最大值" align="center" prop="vBMax" min-width="110"/>
|
|
<el-table-column label="B相电压最小值" align="center" prop="vBMin" min-width="110"/>
|
|
<el-table-column label="C相电压最大值" align="center" prop="vCMax" min-width="110"/>
|
|
<el-table-column label="C相电压最小值" align="center" prop="vCMin" min-width="110"/>
|
|
<el-table-column label="小时耗量" align="center" prop="hourConsumption" />
|
|
<el-table-column label="日耗量" align="center" prop="dayConsumption" />
|
|
<el-table-column label="线损率(%)" align="center" prop="lineLossRate" min-width="110"/>
|
|
<el-table-column label="阈值状态" align="center" prop="thresholdStatus" min-width="110">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.monitor_status" :value="scope.row.thresholdStatus"/>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" min-width="110">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['energy:dnbThreshold:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['energy:dnbThreshold:remove']"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改电阈值信息对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
<el-form-item label="计量设备名称" prop="monitorId">
|
|
<treeselect v-model="form.monitorId" :options="monitorOptions" :show-count="true" placeholder="请选择计量设备" />
|
|
</el-form-item>
|
|
<el-form-item label="A相电流最大值" prop="iAMax">
|
|
<el-input-number v-model="form.iAMax" placeholder="请输入A相电流最大值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="A相电流最小值" prop="iAMin">
|
|
<el-input-number v-model="form.iAMin" placeholder="请输入A相电流最小值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="B相电流最大值" prop="iBMax">
|
|
<el-input-number v-model="form.iBMax" placeholder="请输入B相电流最大值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="B相电流最小值" prop="iBMin">
|
|
<el-input-number v-model="form.iBMin" placeholder="请输入B相电流最小值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="C相电流最大值" prop="iCMax">
|
|
<el-input-number v-model="form.iCMax" placeholder="请输入C相电流最大值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="C相电流最小值" prop="iCMin">
|
|
<el-input-number v-model="form.iCMin" placeholder="请输入C相电流最小值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="A相电压最大值" prop="vAMax">
|
|
<el-input-number v-model="form.vAMax" placeholder="请输入A相电压最大值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="A相电压最小值" prop="vAMin">
|
|
<el-input-number v-model="form.vAMin" placeholder="请输入A相电压最小值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="B相电压最大值" prop="vBMax">
|
|
<el-input-number v-model="form.vBMax" placeholder="请输入B相电压最大值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="B相电压最小值" prop="vBMin">
|
|
<el-input-number v-model="form.vBMin" placeholder="请输入B相电压最小值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="C相电压最大值" prop="vCMax">
|
|
<el-input-number v-model="form.vCMax" placeholder="请输入C相电压最大值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="C相电压最小值" prop="vCMin">
|
|
<el-input-number v-model="form.vCMin" placeholder="请输入C相电压最小值" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="小时耗量" prop="hourConsumption">
|
|
<el-input v-model="form.hourConsumption" placeholder="请输入小时耗量" />
|
|
</el-form-item>
|
|
<el-form-item label="日耗量" prop="dayConsumption">
|
|
<el-input v-model="form.dayConsumption" placeholder="请输入日耗量" />
|
|
</el-form-item>
|
|
<el-form-item label="线损率(%)" prop="lineLossRate">
|
|
<el-input-number v-model="form.lineLossRate" placeholder="请输入线损率(%)" :precision="2"/>
|
|
</el-form-item>
|
|
<el-form-item label="阈值状态" prop="thresholdStatus">
|
|
<el-radio-group v-model="form.thresholdStatus">
|
|
<el-radio
|
|
v-for="dict in dict.type.monitor_status"
|
|
:key="dict.value"
|
|
:label="dict.value*1"
|
|
>{{dict.label}}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listdnbThreshold, getdnbThreshold, deldnbThreshold, adddnbThreshold, updatednbThreshold } from "@/api/ems/base/dnbThreshold";
|
|
import { monitorTreeSelect } from "@/api/ems/base/loss";
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
export default {
|
|
name: "dnbThreshold",
|
|
dicts: ['monitor_status'],
|
|
components: { Treeselect },
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 电阈值信息表格数据
|
|
dnbThresholdList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
monitorId: null,
|
|
iAMax: null,
|
|
iAMin: null,
|
|
iBMax: null,
|
|
iBMin: null,
|
|
iCMax: null,
|
|
iCMin: null,
|
|
vAMax: null,
|
|
vAMin: null,
|
|
vBMax: null,
|
|
vBMin: null,
|
|
vCMax: null,
|
|
vCMin: null,
|
|
hourConsumption: null,
|
|
dayConsumption: null,
|
|
lineLossRate: null,
|
|
dnbThresholdStatus: null,
|
|
deptId: null,
|
|
userId: null,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
},
|
|
////////////
|
|
// 计量设备选项
|
|
monitorOptions: undefined,
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
this.getDeptTree();
|
|
},
|
|
methods: {
|
|
/** 查询电阈值信息列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listdnbThreshold(this.queryParams).then(response => {
|
|
this.dnbThresholdList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
objid: null,
|
|
monitorId: null,
|
|
iAMax: null,
|
|
iAMin: null,
|
|
iBMax: null,
|
|
iBMin: null,
|
|
iCMax: null,
|
|
iCMin: null,
|
|
vAMax: null,
|
|
vAMin: null,
|
|
vBMax: null,
|
|
vBMin: null,
|
|
vCMax: null,
|
|
vCMin: null,
|
|
hourConsumption: null,
|
|
dayConsumption: null,
|
|
lineLossRate: null,
|
|
thresholdStatus: null,
|
|
deptId: null,
|
|
userId: null,
|
|
createBy: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateTime: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.objid)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加电阈值信息";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const objid = row.objid || this.ids
|
|
getdnbThreshold(objid).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改电阈值信息";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.objid != null) {
|
|
updatednbThreshold(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
adddnbThreshold(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const objids = row.objid || this.ids;
|
|
this.$modal.confirm('是否确认删除电阈值信息编号为"' + objids + '"的数据项?').then(function() {
|
|
return deldnbThreshold(objids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('ems/dnbThreshold/export', {
|
|
...this.queryParams
|
|
}, `dnbThreshold_${new Date().getTime()}.xlsx`)
|
|
},
|
|
/** 计量信息下拉树结构 */
|
|
getDeptTree() {
|
|
let arr = {
|
|
monitorType: 2
|
|
}
|
|
monitorTreeSelect(arr).then(response => {
|
|
this.monitorOptions = response.data;
|
|
});
|
|
},
|
|
}
|
|
};
|
|
</script>
|