|
|
|
<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() {
|
|
|
|
router.push({
|
|
|
|
path: "AddParams",
|
|
|
|
});
|
|
|
|
// reset();
|
|
|
|
// open.value = true;
|
|
|
|
// title.value = "添加资产信息";
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
function handleUpdate(row) {
|
|
|
|
// reset();
|
|
|
|
const id = row.id || ids.value;
|
|
|
|
debugger;
|
|
|
|
router.push({
|
|
|
|
path: "AddParams",
|
|
|
|
query: {
|
|
|
|
id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
// 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>
|