|
|
|
|
@ -21,7 +21,7 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="计量设备状态" prop="monitorStatus">
|
|
|
|
|
<el-select v-model="queryParams.monitorStatus" placeholder="请选择计量设备状态" clearable>
|
|
|
|
|
<el-option v-for="dict in dict.type.monitor_status" :key="dict.value" :label="dict.label"
|
|
|
|
|
<el-option v-for="dict in monitor_status" :key="dict.value" :label="dict.label"
|
|
|
|
|
:value="dict.value" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="是否虚拟" prop="isAmmeter">
|
|
|
|
|
<el-select v-model="queryParams.isAmmeter" placeholder="请选择是否虚拟" clearable>
|
|
|
|
|
<el-option v-for="dict in dict.type.is_ammeter" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
|
<el-option v-for="dict in is_ammeter" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
@ -69,7 +69,7 @@
|
|
|
|
|
<el-table-column label="计量设备位置" align="center" prop="monitorAddr" v-if="columns[5].visible" />
|
|
|
|
|
<el-table-column label="计量设备状态" align="center" prop="monitorStatus" v-if="columns[6].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="dict.type.monitor_status" :value="scope.row.monitorStatus" />
|
|
|
|
|
<dict-tag :options="monitor_status" :value="scope.row.monitorStatus" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="采集设备编号" align="center" prop="collectDeviceId" v-if="columns[7].visible" />
|
|
|
|
|
@ -78,7 +78,7 @@
|
|
|
|
|
<el-table-column label="修正值" align="center" prop="correctValue" v-if="columns[11].visible" />
|
|
|
|
|
<el-table-column label="是否虚拟" align="center" prop="isAmmeter" v-if="columns[14].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="dict.type.is_ammeter" :value="scope.row.isAmmeter" />
|
|
|
|
|
<dict-tag :options="is_ammeter" :value="scope.row.isAmmeter" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="通断复位" align="center" prop="isKeyMonitor" v-if="columns[15].visible" />
|
|
|
|
|
@ -133,7 +133,7 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="计量设备状态" prop="monitorStatus">
|
|
|
|
|
<el-radio-group v-model="form.monitorStatus">
|
|
|
|
|
<el-radio v-for="dict in dict.type.monitor_status" :key="dict.value"
|
|
|
|
|
<el-radio v-for="dict in monitor_status" :key="dict.value"
|
|
|
|
|
:label="parseInt(dict.value)">{{ dict.label }}</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
@ -151,7 +151,7 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="是否虚拟" prop="isAmmeter">
|
|
|
|
|
<el-radio-group v-model="form.isAmmeter">
|
|
|
|
|
<el-radio v-for="dict in dict.type.is_ammeter" :key="dict.value"
|
|
|
|
|
<el-radio v-for="dict in is_ammeter" :key="dict.value"
|
|
|
|
|
:label="dict.value">{{ dict.label }}</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
@ -168,262 +168,299 @@
|
|
|
|
|
<el-input v-model="form.monitorHierarchy" placeholder="请输入表具层级" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div #footer class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<div class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
<script setup lang="ts" name="BaseMonitorInfoIOTDevice">
|
|
|
|
|
import { ref, reactive, getCurrentInstance, ComponentInternalInstance, toRefs, onMounted } from 'vue';
|
|
|
|
|
import type { FormInstance } from 'element-plus';
|
|
|
|
|
import { listBaseMonitorInfo, getBaseMonitorInfo, delBaseMonitorInfo, addBaseMonitorInfo, updateBaseMonitorInfo } from "@/api/ems/base/baseMonitorInfo";
|
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
import Treeselect from 'vue3-treeselect';
|
|
|
|
|
import { getBaseEnergyTypeList } from '@/api/ems/base/baseEnergyType'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "BaseMonitorInfo",
|
|
|
|
|
dicts: ['is_ammeter', 'monitor_status', 'monitor_type'],
|
|
|
|
|
components: {
|
|
|
|
|
Treeselect
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 计量设备信息表格数据
|
|
|
|
|
baseMonitorInfoList: [],
|
|
|
|
|
// 计量设备信息树选项
|
|
|
|
|
baseMonitorInfoOptions: [],
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
title: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 是否展开,默认全部展开
|
|
|
|
|
isExpandAll: true,
|
|
|
|
|
// 重新渲染表格状态
|
|
|
|
|
refreshTable: true,
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
parentId: null,
|
|
|
|
|
monitorCode: null,
|
|
|
|
|
monitorName: null,
|
|
|
|
|
energyType: null,
|
|
|
|
|
monitorAddr: null,
|
|
|
|
|
monitorType: null,
|
|
|
|
|
monitorStatus: null,
|
|
|
|
|
collectDeviceId: null,
|
|
|
|
|
ancestors: null,
|
|
|
|
|
grade: null,
|
|
|
|
|
meterTypeId: null,
|
|
|
|
|
correctValue: null,
|
|
|
|
|
pt: null,
|
|
|
|
|
ct: null,
|
|
|
|
|
isAmmeter: null,
|
|
|
|
|
isKeyMonitor: null,
|
|
|
|
|
isCircuit: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
publicShareType: null,
|
|
|
|
|
monitorHierarchy: null
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
objId: [
|
|
|
|
|
{ required: true, message: "自增标识不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
monitorCode: [
|
|
|
|
|
{ required: true, message: "计量设备编号不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
energyTypeId: [
|
|
|
|
|
{ required: true, message: '能源类型不能为空', trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
columns: [
|
|
|
|
|
{ key: 0, label: `自增标识`, visible: false },
|
|
|
|
|
{ key: 1, label: `父级编号`, visible: false },
|
|
|
|
|
{ key: 2, label: `计量设备编号`, visible: true },
|
|
|
|
|
{ key: 3, label: `计量设备名称`, visible: true },
|
|
|
|
|
{ key: 3, label: `能源类型`, visible: true },
|
|
|
|
|
{ key: 4, label: `计量设备位置`, visible: true },
|
|
|
|
|
{ key: 5, label: `计量设备类型`, visible: true },
|
|
|
|
|
{ key: 6, label: `计量设备状态`, visible: true },
|
|
|
|
|
{ key: 7, label: `采集设备编号`, visible: true },
|
|
|
|
|
{ key: 8, label: `祖级列表`, visible: true },
|
|
|
|
|
{ key: 9, label: `等级`, visible: false },
|
|
|
|
|
{ key: 10, label: `传感器仪表`, visible: false },
|
|
|
|
|
{ key: 11, label: `修正值`, visible: false },
|
|
|
|
|
{ key: 12, label: `PT值`, visible: true },
|
|
|
|
|
{ key: 13, label: `CT值`, visible: true },
|
|
|
|
|
{ key: 14, label: `是否虚拟`, visible: true },
|
|
|
|
|
{ key: 15, label: `通断复位`, visible: false },
|
|
|
|
|
{ key: 16, label: `是否断路`, visible: false },
|
|
|
|
|
{ key: 17, label: `创建人`, visible: false },
|
|
|
|
|
{ key: 18, label: `创建时间`, visible: false },
|
|
|
|
|
{ key: 19, label: `更新人`, visible: false },
|
|
|
|
|
{ key: 20, label: `更新时间`, visible: false },
|
|
|
|
|
{ key: 21, label: `公摊表类型`, visible: false },
|
|
|
|
|
{ key: 22, label: `表具层级`, visible: false },
|
|
|
|
|
],
|
|
|
|
|
//能源类型选项
|
|
|
|
|
energyTypeList: []
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
getBaseEnergyTypeList({}).then(response => {
|
|
|
|
|
this.energyTypeList = response.data
|
|
|
|
|
})
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
/** 查询计量设备信息列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listBaseMonitorInfo(this.queryParams).then(response => {
|
|
|
|
|
this.baseMonitorInfoList = this.handleTree(response.data, "objId", "parentId");
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 转换计量设备信息数据结构 */
|
|
|
|
|
normalizer(node) {
|
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
|
delete node.children;
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
id: node.objId,
|
|
|
|
|
label: node.monitorName,
|
|
|
|
|
children: node.children
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
/** 查询计量设备信息下拉树结构 */
|
|
|
|
|
getTreeselect() {
|
|
|
|
|
listBaseMonitorInfo().then(response => {
|
|
|
|
|
this.baseMonitorInfoOptions = [];
|
|
|
|
|
const data = { objId: 0, monitorName: '顶级节点', children: [] };
|
|
|
|
|
data.children = this.handleTree(response.data, "objId", "parentId");
|
|
|
|
|
this.baseMonitorInfoOptions.push(data);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 取消按钮
|
|
|
|
|
cancel() {
|
|
|
|
|
dialogOpen.value = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
|
objId: null,
|
|
|
|
|
parentId: null,
|
|
|
|
|
monitorCode: null,
|
|
|
|
|
monitorName: null,
|
|
|
|
|
energyType: null,
|
|
|
|
|
monitorAddr: null,
|
|
|
|
|
monitorType: null,
|
|
|
|
|
monitorStatus: null,
|
|
|
|
|
collectDeviceId: null,
|
|
|
|
|
ancestors: null,
|
|
|
|
|
grade: null,
|
|
|
|
|
meterTypeId: null,
|
|
|
|
|
correctValue: null,
|
|
|
|
|
pt: null,
|
|
|
|
|
ct: null,
|
|
|
|
|
isAmmeter: null,
|
|
|
|
|
isKeyMonitor: null,
|
|
|
|
|
isCircuit: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
publicShareType: null,
|
|
|
|
|
monitorHierarchy: null
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
this.getTreeselect();
|
|
|
|
|
if (row != null && row.objId) {
|
|
|
|
|
this.form.parentId = row.objId;
|
|
|
|
|
} else {
|
|
|
|
|
this.form.parentId = 0;
|
|
|
|
|
}
|
|
|
|
|
dialogOpen.value = true;
|
|
|
|
|
dialogTitle.value = "添加计量设备信息";
|
|
|
|
|
},
|
|
|
|
|
/** 展开/折叠操作 */
|
|
|
|
|
toggleExpandAll() {
|
|
|
|
|
this.refreshTable = false;
|
|
|
|
|
this.isExpandAll = !this.isExpandAll;
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.refreshTable = true;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
this.getTreeselect();
|
|
|
|
|
if (row != null) {
|
|
|
|
|
this.form.parentId = row.parentId;
|
|
|
|
|
}
|
|
|
|
|
getBaseMonitorInfo(row.objId).then(response => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
dialogOpen.value = true;
|
|
|
|
|
dialogTitle.value = "修改计量设备信息";
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.objId != null) {
|
|
|
|
|
updateBaseMonitorInfo(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
dialogOpen.value = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
// this.form.monitorType = 4;
|
|
|
|
|
addBaseMonitorInfo(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
dialogOpen.value = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
this.$modal.confirm('是否确认删除计量设备信息编号为"' + row.objId + '"的数据项?').then(function () {
|
|
|
|
|
return delBaseMonitorInfo(row.objId);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => { });
|
|
|
|
|
},
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const { is_ammeter, monitor_status } = toRefs<any>(proxy?.useDict('is_ammeter', 'monitor_status'));
|
|
|
|
|
|
|
|
|
|
/** 获取能源类型名称 */
|
|
|
|
|
getEnergyTypeName(energyTypeId) {
|
|
|
|
|
const energyType = this.energyTypeList.find(item => item.energyTypeId === energyTypeId);
|
|
|
|
|
return energyType ? energyType.energyName : '';
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
// 遮罩层
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
// 计量设备信息表格数据
|
|
|
|
|
const baseMonitorInfoList = ref<any[]>([]);
|
|
|
|
|
// 计量设备信息树选项
|
|
|
|
|
const baseMonitorInfoOptions = ref<any[]>([]);
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
const dialogTitle = ref("");
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
const dialogOpen = ref(false);
|
|
|
|
|
// 是否展开,默认全部展开
|
|
|
|
|
const isExpandAll = ref(true);
|
|
|
|
|
// 重新渲染表格状态
|
|
|
|
|
const refreshTable = ref(true);
|
|
|
|
|
// 能源类型选项
|
|
|
|
|
const energyTypeList = ref<any[]>([]);
|
|
|
|
|
|
|
|
|
|
const queryFormRef = ref<FormInstance>();
|
|
|
|
|
const formRef = ref<FormInstance>();
|
|
|
|
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
const queryParams = reactive({
|
|
|
|
|
parentId: null,
|
|
|
|
|
monitorCode: null,
|
|
|
|
|
monitorName: null,
|
|
|
|
|
energyType: null,
|
|
|
|
|
monitorAddr: null,
|
|
|
|
|
monitorType: null,
|
|
|
|
|
monitorStatus: null,
|
|
|
|
|
collectDeviceId: null,
|
|
|
|
|
ancestors: null,
|
|
|
|
|
grade: null,
|
|
|
|
|
meterTypeId: null,
|
|
|
|
|
correctValue: null,
|
|
|
|
|
pt: null,
|
|
|
|
|
ct: null,
|
|
|
|
|
isAmmeter: null,
|
|
|
|
|
isKeyMonitor: null,
|
|
|
|
|
isCircuit: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
publicShareType: null,
|
|
|
|
|
monitorHierarchy: null
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 表单参数
|
|
|
|
|
const form = reactive<any>({
|
|
|
|
|
objId: null,
|
|
|
|
|
parentId: null,
|
|
|
|
|
monitorCode: null,
|
|
|
|
|
monitorName: null,
|
|
|
|
|
energyType: null,
|
|
|
|
|
monitorAddr: null,
|
|
|
|
|
monitorType: null,
|
|
|
|
|
monitorStatus: null,
|
|
|
|
|
collectDeviceId: null,
|
|
|
|
|
ancestors: null,
|
|
|
|
|
grade: null,
|
|
|
|
|
meterTypeId: null,
|
|
|
|
|
correctValue: null,
|
|
|
|
|
pt: null,
|
|
|
|
|
ct: null,
|
|
|
|
|
isAmmeter: null,
|
|
|
|
|
isKeyMonitor: null,
|
|
|
|
|
isCircuit: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
publicShareType: null,
|
|
|
|
|
monitorHierarchy: null
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 表单校验
|
|
|
|
|
const rules = reactive({
|
|
|
|
|
objId: [
|
|
|
|
|
{ required: true, message: "自增标识不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
monitorCode: [
|
|
|
|
|
{ required: true, message: "计量设备编号不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
energyTypeId: [
|
|
|
|
|
{ required: true, message: '能源类型不能为空', trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const columns = ref([
|
|
|
|
|
{ key: 0, label: `自增标识`, visible: false },
|
|
|
|
|
{ key: 1, label: `父级编号`, visible: false },
|
|
|
|
|
{ key: 2, label: `计量设备编号`, visible: true },
|
|
|
|
|
{ key: 3, label: `计量设备名称`, visible: true },
|
|
|
|
|
{ key: 4, label: `能源类型`, visible: true },
|
|
|
|
|
{ key: 5, label: `计量设备位置`, visible: true },
|
|
|
|
|
{ key: 6, label: `计量设备类型`, visible: true },
|
|
|
|
|
{ key: 7, label: `计量设备状态`, visible: true },
|
|
|
|
|
{ key: 8, label: `采集设备编号`, visible: true },
|
|
|
|
|
{ key: 9, label: `祖级列表`, visible: true },
|
|
|
|
|
{ key: 10, label: `等级`, visible: false },
|
|
|
|
|
{ key: 11, label: `传感器仪表`, visible: false },
|
|
|
|
|
{ key: 12, label: `修正值`, visible: false },
|
|
|
|
|
{ key: 13, label: `PT值`, visible: true },
|
|
|
|
|
{ key: 14, label: `CT值`, visible: true },
|
|
|
|
|
{ key: 15, label: `是否虚拟`, visible: true },
|
|
|
|
|
{ key: 16, label: `通断复位`, visible: false },
|
|
|
|
|
{ key: 17, label: `是否断路`, visible: false },
|
|
|
|
|
{ key: 18, label: `创建人`, visible: false },
|
|
|
|
|
{ key: 19, label: `创建时间`, visible: false },
|
|
|
|
|
{ key: 20, label: `更新人`, visible: false },
|
|
|
|
|
{ key: 21, label: `更新时间`, visible: false },
|
|
|
|
|
{ key: 22, label: `公摊表类型`, visible: false },
|
|
|
|
|
{ key: 23, label: `表具层级`, visible: false },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
/** 查询计量设备信息列表 */
|
|
|
|
|
const getList = () => {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
listBaseMonitorInfo(queryParams).then(response => {
|
|
|
|
|
baseMonitorInfoList.value = proxy?.handleTree(response.data, "objId", "parentId") || [];
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 转换计量设备信息数据结构 */
|
|
|
|
|
const normalizer = (node: any) => {
|
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
|
delete node.children;
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
id: node.objId,
|
|
|
|
|
label: node.monitorName,
|
|
|
|
|
children: node.children
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 查询计量设备信息下拉树结构 */
|
|
|
|
|
const getTreeselect = () => {
|
|
|
|
|
listBaseMonitorInfo().then(response => {
|
|
|
|
|
baseMonitorInfoOptions.value = [];
|
|
|
|
|
const data = { objId: 0, monitorName: '顶级节点', children: [] };
|
|
|
|
|
data.children = proxy?.handleTree(response.data, "objId", "parentId") || [];
|
|
|
|
|
baseMonitorInfoOptions.value.push(data);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 取消按钮
|
|
|
|
|
const cancel = () => {
|
|
|
|
|
dialogOpen.value = false;
|
|
|
|
|
reset();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
const reset = () => {
|
|
|
|
|
Object.assign(form, {
|
|
|
|
|
objId: null,
|
|
|
|
|
parentId: null,
|
|
|
|
|
monitorCode: null,
|
|
|
|
|
monitorName: null,
|
|
|
|
|
energyType: null,
|
|
|
|
|
monitorAddr: null,
|
|
|
|
|
monitorType: null,
|
|
|
|
|
monitorStatus: null,
|
|
|
|
|
collectDeviceId: null,
|
|
|
|
|
ancestors: null,
|
|
|
|
|
grade: null,
|
|
|
|
|
meterTypeId: null,
|
|
|
|
|
correctValue: null,
|
|
|
|
|
pt: null,
|
|
|
|
|
ct: null,
|
|
|
|
|
isAmmeter: null,
|
|
|
|
|
isKeyMonitor: null,
|
|
|
|
|
isCircuit: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
publicShareType: null,
|
|
|
|
|
monitorHierarchy: null
|
|
|
|
|
});
|
|
|
|
|
formRef.value?.resetFields();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
const resetQuery = () => {
|
|
|
|
|
queryFormRef.value?.resetFields();
|
|
|
|
|
handleQuery();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
const handleAdd = (row?: any) => {
|
|
|
|
|
reset();
|
|
|
|
|
getTreeselect();
|
|
|
|
|
if (row != null && row.objId) {
|
|
|
|
|
form.parentId = row.objId;
|
|
|
|
|
} else {
|
|
|
|
|
form.parentId = 0;
|
|
|
|
|
}
|
|
|
|
|
dialogOpen.value = true;
|
|
|
|
|
dialogTitle.value = "添加计量设备信息";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 展开/折叠操作 */
|
|
|
|
|
const toggleExpandAll = () => {
|
|
|
|
|
refreshTable.value = false;
|
|
|
|
|
isExpandAll.value = !isExpandAll.value;
|
|
|
|
|
proxy?.$nextTick(() => {
|
|
|
|
|
refreshTable.value = true;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
const handleUpdate = (row?: any) => {
|
|
|
|
|
reset();
|
|
|
|
|
getTreeselect();
|
|
|
|
|
if (row != null) {
|
|
|
|
|
form.parentId = row.parentId;
|
|
|
|
|
}
|
|
|
|
|
getBaseMonitorInfo(row.objId).then(response => {
|
|
|
|
|
Object.assign(form, response.data);
|
|
|
|
|
dialogOpen.value = true;
|
|
|
|
|
dialogTitle.value = "修改计量设备信息";
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
const submitForm = () => {
|
|
|
|
|
formRef.value?.validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (form.objId != null) {
|
|
|
|
|
updateBaseMonitorInfo(form).then(response => {
|
|
|
|
|
proxy?.$modal.msgSuccess("修改成功");
|
|
|
|
|
dialogOpen.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addBaseMonitorInfo(form).then(response => {
|
|
|
|
|
proxy?.$modal.msgSuccess("新增成功");
|
|
|
|
|
dialogOpen.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = (row?: any) => {
|
|
|
|
|
proxy?.$modal.confirm('是否确认删除计量设备信息编号为"' + row.objId + '"的数据项?').then(function () {
|
|
|
|
|
return delBaseMonitorInfo(row.objId);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
getList();
|
|
|
|
|
proxy?.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => { });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 获取能源类型名称 */
|
|
|
|
|
const getEnergyTypeName = (energyTypeId: any) => {
|
|
|
|
|
const energyType = energyTypeList.value.find(item => item.energyTypeId === energyTypeId);
|
|
|
|
|
return energyType ? energyType.energyName : '';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getBaseEnergyTypeList({}).then(response => {
|
|
|
|
|
energyTypeList.value = response.data
|
|
|
|
|
})
|
|
|
|
|
getList()
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|