mirror of https://gitee.com/lmlz_0/dc-ui.git
zhousq
1 year ago
5 changed files with 1069 additions and 13 deletions
@ -0,0 +1,71 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询设备告警列表
|
||||
|
export function listAlert(query) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie/list', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询设备告警详细
|
||||
|
export function getAlert(id) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增设备告警
|
||||
|
export function addAlert(data) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改设备告警
|
||||
|
export function updateAlert(data) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除设备告警
|
||||
|
export function delAlert(id) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出设备告警
|
||||
|
export function exportAlert(query) { |
||||
|
return request({ |
||||
|
url: '/${baseUrl}/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询警告列表
|
||||
|
export function getAlertTableInfo(query) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie/alertDeviceInfo', |
||||
|
method: 'post', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询未添加警告设备列表
|
||||
|
export function getNoAlertDevice(query) { |
||||
|
return request({ |
||||
|
url: '/model/dcBusiAlertDevcie/noAlertDevice', |
||||
|
method: 'post', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
@ -0,0 +1,587 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="120px"> |
||||
|
<el-form-item label="中台设备编码" prop="centerDeviceCode"> |
||||
|
<el-input |
||||
|
v-model="queryParams.centerDeviceCode" |
||||
|
placeholder="请输入中台设备编码" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备名称" prop="deviceName"> |
||||
|
<el-input |
||||
|
v-model="queryParams.deviceName" |
||||
|
placeholder="请输入设备名称" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="通讯来源类型" prop="deviceSource"> |
||||
|
<el-select v-model="queryParams.deviceSource" placeholder="请选择是否可用" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in dc_device_source" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
@change="deviceSourceChange" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-collapse-transition> |
||||
|
<div v-show="collapseVisible"> |
||||
|
<el-form-item label="是否可用" prop="enabledFlag"> |
||||
|
<el-select v-model="queryParams.enabledFlag" placeholder="请选择是否可用" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in enabledFlag" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备类型" prop="deviceType"> |
||||
|
<el-select v-model="queryParams.deviceType" placeholder="请选择设备类型" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in dc_device_type" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="所属组织名称" prop="orgName"> |
||||
|
<el-tree-select v-model="queryParams.orgName" :data="deptOptions" |
||||
|
:props="{ value: 'label', label: 'label', children: 'children' }" value-key="id" placeholder="请选择组织名称" |
||||
|
check-strictly :default-expand-all="true"/> |
||||
|
</el-form-item> |
||||
|
</div> |
||||
|
</el-collapse-transition> |
||||
|
<el-form-item class="childTextAlignCenter"> |
||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
||||
|
<el-button type="info" plain icon="Refresh" @click="resetQuery">重置</el-button> |
||||
|
<el-button @click="toggleCollapse">{{editName}}</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
icon="Plus" |
||||
|
@click="handleAdd" |
||||
|
>新增</el-button> |
||||
|
</el-col> |
||||
|
<!-- <el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
icon="Delete" |
||||
|
@click="handleDelete" |
||||
|
>删除</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="warning" |
||||
|
icon="Download" |
||||
|
@click="handleExport" |
||||
|
>导出</el-button> |
||||
|
</el-col> --> |
||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"> |
||||
|
</right-toolbar> |
||||
|
</el-row> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="deviceList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" fixed="left"/> |
||||
|
<el-table-column label="中台设备编码" align="center" prop="centerDeviceCode" :width="120"/> |
||||
|
<el-table-column label="设备名称" align="center" prop="deviceName" :width="120"/> |
||||
|
<el-table-column label="通讯来源类型" align="center" prop="deviceSource" :width="120"/> |
||||
|
<el-table-column label="是否可用" align="center" prop="enabledFlag" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="enabledFlagTable" :value="scope.row.enabledFlag"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="设备类型" align="center" prop="deviceType" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="dc_device_type" :value="scope.row.deviceType"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="所属组织名称" align="center" prop="orgName" :width="120" /> |
||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" :width="300"> |
||||
|
<template #default="scope"> |
||||
|
<el-button |
||||
|
type="text" |
||||
|
icon="Edit" |
||||
|
@click="handleParams(scope.row)" |
||||
|
>维护告警参数</el-button> |
||||
|
<el-button |
||||
|
type="text" |
||||
|
icon="Delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
>删除告警配置</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination |
||||
|
v-show="total>0" |
||||
|
:total="total" |
||||
|
v-model:page="queryParams.pageNum" |
||||
|
v-model:limit="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
|
||||
|
<!-- 添加或修改设备信息对话框 --> |
||||
|
<el-dialog :title="title" v-model="open" width="800px" append-to-body> |
||||
|
<el-form :model="queryParamsIn" ref="queryRefForm" :inline="true" v-show="showAddSearch" label-width="120px"> |
||||
|
<el-form-item label="中台设备编码" prop="centerDeviceCode"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.centerDeviceCode" |
||||
|
placeholder="请输入中台设备编码" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备名称" prop="deviceName"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.deviceName" |
||||
|
placeholder="请输入设备名称" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-collapse-transition> |
||||
|
<div v-show="collapseVisibleDialog"> |
||||
|
<el-form-item label="通讯来源类型" prop="deviceSource"> |
||||
|
<el-select v-model="queryParamsIn.deviceSource" placeholder="请选择是否可用" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in dc_device_source" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
@change="deviceSourceChange" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="是否可用" prop="enabledFlag"> |
||||
|
<el-select v-model="queryParamsIn.enabledFlag" placeholder="请选择是否可用" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in enabledFlag" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备类型" prop="deviceType"> |
||||
|
<el-select v-model="queryParamsIn.deviceType" placeholder="请选择设备类型" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in dc_device_type" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="所属组织名称" prop="orgName"> |
||||
|
<el-tree-select v-model="queryParamsIn.orgName" :data="deptOptions" |
||||
|
:props="{ value: 'label', label: 'label', children: 'children' }" value-key="id" placeholder="请选择组织名称" |
||||
|
check-strictly :default-expand-all="true"/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="位置编码" prop="locationCode"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.locationCode" |
||||
|
placeholder="请输入位置编码" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="位置名称" prop="locationName"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.locationName" |
||||
|
placeholder="请输入位置名称" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备应用范围" prop="deviceClass"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.deviceClass" |
||||
|
placeholder="请输入设备应用范围" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="接口名称" prop="apiName"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.apiName" |
||||
|
placeholder="请输入接口名称" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="服务器地址" prop="serverIp"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.serverIp" |
||||
|
placeholder="请输入服务器地址" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="从属网关ID" prop="gatewayId"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.gatewayId" |
||||
|
placeholder="请输入从属网关ID" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="纬度" prop="latValue"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.latValue" |
||||
|
placeholder="请输入纬度" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="经度" prop="lagValue"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.lagValue" |
||||
|
placeholder="请输入经度" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备模型" prop="deviceModelId"> |
||||
|
<el-select v-model="queryParamsIn.deviceModelId" placeholder="请选择设备模型id" clearable> |
||||
|
<el-option label="请选择设备模型" value="deviceModelId" /> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="租户号" prop="tentantId"> |
||||
|
<el-input |
||||
|
v-model="queryParamsIn.tentantId" |
||||
|
placeholder="请输入租户号" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备分组" prop="deviceGroupId"> |
||||
|
<el-select v-model="queryParamsIn.deviceGroupId" placeholder="请选择设备分组ID" clearable> |
||||
|
<el-option label="请添加设备分组" value="" /> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</div> |
||||
|
</el-collapse-transition> |
||||
|
<el-form-item class="childTextAlignCenter"> |
||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
||||
|
<el-button type="info" plain icon="Refresh" @click="resetQuery">重置</el-button> |
||||
|
<el-button @click="toggleCollapseDialog">{{editNameDialog}}</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button type="primary" @click="handleSubmit">提交</el-button> |
||||
|
</el-col> |
||||
|
<right-toolbar v-model:showSearch="showAddSearch" @queryTable="getNoAlertDeviceList"> |
||||
|
</right-toolbar> |
||||
|
</el-row> |
||||
|
<el-table ref="addAlertTable" v-loading="loading" :data="noAlertDeviceList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" fixed="left"/> |
||||
|
<el-table-column label="中台设备编码" align="center" prop="centerDeviceCode" :width="120"/> |
||||
|
<el-table-column label="设备名称" align="center" prop="deviceName" :width="120"/> |
||||
|
<el-table-column label="通讯来源类型" align="center" prop="deviceSource" :width="120"/> |
||||
|
<el-table-column label="是否可用" align="center" prop="enabledFlag" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="enabledFlagTable" :value="scope.row.enabledFlag"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="设备类型" align="center" prop="deviceType" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="dc_device_type" :value="scope.row.deviceType"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="所属组织名称" align="center" prop="orgName" :width="120" /> |
||||
|
<el-table-column label="位置编码" align="center" prop="locationCode" :width="120"/> |
||||
|
<el-table-column label="位置名称" align="center" prop="locationName" :width="120"/> |
||||
|
<el-table-column label="设备应用范围" align="center" prop="deviceClass" :width="120"/> |
||||
|
<el-table-column label="接口名称" align="center" prop="apiName" :width="120"/> |
||||
|
<el-table-column label="服务器地址" align="center" prop="serverIp" :width="120"/> |
||||
|
<el-table-column label="从属网关ID" align="center" prop="gatewayId" :width="120"/> |
||||
|
<el-table-column label="纬度" align="center" prop="latValue" :width="120"/> |
||||
|
<el-table-column label="经度" align="center" prop="lagValue" :width="120"/> |
||||
|
<el-table-column label="设备模型" align="center" prop="deviceModelId" :width="120"> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="租户号" align="center" prop="tentantId" :width="120"/> |
||||
|
<el-table-column label="设备分组" align="center" prop="deviceGroupId" :width="120"/> |
||||
|
</el-table> |
||||
|
<pagination |
||||
|
v-show="noAlertTotal>0" |
||||
|
:total="noAlertTotal" |
||||
|
v-model:page="queryParamsIn.pageNum" |
||||
|
v-model:limit="queryParamsIn.pageSize" |
||||
|
@pagination="getNoAlertDeviceList" |
||||
|
/> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
<style lang="scss" > |
||||
|
@import "@/assets/styles/self-defined.scss"; |
||||
|
</style> |
||||
|
<script setup name="Device"> |
||||
|
import { getNoAlertDevice, getAlertTableInfo, listAlert, getAlert, delAlert, addAlert, updateAlert } from "@/api/model/alert"; |
||||
|
import { deptTreeSelect } from "@/api/system/user"; |
||||
|
const { proxy } = getCurrentInstance(); |
||||
|
const { dc_device_type, dc_device_source } = proxy.useDict('dc_device_type','dc_device_source'); |
||||
|
const router = useRouter(); |
||||
|
|
||||
|
const deviceList = ref([]); |
||||
|
const open = ref(false); |
||||
|
const loading = ref(true); |
||||
|
const showSearch = ref(true); |
||||
|
const showAddSearch = ref(true); |
||||
|
const ids = ref([]); |
||||
|
const single = ref(true); |
||||
|
const multiple = ref(true); |
||||
|
const total = ref(0); |
||||
|
const title = ref(""); |
||||
|
const collapseVisible = ref(false); |
||||
|
const collapseVisibleDialog = ref(false); |
||||
|
const editName = ref("更多筛选项"); |
||||
|
const editNameDialog = ref("更多筛选项"); |
||||
|
const deptOptions = ref([]); |
||||
|
const noAlertDeviceList = ref([]); |
||||
|
const noAlertTotal = ref(0); |
||||
|
const enabledFlag = ref([ |
||||
|
{label: '可用', value: true, elTagType: 'default', elTagClass: null}, |
||||
|
{label: '不可用', value: false, elTagType: 'default', elTagClass: null} |
||||
|
]); |
||||
|
// const alertEnabled = ref([ |
||||
|
// {label: '告警', value: true, elTagType: 'default', elTagClass: null}, |
||||
|
// {label: '不告警', value: false, elTagType: 'default', elTagClass: null} |
||||
|
// ]); |
||||
|
const enabledFlagTable = ref([ |
||||
|
{label: '可用', value: 'true', elTagType: 'default', elTagClass: null}, |
||||
|
{label: '不可用', value: 'false', elTagType: 'default', elTagClass: null} |
||||
|
]); |
||||
|
// const alertEnabledTable = ref([ |
||||
|
// {label: '告警', value: 'true', elTagType: 'default', elTagClass: null}, |
||||
|
// {label: '不告警', value: 'false', elTagType: 'default', elTagClass: null} |
||||
|
// ]); |
||||
|
|
||||
|
const data = reactive({ |
||||
|
form: {}, |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
centerDeviceCode: null, |
||||
|
deviceName: null, |
||||
|
deviceSource: null, |
||||
|
deviceSourceId: null, |
||||
|
enabledFlag: null, |
||||
|
deviceType: null, |
||||
|
orgCode: null, |
||||
|
orgName: null, |
||||
|
locationCode: null, |
||||
|
locationName: null, |
||||
|
deviceClass: null, |
||||
|
apiName: null, |
||||
|
serverIp: null, |
||||
|
gatewayId: null, |
||||
|
latValue: null, |
||||
|
lagValue: null, |
||||
|
uuid: null, |
||||
|
alertEnabled: null, |
||||
|
deviceModelId: null, |
||||
|
tentantId: null, |
||||
|
deviceGroupId: null |
||||
|
}, |
||||
|
queryParamsIn: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
centerDeviceCode: null, |
||||
|
deviceName: null, |
||||
|
deviceSource: null, |
||||
|
deviceSourceId: null, |
||||
|
enabledFlag: null, |
||||
|
deviceType: null, |
||||
|
orgCode: null, |
||||
|
orgName: null, |
||||
|
locationCode: null, |
||||
|
locationName: null, |
||||
|
deviceClass: null, |
||||
|
apiName: null, |
||||
|
serverIp: null, |
||||
|
gatewayId: null, |
||||
|
latValue: null, |
||||
|
lagValue: null, |
||||
|
uuid: null, |
||||
|
alertEnabled: null, |
||||
|
deviceModelId: null, |
||||
|
tentantId: null, |
||||
|
deviceGroupId: null |
||||
|
}, |
||||
|
rules: { |
||||
|
|
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
const { queryParams, queryParamsIn, form, rules } = toRefs(data); |
||||
|
|
||||
|
/** 查询设备信息列表 */ |
||||
|
function getList() { |
||||
|
loading.value = true; |
||||
|
getAlertTableInfo(queryParams.value).then(response => { |
||||
|
deviceList.value = response.rows; |
||||
|
total.value = response.total; |
||||
|
loading.value = false; |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
// 取消按钮 |
||||
|
function cancel() { |
||||
|
open.value = false; |
||||
|
reset(); |
||||
|
} |
||||
|
|
||||
|
// 表单重置 |
||||
|
function reset() { |
||||
|
form.value = { |
||||
|
centerDeviceCode: null, |
||||
|
deviceName: null, |
||||
|
deviceSource: null, |
||||
|
deviceSourceId: null, |
||||
|
enabledFlag: null, |
||||
|
deviceType: null, |
||||
|
orgCode: null, |
||||
|
orgName: null, |
||||
|
locationCode: null, |
||||
|
locationName: null, |
||||
|
deviceClass: null, |
||||
|
apiName: null, |
||||
|
serverIp: null, |
||||
|
gatewayId: null, |
||||
|
latValue: null, |
||||
|
lagValue: null, |
||||
|
uuid: null, |
||||
|
alertEnabled: null, |
||||
|
deviceModelId: null, |
||||
|
tentantId: null, |
||||
|
version: null, |
||||
|
createBy: null, |
||||
|
createTime: null, |
||||
|
updateBy: null, |
||||
|
updateTime: null, |
||||
|
deptId: null, |
||||
|
userId: null, |
||||
|
deleteBy: null, |
||||
|
deleteTime: null, |
||||
|
id: null, |
||||
|
deviceGroupId: null |
||||
|
}; |
||||
|
proxy.resetForm("deviceRef"); |
||||
|
} |
||||
|
|
||||
|
/** 搜索按钮操作 */ |
||||
|
function handleQuery() { |
||||
|
queryParamsIn.value.pageNum = 1; |
||||
|
getNoAlertDeviceList(); |
||||
|
} |
||||
|
|
||||
|
/** 重置按钮操作 */ |
||||
|
function resetQuery() { |
||||
|
proxy.resetForm("queryRef"); |
||||
|
handleQuery(); |
||||
|
} |
||||
|
|
||||
|
// 多选框选中数据 |
||||
|
function handleSelectionChange(selection) { |
||||
|
ids.value = selection.map(item => item.id); |
||||
|
single.value = selection.length != 1; |
||||
|
multiple.value = !selection.length; |
||||
|
} |
||||
|
|
||||
|
/** 新增按钮操作 */ |
||||
|
function handleAdd() { |
||||
|
loading.value = true; |
||||
|
getNoAlertDevice().then(response=>{ |
||||
|
noAlertDeviceList.value = response.rows; |
||||
|
loading.value = false; |
||||
|
}); |
||||
|
reset(); |
||||
|
open.value = true; |
||||
|
title.value = "添加设备信息"; |
||||
|
} |
||||
|
|
||||
|
/** 提交按钮 */ |
||||
|
function handleSubmit() { |
||||
|
const rows = proxy.$refs.addAlertTable.getSelectionRows(); |
||||
|
rows.forEach(item=>{ |
||||
|
const paramAlertAdd = { |
||||
|
deviceUuid: item.uuid |
||||
|
} |
||||
|
addAlert(paramAlertAdd); |
||||
|
}) |
||||
|
open.value=false; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
function handleDelete(row) { |
||||
|
const _ids = row.id || ids.value; |
||||
|
proxy.$modal.confirm('是否确认删除设备信息编号为"' + _ids + '"的数据项?').then(function() { |
||||
|
return delAlert(_ids); |
||||
|
}).then(() => { |
||||
|
getList(); |
||||
|
proxy.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => {}); |
||||
|
} |
||||
|
|
||||
|
function handleParams(row){ |
||||
|
router.push({ |
||||
|
path: "paramalert", |
||||
|
query: { |
||||
|
deviceUuid: row.uuid, |
||||
|
deviceCode: row.centerDeviceCode, |
||||
|
uuidDisabled: false, |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
function toggleCollapse() { |
||||
|
collapseVisible.value = !collapseVisible.value; |
||||
|
if(collapseVisible.value){ |
||||
|
editName.value = "折叠筛选项"; |
||||
|
}else{ |
||||
|
editName.value = "更多筛选项" |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function toggleCollapseDialog() { |
||||
|
collapseVisibleDialog.value = !collapseVisibleDialog.value; |
||||
|
if(collapseVisibleDialog.value){ |
||||
|
editNameDialog.value = "折叠筛选项"; |
||||
|
}else{ |
||||
|
editNameDialog.value = "更多筛选项" |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function getDeptTree() { |
||||
|
deptTreeSelect().then(response => { |
||||
|
deptOptions.value = response.data; |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
function deviceSourceChange(val){ |
||||
|
form.value.deviceSourceId=val.deviceSourceId; |
||||
|
} |
||||
|
|
||||
|
function getNoAlertDeviceList(){ |
||||
|
loading.value = true; |
||||
|
getNoAlertDevice(queryParams.value).then(response => { |
||||
|
noAlertDeviceList.value = response.rows; |
||||
|
noAlertTotal.value = response.total; |
||||
|
loading.value = false; |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
getDeptTree(); |
||||
|
getList(); |
||||
|
</script> |
@ -0,0 +1,379 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="120px"> |
||||
|
<el-form-item label="中台设备编码" prop="deviceUuid"> |
||||
|
<el-input |
||||
|
v-model="queryParams.deviceUuid" |
||||
|
placeholder="请输入中台设备编码" |
||||
|
:disabled="uuidDisabled" |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="参数名称" prop="paramName"> |
||||
|
<el-input |
||||
|
v-model="queryParams.paramName" |
||||
|
placeholder="请输入参数名称" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="参数编码" prop="paramCode"> |
||||
|
<el-input |
||||
|
v-model="queryParams.paramCode" |
||||
|
placeholder="请输入参数编码" |
||||
|
clearable |
||||
|
@keyup.enter="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-collapse-transition> |
||||
|
<div v-show="collapseVisible"> |
||||
|
<el-form-item label="数据类型" prop="paramType"> |
||||
|
<el-select v-model="queryParams.paramType" placeholder="请选择数据类型" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in dc_param_value_type" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="是否可控" prop="contrlFlag"> |
||||
|
<el-select v-model="queryParams.contrlFlag" placeholder="请选择是否可控" clearable> |
||||
|
<el-option |
||||
|
v-for="dict in contrlFlag" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</div> |
||||
|
</el-collapse-transition> |
||||
|
<el-form-item class="childTextAlignCenter"> |
||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
||||
|
<el-button type="info" plain icon="Refresh" @click="resetQuery">重置</el-button> |
||||
|
<el-button @click="toggleCollapse">{{editName}}</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
icon="Plus" |
||||
|
@click="handleAdd" |
||||
|
>新增</el-button> |
||||
|
</el-col> |
||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar> |
||||
|
</el-row> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="paramsList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" fixed="left"/> |
||||
|
<!-- <el-table-column label="主键" align="center" prop="id" /> |
||||
|
<el-table-column label="中台设备UUID" align="center" prop="deviceUuid" :width="120"/> --> |
||||
|
<el-table-column label="参数名称" align="center" prop="paramName" :width="120"/> |
||||
|
<el-table-column label="参数编码" align="center" prop="paramCode" :width="120"/> |
||||
|
<el-table-column label="数据类型" align="center" prop="paramType" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="dc_param_value_type" :value="scope.row.paramType"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="是否可控" align="center" prop="contrlFlag" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="contrlFlagTable" :value="scope.row.contrlFlag"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="参数模版" align="center" prop="paramModelId" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<span>{{ getParamModelName(scope.row.paramModelId) }}</span> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="分区(字典)" align="center" prop="partion" :width="120"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="dc_device_partion" :value="scope.row.partion"/> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="plc地址" align="center" prop="plcAdr" :width="120"/> |
||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" :width="200" fixed="right"> |
||||
|
<template #default="scope"> |
||||
|
<el-button |
||||
|
type="text" |
||||
|
icon="Edit" |
||||
|
@click="handleUpdate(scope.row)" |
||||
|
>维护告警策略</el-button> |
||||
|
<el-button |
||||
|
type="text" |
||||
|
icon="Delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
>删除告警配置</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination |
||||
|
v-show="total>0" |
||||
|
:total="total" |
||||
|
v-model:page="queryParams.pageNum" |
||||
|
v-model:limit="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
</div> |
||||
|
</template> |
||||
|
<style lang="scss" > |
||||
|
@import "@/assets/styles/self-defined.scss"; |
||||
|
</style> |
||||
|
<script setup name="Params"> |
||||
|
import { listParams, getParams, delParams, addParams, updateParams } from "@/api/model/params"; |
||||
|
import { listParamclass } from "@/api/model/paramclass"; |
||||
|
const { proxy } = getCurrentInstance(); |
||||
|
const router = useRouter(); |
||||
|
const { dc_param_uint_type, dc_param_value_type, dc_device_partion } = proxy.useDict('dc_param_uint_type', 'dc_param_value_type', 'dc_device_partion'); |
||||
|
|
||||
|
const paramsList = ref([]); |
||||
|
const open = ref(false); |
||||
|
const loading = ref(true); |
||||
|
const showSearch = ref(true); |
||||
|
const ids = ref([]); |
||||
|
const single = ref(true); |
||||
|
const multiple = ref(true); |
||||
|
const total = ref(0); |
||||
|
const title = ref(""); |
||||
|
const paramClassList = ref([]); |
||||
|
const collapseVisible = ref(false); |
||||
|
const uuidDisabled = (router.currentRoute._value.query.deviceUuid !== undefined&&router.currentRoute._value.query.deviceUuid !== null&&router.currentRoute._value.query.deviceUuid !=="")?router.currentRoute._value.query.deviceUuid:false; |
||||
|
const editName = ref("更多筛选项"); |
||||
|
const deviceUuid = router.currentRoute._value.query.deviceUuid; |
||||
|
const deviceCode = router.currentRoute._value.query.deviceCode; |
||||
|
const contrlFlag = ref([ |
||||
|
{label: '可控', value: true, elTagType: 'default', elTagClass: null}, |
||||
|
{label: '不可控', value: false, elTagType: 'default', elTagClass: null} |
||||
|
]); |
||||
|
const enabled = ref([ |
||||
|
{label: '有效', value: true, elTagType: 'default', elTagClass: null}, |
||||
|
{label: '无效', value: false, elTagType: 'default', elTagClass: null} |
||||
|
]); |
||||
|
const contrlFlagTable = ref([ |
||||
|
{label: '可控', value: 'true', elTagType: 'default', elTagClass: null}, |
||||
|
{label: '不可控', value: 'false', elTagType: 'default', elTagClass: null} |
||||
|
]); |
||||
|
const enabledTable = ref([ |
||||
|
{label: '有效', value: 'true', elTagType: 'default', elTagClass: null}, |
||||
|
{label: '无效', value: 'false', elTagType: 'default', elTagClass: null} |
||||
|
]); |
||||
|
const data = reactive({ |
||||
|
form: { |
||||
|
contrlFlag:contrlFlag, |
||||
|
enabled:enabled, |
||||
|
}, |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
deviceUuid: null, |
||||
|
paramName: null, |
||||
|
paramCode: null, |
||||
|
paramType: null, |
||||
|
contrlFlag: null, |
||||
|
contrlType: null, |
||||
|
enabled: null, |
||||
|
setDefautvalue: null, |
||||
|
setAdjustvalue: null, |
||||
|
validateScope: null, |
||||
|
globalCode: null, |
||||
|
paramModelId: null, |
||||
|
partion: null, |
||||
|
plcAdr: null, |
||||
|
controllab: null |
||||
|
}, |
||||
|
rules: { |
||||
|
deviceUuid: [ |
||||
|
{ required: true, message: "中台设备编码不能为空", trigger: "blur" } |
||||
|
], |
||||
|
paramName: [ |
||||
|
{ required: true, message: "参数名称不能为空", trigger: "blur" } |
||||
|
], |
||||
|
paramCode: [ |
||||
|
{ required: true, message: "参数编码不能为空", trigger: "blur" } |
||||
|
], |
||||
|
paramType: [ |
||||
|
{ required: true, message: "数据类型不能为空", trigger: "change" } |
||||
|
], |
||||
|
contrlFlag: [ |
||||
|
{ required: true, message: "是否可控不能为空", trigger: "change" } |
||||
|
], |
||||
|
contrlType: [ |
||||
|
{ required: true, message: "参数单位不能为空", trigger: "change" } |
||||
|
], |
||||
|
enabled: [ |
||||
|
{ required: true, message: "是否有效不能为空", trigger: "change" } |
||||
|
], |
||||
|
// setDefautvalue: [ |
||||
|
// { required: true, message: "设置值不能为空", trigger: "blur" } |
||||
|
// ], |
||||
|
// setAdjustvalue: [ |
||||
|
// { required: true, message: "偏移量不能为空", trigger: "blur" } |
||||
|
// ], |
||||
|
// validateScope: [ |
||||
|
// { required: true, message: "验证范围;0.0-100.00不能为空", trigger: "blur" } |
||||
|
// ], |
||||
|
globalCode: [ |
||||
|
{ required: true, message: "全局统一编码不能为空", trigger: "blur" } |
||||
|
], |
||||
|
paramModelId: [ |
||||
|
{ required: true, message: "参数模版不能为空", trigger: "change" } |
||||
|
], |
||||
|
partion: [ |
||||
|
{ required: true, message: "分区(字典)不能为空", trigger: "change" } |
||||
|
], |
||||
|
plcAdr: [ |
||||
|
{ required: true, message: "plc地址不能为空", trigger: "blur" } |
||||
|
], |
||||
|
}, |
||||
|
}); |
||||
|
|
||||
|
const { queryParams, form, rules } = toRefs(data); |
||||
|
|
||||
|
/** 查询设备参数明细列表 */ |
||||
|
function getList() { |
||||
|
loading.value = true; |
||||
|
if(deviceUuid != null && deviceUuid != undefined && deviceUuid != ""){ |
||||
|
queryParams.value.deviceUuid = deviceUuid; |
||||
|
listParams(queryParams.value).then(response => { |
||||
|
paramsList.value = response.rows; |
||||
|
total.value = response.total; |
||||
|
loading.value = false; |
||||
|
}); |
||||
|
}else{ |
||||
|
listParams(queryParams.value).then(response => { |
||||
|
paramsList.value = response.rows; |
||||
|
total.value = response.total; |
||||
|
loading.value = false; |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 取消按钮 |
||||
|
function cancel() { |
||||
|
open.value = false; |
||||
|
reset(); |
||||
|
} |
||||
|
|
||||
|
// 表单重置 |
||||
|
function reset() { |
||||
|
form.value = { |
||||
|
tentantId: null, |
||||
|
version: null, |
||||
|
createBy: null, |
||||
|
createTime: null, |
||||
|
updateBy: null, |
||||
|
updateTime: null, |
||||
|
deptId: null, |
||||
|
userId: null, |
||||
|
deleteBy: null, |
||||
|
deleteTime: null, |
||||
|
id: null, |
||||
|
deviceUuid: null, |
||||
|
paramName: null, |
||||
|
paramCode: null, |
||||
|
paramType: null, |
||||
|
contrlFlag: null, |
||||
|
contrlType: null, |
||||
|
enabled: null, |
||||
|
setDefautvalue: null, |
||||
|
setAdjustvalue: null, |
||||
|
validateScope: null, |
||||
|
globalCode: null, |
||||
|
paramModelId: null, |
||||
|
partion: null, |
||||
|
plcAdr: null, |
||||
|
controllab: null |
||||
|
}; |
||||
|
proxy.resetForm("paramsRef"); |
||||
|
} |
||||
|
|
||||
|
/** 搜索按钮操作 */ |
||||
|
function handleQuery() { |
||||
|
queryParams.value.pageNum = 1; |
||||
|
getList(); |
||||
|
} |
||||
|
|
||||
|
/** 重置按钮操作 */ |
||||
|
function resetQuery() { |
||||
|
proxy.resetForm("queryRef"); |
||||
|
handleQuery(); |
||||
|
} |
||||
|
|
||||
|
// 多选框选中数据 |
||||
|
function handleSelectionChange(selection) { |
||||
|
ids.value = selection.map(item => item.id); |
||||
|
single.value = selection.length != 1; |
||||
|
multiple.value = !selection.length; |
||||
|
} |
||||
|
|
||||
|
/** 新增按钮操作 */ |
||||
|
function handleAdd() { |
||||
|
reset(); |
||||
|
form.value.deviceUuid = deviceUuid; |
||||
|
open.value = true; |
||||
|
title.value = "添加设备参数明细"; |
||||
|
} |
||||
|
|
||||
|
/** 维护告警策略 */ |
||||
|
function handleUpdate(row) { |
||||
|
reset(); |
||||
|
const _id = row.id || ids.value |
||||
|
getParams(_id).then(response => { |
||||
|
form.value = response.data; |
||||
|
open.value = true; |
||||
|
title.value = "维护告警策略"; |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/** 提交按钮 */ |
||||
|
function submitForm() { |
||||
|
proxy.$refs["paramsRef"].validate(valid => { |
||||
|
if (valid) { |
||||
|
|
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
function handleDelete(row) { |
||||
|
const _ids = row.id || ids.value; |
||||
|
proxy.$modal.confirm('是否确认删除设备参数明细编号为"' + _ids + '"的数据项?').then(function() { |
||||
|
return delParams(_ids); |
||||
|
}).then(() => { |
||||
|
getList(); |
||||
|
proxy.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => {}); |
||||
|
} |
||||
|
|
||||
|
function getParamModel() { |
||||
|
listParamclass({}).then(response => { |
||||
|
paramClassList.value = response.rows; |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
function toggleCollapse() { |
||||
|
collapseVisible.value = !collapseVisible.value; |
||||
|
if(collapseVisible.value){ |
||||
|
editName.value = "折叠筛选项"; |
||||
|
}else{ |
||||
|
editName.value = "更多筛选项" |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function getParamModelName(id){ |
||||
|
paramClassList.value.forEach(item=>{ |
||||
|
if(item.id == id){ |
||||
|
return item.getParamModelName; |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
getList(); |
||||
|
getParamModel(); |
||||
|
|
||||
|
</script> |
Loading…
Reference in new issue