mirror of https://gitee.com/lmlz_0/dc-ui.git
18512435990
11 months ago
12 changed files with 1127 additions and 104 deletions
@ -0,0 +1,53 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询资产信息列表
|
||||
|
export function listInfo(query) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetInfo/list', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询资产信息详细
|
||||
|
export function getInfo(id) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetInfo/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增资产信息
|
||||
|
export function addInfo(data) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetInfo', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改资产信息
|
||||
|
export function updateInfo(data) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetInfo', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除资产信息
|
||||
|
export function delInfo(id) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetInfo/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出资产信息
|
||||
|
export function exportInfo(query) { |
||||
|
return request({ |
||||
|
url: '/${baseUrl}/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询资产参数列表
|
||||
|
export function listParams(query) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetParams/list', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询资产参数详细
|
||||
|
export function getParams(id) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetParams/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增资产参数
|
||||
|
export function addParams(data) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetParams', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改资产参数
|
||||
|
export function updateParams(data) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetParams', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除资产参数
|
||||
|
export function delParams(id) { |
||||
|
return request({ |
||||
|
url: '/model/dcBaseAssetParams/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 导出资产参数
|
||||
|
export function exportParams(query) { |
||||
|
return request({ |
||||
|
url: '/${baseUrl}/export', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 800 B |
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,101 @@ |
|||||
|
<template> |
||||
|
<MyComponent :data = "config.data" :mesh = "config.mesh" @callfun = "callfun" ></MyComponent> |
||||
|
</template> |
||||
|
|
||||
|
<script setup> |
||||
|
import { ref,defineComponent,defineProps} from 'vue'; |
||||
|
|
||||
|
const props = defineProps({ |
||||
|
meshObj: { |
||||
|
type: Object, |
||||
|
required: {} |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
const { config } = props; |
||||
|
|
||||
|
const callfun = (obj) =>{ |
||||
|
showMsg.value = '参数编码:'+ obj.code +'参数值:' + obj.value; |
||||
|
} |
||||
|
|
||||
|
onMounted(() => { |
||||
|
// setTimeout(() => { |
||||
|
// let meshObj = getMesh() |
||||
|
// mesh.value = meshObj.struct |
||||
|
// data.value = meshObj.params |
||||
|
// }, 3000); |
||||
|
}) |
||||
|
|
||||
|
const MyComponent = defineComponent({ |
||||
|
|
||||
|
props: { |
||||
|
data:{ |
||||
|
type: String, |
||||
|
required: true |
||||
|
}, |
||||
|
mesh:{ |
||||
|
type: Object, |
||||
|
required: true |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
emits: ['callfun'], // 子组件发送自定义事件 |
||||
|
|
||||
|
setup(props,{ emit }) { |
||||
|
return () => { |
||||
|
return props.mesh != false ? h(props.mesh.type, { id: props.mesh.key, style: props.mesh.type, class: props.mesh.class }, [ |
||||
|
// 第二层 tr |
||||
|
props.mesh.items.map(tr => { |
||||
|
return h(tr.type, { style: tr.style, key: tr.rowIndex }, [ |
||||
|
// 第三层 td |
||||
|
tr.items.map(td => { |
||||
|
return td.valueType == 0 ? h(td.type, { key: td.key, style:td.style }, [ td.value ]) : |
||||
|
td.valueType == 1 ? h(td.type, { key: td.key, style:td.style }, [ props.data[td.code] ]) : |
||||
|
td.valueType == 2 ? h(td.type, { key: td.key, style:td.style }, [ |
||||
|
// 第四层 |
||||
|
td.items.map(content => { |
||||
|
return content.valueType == 1 ? h(content.type, { style:content.style } ,props.data[content.code]) : |
||||
|
content.valueType == 3 ? h(content.type, { style:content.style, class:content.class ,onClick: () => emit(content.fun, {code:content.param.value,value:props.data[content.param.value]} ) },content.value) : null |
||||
|
}) |
||||
|
]) : h(td.type, { key: td.key, style:td.style }, ["???"]) |
||||
|
}) |
||||
|
]) |
||||
|
}) |
||||
|
]) : h('span', '正在加载!') |
||||
|
} |
||||
|
}, |
||||
|
}); |
||||
|
|
||||
|
</script> |
||||
|
|
||||
|
<style lang='scss' scoped> |
||||
|
.bg{ |
||||
|
margin: 1rem; |
||||
|
} |
||||
|
.tw { |
||||
|
border-collapse: collapse; |
||||
|
border: 2px solid rgb(49, 47, 47) ; |
||||
|
:deep(td) { |
||||
|
border-collapse: collapse; |
||||
|
border: 1px solid rgb(29, 28, 28); |
||||
|
padding: 5px; |
||||
|
} |
||||
|
:deep(th) { |
||||
|
border-collapse: collapse; |
||||
|
border: 1px solid rgb(29, 28, 28); |
||||
|
background-color: cornflowerblue; |
||||
|
padding: 5px; |
||||
|
} |
||||
|
:deep(.btn) { |
||||
|
float: left; |
||||
|
width: 20px; |
||||
|
height: 20px; |
||||
|
margin-left: 5px; |
||||
|
margin-bottom: 3px; |
||||
|
background-image: url("../../../assets/icons/png/edit.png"); |
||||
|
background-size: 20px; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
</style> |
||||
|
|
@ -0,0 +1,341 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-row> |
||||
|
<el-col :span="4" class="card-box"> |
||||
|
<div class="head-container"> |
||||
|
<el-input v-model="deptName" placeholder="请输入部门名称" clearable prefix-icon="Search" style="margin-bottom: 20px" /> |
||||
|
</div> |
||||
|
<div class="head-container"> |
||||
|
<el-tree :data="deptOptions" :props="{ label: 'label', children: 'children' }" :expand-on-click-node="false" |
||||
|
:filter-node-method="filterNode" ref="deptTreeRef" node-key="id" highlight-current default-expand-all |
||||
|
@node-click="handleNodeClick" /> |
||||
|
</div> |
||||
|
</el-col> |
||||
|
<el-col :span="20" class="card-box"> |
||||
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="100px"> |
||||
|
<el-form-item label="编码" prop="assetCode"> |
||||
|
<el-input v-model="queryParams.assetCode" placeholder="请输入编码" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<!-- <el-form-item label="是否有效" prop="flagEnabled"> |
||||
|
<el-input v-model="queryParams.flagEnabled" placeholder="请输入是否有效" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> --> |
||||
|
<el-form-item label="名称" prop="assetName"> |
||||
|
<el-input v-model="queryParams.assetName" placeholder="请输入名称" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="类别" prop="assetType"> |
||||
|
<el-select v-model="queryParams.assetType" placeholder="请选择类别" clearable> |
||||
|
<el-option v-for="dict in dc_asset_attr" :key="dict.value" :label="dict.label" :value="dict.value" /> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
||||
|
<el-button type="info" plain icon="Refresh" @click="resetQuery">重置</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="Edit" @click="handleUpdate">修改</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="infoList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<!-- <el-table-column label="主键" align="center" prop="id" /> --> |
||||
|
<el-table-column label="编码" align="center" prop="assetCode" /> |
||||
|
<el-table-column label="名称" align="center" prop="assetName" /> |
||||
|
<el-table-column label="类别" align="center" prop="assetType"> |
||||
|
<template #default="scope"> |
||||
|
<dict-tag :options="dc_asset_attr" :value="scope.row.assetType" /> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="组织" align="center" prop="orgName" /> |
||||
|
<el-table-column label="操作" align="center" width="350" class-name="small-padding fixed-width"> |
||||
|
<template #default="scope"> |
||||
|
<el-button type="text" icon="Edit" @click="handleParams(scope.row)">参数</el-button> |
||||
|
<!-- <el-button type="text" icon="Edit" @click="handleDevices(scope.row)">关联设备</el-button> --> |
||||
|
<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" /> |
||||
|
|
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
|
||||
|
<!-- 添加或修改资产信息对话框 --> |
||||
|
<el-dialog :title="title" v-model="open" width="600px" append-to-body> |
||||
|
<el-form ref="infoRef" :model="form" :rules="rules" label-width="80px"> |
||||
|
<el-row> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="组织" prop="orgName"> |
||||
|
<el-tree-select v-model="form.orgName" :data="deptOptions" |
||||
|
:props="{ value: 'label', label: 'label', children: 'children' }" value-key="id" placeholder="请选择" |
||||
|
check-strictly :default-expand-all="true" @node-click="selectDept" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12" v-show="false"> |
||||
|
<el-form-item label="所属组织编码" prop="orgCode"> |
||||
|
<el-input v-model="form.orgCode" placeholder="请选择组织名称" disabled /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="编码" prop="assetCode"> |
||||
|
<el-input v-model="form.assetCode" placeholder="请输入编码" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="是否可用" prop="flagEnabled"> |
||||
|
<el-select v-model="form.flagEnabled" placeholder="请选择是否可用"> |
||||
|
<el-option v-for="dict in enabledFlag" :key="dict.value" :label="dict.label" :value="dict.value" /> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="名称" prop="assetName"> |
||||
|
<el-input v-model="form.assetName" placeholder="请输入名称" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="类别" prop="assetType"> |
||||
|
<el-select v-model="form.assetType" placeholder="请选择类别"> |
||||
|
<el-option v-for="dict in dc_asset_attr" :key="dict.value" :label="dict.label" |
||||
|
:value="dict.value"></el-option> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
|
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
<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 setup name="AssetInfo"> |
||||
|
import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/model/asset/info"; |
||||
|
import { deptTreeSelect } from "@/api/system/user"; |
||||
|
|
||||
|
const { proxy } = getCurrentInstance(); |
||||
|
const { dc_asset_attr } = proxy.useDict('dc_asset_attr'); |
||||
|
const router = useRouter(); |
||||
|
const infoList = 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 enabledFlag = ref([ |
||||
|
{ label: '可用', value: 1, elTagType: 'default', elTagClass: null }, |
||||
|
{ label: '不可用', value: 0, elTagType: 'default', elTagClass: null } |
||||
|
]); |
||||
|
|
||||
|
const data = reactive({ |
||||
|
form: {}, |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
tentantId: null, |
||||
|
assetCode: null, |
||||
|
flagEnabled: null, |
||||
|
assetName: null, |
||||
|
assetType: null, |
||||
|
orgCode: null, |
||||
|
orgName: null |
||||
|
}, |
||||
|
rules: { |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
const { queryParams, form, rules } = toRefs(data); |
||||
|
|
||||
|
/** 查询资产信息列表 */ |
||||
|
function getList() { |
||||
|
loading.value = true; |
||||
|
listInfo(queryParams.value).then(response => { |
||||
|
infoList.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, |
||||
|
assetCode: null, |
||||
|
flagEnabled: null, |
||||
|
assetName: null, |
||||
|
assetType: null, |
||||
|
orgCode: null, |
||||
|
orgName: null |
||||
|
}; |
||||
|
proxy.resetForm("infoRef"); |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/** 搜索按钮操作 */ |
||||
|
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 handleParams(row) { |
||||
|
router.push({ |
||||
|
path: "AssetParams", |
||||
|
query: { |
||||
|
id: row.id, |
||||
|
assetCode: row.assetCode |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
/** 跳转关联设备 */ |
||||
|
function handleDevice(row) { |
||||
|
router.push({ |
||||
|
path: "params", |
||||
|
query: { |
||||
|
id: row.id, |
||||
|
assetCode: row.assetCode |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/** 新增按钮操作 */ |
||||
|
function handleAdd() { |
||||
|
reset(); |
||||
|
open.value = true; |
||||
|
title.value = "添加资产信息"; |
||||
|
} |
||||
|
|
||||
|
/** 修改按钮操作 */ |
||||
|
function handleUpdate(row) { |
||||
|
reset(); |
||||
|
const _id = row.id || ids.value |
||||
|
getInfo(_id).then(response => { |
||||
|
form.value = response.data; |
||||
|
open.value = true; |
||||
|
title.value = "修改资产信息"; |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/** 提交按钮 */ |
||||
|
function submitForm() { |
||||
|
proxy.$refs["infoRef"].validate(valid => { |
||||
|
if (valid) { |
||||
|
if (form.value.id != null) { |
||||
|
updateInfo(form.value).then(response => { |
||||
|
proxy.$modal.msgSuccess("修改成功"); |
||||
|
open.value = false; |
||||
|
getList(); |
||||
|
}); |
||||
|
} else { |
||||
|
addInfo(form.value).then(response => { |
||||
|
proxy.$modal.msgSuccess("新增成功"); |
||||
|
open.value = false; |
||||
|
getList(); |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
function handleDelete(row) { |
||||
|
const _ids = row.id || ids.value; |
||||
|
proxy.$modal.confirm('是否确认删除资产信息编号为"' + _ids + '"的数据项?').then(function () { |
||||
|
return delInfo(_ids); |
||||
|
}).then(() => { |
||||
|
getList(); |
||||
|
proxy.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => { }); |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
function handleExport() { |
||||
|
proxy.download('model.asset/info/export', { |
||||
|
...queryParams.value |
||||
|
}, `info_${new Date().getTime()}.xlsx`) |
||||
|
} |
||||
|
|
||||
|
getList(); |
||||
|
|
||||
|
/** 部门树 */ |
||||
|
getDeptTree(); |
||||
|
const deptOptions = ref([]); |
||||
|
const deptName = ref(null); |
||||
|
function getDeptTree() { |
||||
|
deptTreeSelect().then(response => { |
||||
|
deptOptions.value = response.data; |
||||
|
}); |
||||
|
}; |
||||
|
/** 通过条件过滤节点 */ |
||||
|
const filterNode = (value, data) => { |
||||
|
if (!value) return true; |
||||
|
return data.label.indexOf(value) !== -1; |
||||
|
}; |
||||
|
/** 节点单击事件 */ |
||||
|
function handleNodeClick(data) { |
||||
|
queryParams.value.orgCode = data.id; |
||||
|
handleQuery(); |
||||
|
}; |
||||
|
|
||||
|
function selectDept(val) { |
||||
|
form.value.orgCode = val.id; |
||||
|
} |
||||
|
/** 根据名称筛选部门树 */ |
||||
|
watch(deptName, val => { |
||||
|
proxy.$refs["deptTreeRef"].filter(val); |
||||
|
}); |
||||
|
</script> |
@ -0,0 +1,285 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="100px"> |
||||
|
<el-form-item label="资产编号" prop="assetCode"> |
||||
|
<el-input v-model="queryParams.assetCode" placeholder="请输入资产编号" disabled = false clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="设备uuid" prop="deviceUuid"> |
||||
|
<el-input v-model="queryParams.deviceUuid" placeholder="请输入设备uuid" 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-form-item label="参数模版" prop="paramClassName"> |
||||
|
<el-input v-model="queryParams.paramClassName" placeholder="请输入参数模版" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="名称" prop="name"> |
||||
|
<el-input v-model="queryParams.name" placeholder="请输入名称" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
||||
|
<el-button type="info" plain icon="Refresh" @click="resetQuery">重置</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="Edit" @click="handleUpdate">修改</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="paramsList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<el-table-column label="资产编码" align="center" prop="assetCode" /> |
||||
|
<el-table-column label="设备uuid" align="center" prop="deviceUuid" /> |
||||
|
<el-table-column label="设备参数编码" align="center" prop="paramCode" /> |
||||
|
<!-- <el-table-column label="参数模版编码" align="center" prop="paramClassName" /> --> |
||||
|
<el-table-column label="名称" align="center" prop="paramName" /> |
||||
|
<el-table-column label="分区" align="center" prop="partion" /> |
||||
|
<el-table-column label="是否有效" align="center" prop="flagEnabled" /> |
||||
|
<el-table-column label="是否可控" align="center" prop="contrlFlag" /> |
||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
||||
|
<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" /> |
||||
|
<!-- 添加或修改资产参数对话框 --> |
||||
|
<el-dialog :title="title" v-model="open" width="600px" append-to-body> |
||||
|
<el-form ref="paramsRef" :model="form" :rules="rules" label-width="80px"> |
||||
|
<el-row> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="资产编号" prop="assetCode"> |
||||
|
<el-input v-model="form.assetCode" placeholder="" disabled=false /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="设备uuid" prop="deviceUuid"> |
||||
|
<el-input v-model="form.deviceUuid" placeholder="请输入设备uuid" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="参数编码" prop="paramCode"> |
||||
|
<el-input v-model="form.paramCode" placeholder="请输入参数编码" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<!-- <el-col :span="12"> |
||||
|
<el-form-item label="参数模版" prop="paramClassName"> |
||||
|
<el-input v-model="form.paramClassName" placeholder="请输入参数模版" /> |
||||
|
</el-form-item> |
||||
|
</el-col> --> |
||||
|
<!-- <el-col :span="12"> |
||||
|
<el-form-item label="名称" prop="name"> |
||||
|
<el-input v-model="form.name" placeholder="请输入名称" /> |
||||
|
</el-form-item> |
||||
|
</el-col> --> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="是否有效"> |
||||
|
<el-checkbox v-model="form.flagEnabled"></el-checkbox> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="是否可控"> |
||||
|
<el-checkbox v-model="form.contrlFlag"></el-checkbox> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
<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 setup name="AssetParams"> |
||||
|
import { listParams, getParams, delParams, addParams, updateParams } from "@/api/model/asset/params"; |
||||
|
import { useRouter } from 'vue-router' |
||||
|
const { proxy } = getCurrentInstance(); |
||||
|
const router = useRouter(); |
||||
|
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 assetCode = router.currentRoute.value.query.assetCode; |
||||
|
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: {}, |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
tentantId: null, |
||||
|
assetCode: null, |
||||
|
deviceUuid: null, |
||||
|
paramCode: null, |
||||
|
paramClassName: null, |
||||
|
name: null, |
||||
|
flagEnabled: null, |
||||
|
contrlFlag: null |
||||
|
}, |
||||
|
rules: { |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
const { queryParams, form, rules } = toRefs(data); |
||||
|
|
||||
|
/** 查询资产参数列表 */ |
||||
|
function getList() { |
||||
|
console.log(assetCode) |
||||
|
queryParams.value.assetCode = assetCode; |
||||
|
loading.value = true; |
||||
|
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, |
||||
|
assetCode: null, |
||||
|
deviceUuid: null, |
||||
|
paramCode: null, |
||||
|
paramClassName: null, |
||||
|
name: null, |
||||
|
flagEnabled: null, |
||||
|
contrlFlag: 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.assetCode = assetCode |
||||
|
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) { |
||||
|
if (form.value.id != null) { |
||||
|
updateParams(form.value).then(response => { |
||||
|
proxy.$modal.msgSuccess("修改成功"); |
||||
|
open.value = false; |
||||
|
getList(); |
||||
|
}); |
||||
|
} else { |
||||
|
addParams(form.value).then(response => { |
||||
|
proxy.$modal.msgSuccess("新增成功"); |
||||
|
open.value = false; |
||||
|
getList(); |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
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 handleExport() { |
||||
|
proxy.download('asset/params/export', { |
||||
|
...queryParams.value |
||||
|
}, `params_${new Date().getTime()}.xlsx`) |
||||
|
} |
||||
|
|
||||
|
getList(); |
||||
|
</script> |
Loading…
Reference in new issue