|
|
@ -1,6 +1,8 @@ |
|
|
|
<template> |
|
|
|
<div class="app-container"> |
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="120px"> |
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="120px" class="my-custom-form"> |
|
|
|
<el-row> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="中台设备UUID" prop="deviceUuid"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.deviceUuid" |
|
|
@ -9,6 +11,8 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="参数名称" prop="paramName"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.paramName" |
|
|
@ -17,6 +21,8 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="参数编码" prop="paramCode"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.paramCode" |
|
|
@ -25,8 +31,18 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
<el-collapse-transition> |
|
|
|
<div v-show="collapseVisible"> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="参数编码" prop="paramCode"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.paramCode" |
|
|
|
placeholder="请输入参数编码" |
|
|
|
clearable |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="数据类型" prop="paramType"> |
|
|
|
<el-select v-model="queryParams.paramType" placeholder="请选择数据类型" clearable> |
|
|
|
<el-option |
|
|
@ -37,11 +53,15 @@ |
|
|
|
/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="是否可控" prop="contrlFlag"> |
|
|
|
<el-select v-model="queryParams.contrlFlag" placeholder="请选择是否可控" clearable> |
|
|
|
<el-option label="请选择字典生成" value="" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="参数单位" prop="contrlType"> |
|
|
|
<el-select v-model="queryParams.contrlType" placeholder="请选择参数单位" clearable> |
|
|
|
<el-option |
|
|
@ -52,11 +72,15 @@ |
|
|
|
/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="是否有效" prop="enabled"> |
|
|
|
<el-select v-model="queryParams.enabled" placeholder="请选择是否有效" clearable> |
|
|
|
<el-option label="请选择字典生成" value="" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="设置值" prop="setDefautvalue"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.setDefautvalue" |
|
|
@ -65,6 +89,8 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="偏移量" prop="setAdjustvalue"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.setAdjustvalue" |
|
|
@ -73,6 +99,8 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="验证范围" prop="validateScope"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.validateScope" |
|
|
@ -81,6 +109,8 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="全局统一编码" prop="globalCode"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.globalCode" |
|
|
@ -89,16 +119,22 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="参数模版ID" prop="paramModelId"> |
|
|
|
<el-select v-model="queryParams.paramModelId" placeholder="请选择参数模版ID" clearable> |
|
|
|
<el-option label="请选择字典生成" value="" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="分区(字典)" prop="partion"> |
|
|
|
<el-select v-model="queryParams.partion" placeholder="请选择分区(字典)" clearable> |
|
|
|
<el-option label="请选择字典生成" value="" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" v-show="collapseVisible"> |
|
|
|
<el-form-item label="plc地址" prop="plcAdr"> |
|
|
|
<el-input |
|
|
|
v-model="queryParams.plcAdr" |
|
|
@ -107,15 +143,16 @@ |
|
|
|
@keyup.enter="handleQuery" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</div> |
|
|
|
</el-collapse-transition> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<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-col> |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8"> |
|
|
|
<el-col :span="1.5"> |
|
|
|
<el-button |
|
|
@ -148,48 +185,53 @@ |
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar> |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="paramsList" @selection-change="handleSelectionChange"> |
|
|
|
<el-table ref="deviceParamTable" v-loading="loading" :data="paramsList" @selection-change="handleSelectionChange" @sort-change="sortChange" @filter-change="filterChange" :max-height="tableHeight" :border="true" :column-width-draggable="true"> |
|
|
|
<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"> |
|
|
|
<el-table-column label="参数名称" align="center" prop="paramName" :width="130" sortable/> |
|
|
|
<el-table-column label="参数编码" align="center" prop="paramCode" :width="120" sortable/> |
|
|
|
<el-table-column label="数据类型" align="center" prop="paramType" column-key="paramType" filter-placement="bottom-end" |
|
|
|
:filters="getfilterNameItem('paramType')" :filter-method="filterMethod" :width="120" sortable> |
|
|
|
<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"> |
|
|
|
<el-table-column label="是否可控" align="center" prop="contrlFlag" column-key="contrlFlag" filter-placement="bottom-end" |
|
|
|
:filters="getfilterNameItem('contrlFlag')" :filter-method="filterMethod" :width="120" sortable> |
|
|
|
<template #default="scope"> |
|
|
|
<dict-tag :options="contrlFlagTable" :value="scope.row.contrlFlag"/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="参数单位" align="center" prop="contrlType" :width="120"> |
|
|
|
<template #default="scope"> |
|
|
|
<dict-tag :options="dc_param_uint_type" :value="scope.row.contrlType"/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="是否有效" align="center" prop="enabled" :width="120"> |
|
|
|
<el-table-column label="是否有效" align="center" prop="enabled" column-key="enabled" filter-placement="bottom-end" |
|
|
|
:filters="getfilterNameItem('enabled')" :filter-method="filterMethod" :width="120" sortable> |
|
|
|
<template #default="scope"> |
|
|
|
<dict-tag :options="enabledTable" :value="scope.row.enabled"/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="设置值" align="center" prop="setDefautvalue" :width="120"/> |
|
|
|
<el-table-column label="偏移量" align="center" prop="setAdjustvalue" :width="120"/> |
|
|
|
<el-table-column label="验证范围" align="center" prop="validateScope" :width="120"/> |
|
|
|
<el-table-column label="全局统一编码" align="center" prop="globalCode" :width="120"/> |
|
|
|
<el-table-column label="参数模版" align="center" prop="paramModelId" :width="120"> |
|
|
|
<el-table-column label="设置值" align="center" prop="setDefautvalue" :width="120" sortable/> |
|
|
|
<el-table-column label="偏移量" align="center" prop="setAdjustvalue" :width="120" sortable/> |
|
|
|
<el-table-column label="验证范围" align="center" prop="validateScope" :width="120" sortable/> |
|
|
|
<el-table-column label="全局统一编码" align="center" prop="globalCode" :width="150" sortable/> |
|
|
|
<el-table-column label="参数模版" align="center" prop="paramModelId" column-key="paramModelId" filter-placement="bottom-end" |
|
|
|
:filters="getfilterNameItem('paramModelId')" :filter-method="filterMethod" :width="120" sortable> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ getParamModelName(scope.row.paramModelId) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="分区(字典)" align="center" prop="partion" :width="120"> |
|
|
|
<el-table-column label="分区(字典)" align="center" prop="partion" column-key="partion" filter-placement="bottom-end" |
|
|
|
:filters="getfilterNameItem('partion')" :filter-method="filterMethod" :width="130" sortable> |
|
|
|
<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"> |
|
|
|
<el-table-column label="plc地址" align="center" prop="plcAdr" :width="120" sortable/> |
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" :width="200" :fixed="fixedColumns?'right':false"> |
|
|
|
<template #header> |
|
|
|
<div class="fixed-column-header" style="text-align: center;display: block;" @dblclick="toggleFixedColumns"> |
|
|
|
<span style="text-align: center;display: block;">操作<img style="width:10px;margin-left:5px" v-show="fixedColumns" :src="lock" alt="Image"/></span> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<template #default="scope"> |
|
|
|
<el-button |
|
|
|
type="text" |
|
|
@ -208,9 +250,10 @@ |
|
|
|
<pagination |
|
|
|
v-show="total>0" |
|
|
|
:total="total" |
|
|
|
v-model:page="queryParams.pageNum" |
|
|
|
v-model:limit="queryParams.pageSize" |
|
|
|
v-model:page="params.pageNum" |
|
|
|
v-model:limit="params.pageSize" |
|
|
|
@pagination="getList" |
|
|
|
class="paddingBothLeftRight" |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- 添加或修改设备参数明细对话框 --> |
|
|
@ -268,18 +311,6 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="参数单位" prop="contrlType"> |
|
|
|
<el-select v-model="form.contrlType" placeholder="请选择参数单位"> |
|
|
|
<el-option |
|
|
|
v-for="dict in dc_param_uint_type" |
|
|
|
:key="dict.value" |
|
|
|
:label="dict.label" |
|
|
|
:value="dict.value"> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="是否有效" prop="enabled"> |
|
|
|
<el-select v-model="form.enabled" placeholder="请选择是否有效"> |
|
|
@ -343,8 +374,9 @@ |
|
|
|
@import "@/assets/styles/self-defined.scss"; |
|
|
|
</style> |
|
|
|
<script setup name="Params"> |
|
|
|
import { listParams, getParams, delParams, addParams, updateParams } from "@/api/model/params"; |
|
|
|
import { listParams, getParams, delParams, addParams, updateParams,listWithFilterColumn } from "@/api/model/params"; |
|
|
|
import { listParamclass } from "@/api/model/paramclass"; |
|
|
|
import lock from "@/assets/icons/svg/lock.svg"; |
|
|
|
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'); |
|
|
@ -366,8 +398,12 @@ const paramModelDisabled = ref(false); |
|
|
|
const partionDisabled = ref(false); |
|
|
|
const paramClassCodeSeleted = ref(""); |
|
|
|
const deviceUuid = router.currentRoute._value.query.deviceUuid; |
|
|
|
const deviceCode = router.currentRoute._value.query.deviceCode; |
|
|
|
const deviceUuidDisabled = ref(true); |
|
|
|
const fixedColumns = ref(false); |
|
|
|
const tableHeight = ref("0px"); |
|
|
|
const sortItemMap = ref({}); |
|
|
|
const queryParamFilter = ref({}); |
|
|
|
const sortProps = ref([]); |
|
|
|
const contrlFlag = ref([ |
|
|
|
{label: '可控', value: true, elTagType: 'default', elTagClass: null}, |
|
|
|
{label: '不可控', value: false, elTagType: 'default', elTagClass: null} |
|
|
@ -389,9 +425,11 @@ const data = reactive({ |
|
|
|
contrlFlag:contrlFlag, |
|
|
|
enabled:enabled, |
|
|
|
}, |
|
|
|
queryParams: { |
|
|
|
params: { |
|
|
|
pageNum: 1, |
|
|
|
pageSize: 10, |
|
|
|
}, |
|
|
|
queryParams: { |
|
|
|
deviceUuid: null, |
|
|
|
paramName: null, |
|
|
|
paramCode: null, |
|
|
@ -405,8 +443,7 @@ const data = reactive({ |
|
|
|
globalCode: null, |
|
|
|
paramModelId: null, |
|
|
|
partion: null, |
|
|
|
plcAdr: null, |
|
|
|
controllab: null |
|
|
|
plcAdr: null |
|
|
|
}, |
|
|
|
rules: { |
|
|
|
deviceUuid: [ |
|
|
@ -445,27 +482,57 @@ const data = reactive({ |
|
|
|
}, |
|
|
|
}); |
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data); |
|
|
|
const { queryParams, form, rules, params } = 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; |
|
|
|
let param = { |
|
|
|
"obj":queryParams.value, |
|
|
|
"params":queryParamFilter.value, |
|
|
|
"sort":sortProps.value, |
|
|
|
"pageNum": params.value.pageNum, |
|
|
|
"pageSize": params.value.pageSize, |
|
|
|
} |
|
|
|
listWithFilterColumn(param).then(response => { |
|
|
|
paramsList.value = response.data.tableData.rows; |
|
|
|
total.value = response.data.tableData.total; |
|
|
|
sortItemMap.value = response.data.filter; |
|
|
|
queryParamFilter.value = new Object(); |
|
|
|
loading.value = false; |
|
|
|
}); |
|
|
|
// 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; |
|
|
|
let param = { |
|
|
|
"obj":queryParams.value, |
|
|
|
"params":queryParamFilter.value, |
|
|
|
"sort":sortProps.value, |
|
|
|
"pageNum": params.value.pageNum, |
|
|
|
"pageSize": params.value.pageSize, |
|
|
|
} |
|
|
|
listWithFilterColumn(param).then(response => { |
|
|
|
paramsList.value = response.data.tableData.rows; |
|
|
|
total.value = response.data.tableData.total; |
|
|
|
sortItemMap.value = response.data.filter; |
|
|
|
queryParamFilter.value = new Object(); |
|
|
|
loading.value = false; |
|
|
|
}); |
|
|
|
// listParams(queryParams.value).then(response => { |
|
|
|
// paramsList.value = response.rows; |
|
|
|
// total.value = response.total; |
|
|
|
// loading.value = false; |
|
|
|
// }); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 取消按钮 |
|
|
|
function cancel() { |
|
|
|
open.value = false; |
|
|
@ -499,21 +566,24 @@ function reset() { |
|
|
|
globalCode: null, |
|
|
|
paramModelId: null, |
|
|
|
partion: null, |
|
|
|
plcAdr: null, |
|
|
|
controllab: null |
|
|
|
plcAdr: null |
|
|
|
}; |
|
|
|
proxy.resetForm("paramsRef"); |
|
|
|
} |
|
|
|
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
function handleQuery() { |
|
|
|
queryParams.value.pageNum = 1; |
|
|
|
params.value.pageNum = 1; |
|
|
|
getList(); |
|
|
|
} |
|
|
|
|
|
|
|
/** 重置按钮操作 */ |
|
|
|
function resetQuery() { |
|
|
|
proxy.resetForm("queryRef"); |
|
|
|
proxy.$refs.deviceParamTable.clearSort(); |
|
|
|
proxy.$refs.deviceParamTable.clearFilter(); |
|
|
|
queryParamFilter.value = new Object(); |
|
|
|
sortProps.value = new Array(); |
|
|
|
handleQuery(); |
|
|
|
} |
|
|
|
|
|
|
@ -529,6 +599,8 @@ function handleAdd() { |
|
|
|
reset(); |
|
|
|
form.value.deviceUuid = deviceUuid; |
|
|
|
paramClassCodeSeleted.value = ""; |
|
|
|
paramModelDisabled.value = false; |
|
|
|
partionDisabled.value = false; |
|
|
|
open.value = true; |
|
|
|
title.value = "添加设备参数明细"; |
|
|
|
} |
|
|
@ -638,6 +710,176 @@ function avilileEdit(){ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
function toggleFixedColumns() { |
|
|
|
fixedColumns.value = !fixedColumns.value; |
|
|
|
} |
|
|
|
|
|
|
|
onMounted(()=>{ |
|
|
|
calculateTableHeight(); |
|
|
|
window.addEventListener('resize', calculateTableHeight); |
|
|
|
window.onresize = () => { |
|
|
|
return (() => { |
|
|
|
calculateTableHeight(); |
|
|
|
})() |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
|
|
onUnmounted(() => { |
|
|
|
window.removeEventListener('resize', calculateTableHeight); |
|
|
|
}); |
|
|
|
watch( |
|
|
|
[collapseVisible,showSearch], |
|
|
|
() => { |
|
|
|
calculateTableHeight(); |
|
|
|
} |
|
|
|
); |
|
|
|
const calculateTableHeight = () => { |
|
|
|
nextTick(() => { |
|
|
|
const heightForm = proxy.$refs.queryRef?.$el.clientHeight||0; |
|
|
|
const windowHeight = window.innerHeight; |
|
|
|
const paginationHeight = 60; |
|
|
|
const tableHeaderHeight = 40; |
|
|
|
const tableMargin = 20; |
|
|
|
const remainingHeight = windowHeight - paginationHeight - tableHeaderHeight - tableMargin - heightForm - 100; |
|
|
|
tableHeight.value = remainingHeight + 'px'; |
|
|
|
}); |
|
|
|
}; |
|
|
|
|
|
|
|
function getfilterNameItem(value){ |
|
|
|
let result = ''; |
|
|
|
let resultItem = new Object(); |
|
|
|
if(value==='paramType'){ |
|
|
|
if(sortItemMap.value[value]?.length>0){ |
|
|
|
result = sortItemMap.value[value].map(element=>{ |
|
|
|
dc_param_value_type.value.forEach(item=>{ |
|
|
|
if(item.value===element.text){ |
|
|
|
resultItem = item.label; |
|
|
|
} |
|
|
|
}); |
|
|
|
return { |
|
|
|
text: resultItem, |
|
|
|
value: element.value, |
|
|
|
}; |
|
|
|
}); |
|
|
|
} |
|
|
|
}else if(value==='contrlFlag'){ |
|
|
|
if(sortItemMap.value[value]?.length>0 && sortItemMap.value[value].value != undefined && sortItemMap.value[value].value != null){ |
|
|
|
result = sortItemMap.value[value].map(element=>{ |
|
|
|
contrlFlag.value.forEach(item=>{ |
|
|
|
if(item.value===element.text){ |
|
|
|
resultItem = item.label; |
|
|
|
} |
|
|
|
}); |
|
|
|
return { |
|
|
|
text: resultItem, |
|
|
|
value: element.value, |
|
|
|
}; |
|
|
|
}); |
|
|
|
} |
|
|
|
}else if(value==='enabled'){ |
|
|
|
if(sortItemMap.value[value]?.length>0){ |
|
|
|
result = sortItemMap.value[value].map(element=>{ |
|
|
|
enabled.value.forEach(item=>{ |
|
|
|
if(item.value===element.text){ |
|
|
|
resultItem = item.label; |
|
|
|
} |
|
|
|
}); |
|
|
|
return { |
|
|
|
text: resultItem, |
|
|
|
value: element.value, |
|
|
|
}; |
|
|
|
}); |
|
|
|
} |
|
|
|
}else if(value==='paramModelId'){ |
|
|
|
if(sortItemMap.value[value]?.length>0 && sortItemMap.value[value].value != undefined && sortItemMap.value[value].value != null){ |
|
|
|
result = sortItemMap.value[value].map(element=>{ |
|
|
|
debugger |
|
|
|
return { |
|
|
|
text: getParamModelName(element.value), |
|
|
|
value: element.value, |
|
|
|
}; |
|
|
|
}); |
|
|
|
} |
|
|
|
}else if(value==='partion'){ |
|
|
|
if(sortItemMap.value[value]?.length>0){ |
|
|
|
result = sortItemMap.value[value].map(element=>{ |
|
|
|
dc_device_partion.value.forEach(item=>{ |
|
|
|
if(item.value===String(element.text)){ |
|
|
|
resultItem = item.label; |
|
|
|
} |
|
|
|
}); |
|
|
|
return { |
|
|
|
text: resultItem, |
|
|
|
value: element.value, |
|
|
|
}; |
|
|
|
}); |
|
|
|
} |
|
|
|
}else{ |
|
|
|
result = sortItemMap.value[value]; |
|
|
|
} |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
function filterChange(filterItem) { |
|
|
|
const outerObjectKeys = Object.keys(filterItem); |
|
|
|
if(outerObjectKeys.length===1){ |
|
|
|
queryParamFilter.value[outerObjectKeys[0]] = filterItem[outerObjectKeys[0]]; |
|
|
|
} |
|
|
|
|
|
|
|
loading.value = true; |
|
|
|
let param = { |
|
|
|
"obj":queryParams.value, |
|
|
|
"params":queryParamFilter.value, |
|
|
|
"sort":sortProps.value, |
|
|
|
"pageNum": params.value.pageNum, |
|
|
|
"pageSize": params.value.pageSize, |
|
|
|
} |
|
|
|
listWithFilterColumn(param).then(response => { |
|
|
|
paramsList.value = response.data.tableData.rows; |
|
|
|
total.value = response.data.tableData.total; |
|
|
|
sortItemMap.value = response.data.filter; |
|
|
|
queryParamFilter.value = new Object(); |
|
|
|
loading.value = false; |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
function filterMethod(value, row, column){ |
|
|
|
if(column==null){ |
|
|
|
return; |
|
|
|
} |
|
|
|
if(queryParamFilter.value[column.property] == null || queryParamFilter.value[column.property].length==0){ |
|
|
|
queryParamFilter.value[column.property]=[]; |
|
|
|
queryParamFilter.value[column.property].push(value); |
|
|
|
}else{ |
|
|
|
let flag = false; |
|
|
|
queryParamFilter.value[column.property].forEach(item=>{ |
|
|
|
if(item==value){ |
|
|
|
flag = true; |
|
|
|
} |
|
|
|
}) |
|
|
|
if(!flag){ |
|
|
|
queryParamFilter.value[column.property].push(value); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
function sortChange({column, prop, order }){ |
|
|
|
if(column==null){ |
|
|
|
return; |
|
|
|
} |
|
|
|
sortProps.value = sortProps.value.filter(item => item.prop !== prop); |
|
|
|
if(order!=null){ |
|
|
|
sortProps.value.push({prop:prop,order:order}); |
|
|
|
} |
|
|
|
getList(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getList(); |
|
|
|
getParamModel(); |
|
|
|
avilileEdit(); |
|
|
|