463 lines
12 KiB
Vue
463 lines
12 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form
|
|
v-show="showSearch"
|
|
ref="queryRef"
|
|
:inline="true"
|
|
:model="queryParams"
|
|
label-position="left"
|
|
label-width="100px"
|
|
>
|
|
<el-form-item label="设备分组名称" prop="groupName">
|
|
<el-input
|
|
v-model="queryParams.groupName"
|
|
clearable
|
|
placeholder="请输入设备分组名称"
|
|
@keyup.enter="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="排序" prop="sort">-->
|
|
<!-- <el-input-->
|
|
<!-- v-model="queryParams.sort"-->
|
|
<!-- clearable-->
|
|
<!-- placeholder="请输入排序"-->
|
|
<!-- @keyup.enter="handleQuery"-->
|
|
<!-- />-->
|
|
<!-- </el-form-item>-->
|
|
<!-- <el-form-item label="租户ID" prop="tenantId">-->
|
|
<!-- <el-input-->
|
|
<!-- v-model="queryParams.tenantId"-->
|
|
<!-- clearable-->
|
|
<!-- placeholder="请输入租户ID"-->
|
|
<!-- @keyup.enter="handleQuery"-->
|
|
<!-- />-->
|
|
<!-- </el-form-item>-->
|
|
<el-form-item>
|
|
<el-button icon="Search" type="primary" @click="handleQuery"
|
|
>搜索
|
|
</el-button>
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['device:group:add']"
|
|
icon="Plus"
|
|
plain
|
|
type="primary"
|
|
@click="handleAdd"
|
|
>新增
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['device:group:edit']"
|
|
:disabled="single"
|
|
icon="Edit"
|
|
plain
|
|
type="success"
|
|
@click="handleUpdate"
|
|
>修改
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['device:group:remove']"
|
|
:disabled="multiple"
|
|
icon="Delete"
|
|
plain
|
|
type="danger"
|
|
@click="handleDelete"
|
|
>删除
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['device:group:export']"
|
|
icon="Download"
|
|
plain
|
|
type="warning"
|
|
@click="handleExport"
|
|
>导出
|
|
</el-button>
|
|
</el-col>
|
|
<right-toolbar
|
|
v-model:showSearch="showSearch"
|
|
@queryTable="getList"
|
|
></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="groupList"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column align="center" type="selection" width="55" />
|
|
<el-table-column align="center" label="设备分组ID" prop="groupId" />
|
|
<el-table-column align="center" label="设备分组名称" prop="groupName" />
|
|
<!-- <el-table-column align="center" label="排序" prop="sort" />-->
|
|
<el-table-column align="center" label="备注" prop="remark" />
|
|
<el-table-column align="center" label="状态" prop="status">
|
|
<template #default="{ row }">
|
|
<dict-tag
|
|
:options="deviceGroupStatusDict"
|
|
:value="[row.status]"
|
|
effect="dark"
|
|
size="small"
|
|
/>
|
|
</template>
|
|
</el-table-column>
|
|
<!-- <el-table-column align="center" label="租户ID" prop="tenantId" />-->
|
|
<el-table-column
|
|
align="center"
|
|
class-name="small-padding fixed-width"
|
|
label="操作"
|
|
>
|
|
<template #default="{ row }">
|
|
<el-button
|
|
v-hasPermi="['device:group:edit']"
|
|
icon="Edit"
|
|
link
|
|
type="primary"
|
|
@click="handleUpdate(row)"
|
|
>修改
|
|
</el-button>
|
|
<el-button
|
|
v-hasPermi="['device:group:remove']"
|
|
icon="Delete"
|
|
link
|
|
type="primary"
|
|
@click="handleDelete(row)"
|
|
>删除
|
|
</el-button>
|
|
<el-button
|
|
icon="pointer"
|
|
link
|
|
type="primary"
|
|
@click="
|
|
() => {
|
|
activeGroupId = row.groupId;
|
|
showSelectDevice = true;
|
|
}
|
|
"
|
|
>分配设备
|
|
</el-button>
|
|
<el-button
|
|
icon="list"
|
|
link
|
|
type="primary"
|
|
@click="
|
|
() => {
|
|
activeGroupId = row.groupId;
|
|
showAssignedDevice = true;
|
|
}
|
|
"
|
|
>
|
|
已分配设备
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 已分配设备列表-->
|
|
<table-select
|
|
ref="assignedDeviceRef"
|
|
v-model="showAssignedDevice"
|
|
:request-method="listAssignedDevice(activeGroupId)"
|
|
:table-struct="[
|
|
{
|
|
label: 'ID',
|
|
prop: 'deviceId',
|
|
},
|
|
{ label: '设备名称', prop: 'deviceName' },
|
|
{
|
|
label: '操作',
|
|
operate: [
|
|
{
|
|
label: '取消分配',
|
|
type: 'danger',
|
|
icon: 'delete',
|
|
onClick: async (row) => {
|
|
unAssignDevice(row.deviceId).then((resp) => {
|
|
ElMessage.success('已取消分配');
|
|
assignedDeviceRef.getList();
|
|
});
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]"
|
|
select-key="deviceId"
|
|
@confirm-select="confirmUnassignedDevice"
|
|
/>
|
|
|
|
<!-- 选择要分配的设备-->
|
|
<table-select
|
|
v-model="showSelectDevice"
|
|
:request-method="listUnassignedDevice(activeGroupId)"
|
|
:table-struct="[
|
|
{
|
|
label: 'ID',
|
|
prop: 'deviceId',
|
|
},
|
|
{
|
|
label: '设备名称',
|
|
prop: 'deviceName',
|
|
},
|
|
]"
|
|
select-key="deviceId"
|
|
@confirm-select="handleAssignDevice"
|
|
/>
|
|
|
|
<pagination
|
|
v-show="total > 0"
|
|
v-model:limit="queryParams.pageSize"
|
|
v-model:page="queryParams.pageNum"
|
|
:total="total"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改设备分组对话框 -->
|
|
<el-dialog v-model="open" :title="title" append-to-body width="500px">
|
|
<el-form
|
|
ref="groupRef"
|
|
:model="form"
|
|
:rules="rules"
|
|
label-position="left"
|
|
label-width="120px"
|
|
>
|
|
<el-form-item label="设备分组名称" prop="groupName">
|
|
<el-input v-model="form.groupName" placeholder="请输入设备分组名称" />
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input
|
|
v-model="form.remark"
|
|
placeholder="请输入内容"
|
|
type="textarea"
|
|
/>
|
|
</el-form-item>
|
|
<!-- <el-form-item label="租户ID" prop="tenantId">-->
|
|
<!-- <el-input v-model="form.tenantId" placeholder="请输入租户ID" />-->
|
|
<!-- </el-form-item>-->
|
|
</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 name="Group" setup>
|
|
import {
|
|
addGroup,
|
|
assignDevice,
|
|
delGroup,
|
|
getGroup,
|
|
listGroup,
|
|
unAssignDevice,
|
|
updateGroup,
|
|
} from "@/api/device/group";
|
|
import DictTag from "@/components/DictTag/index.vue";
|
|
import { deviceGroupStatusDict } from "@/constant/dict";
|
|
import { getCurrentInstance, reactive, ref, toRefs } from "vue";
|
|
import TableSelect from "@/components/TableSelect/index.vue";
|
|
import { listDevice } from "@/api/iot/device";
|
|
import { ElMessage } from "element-plus";
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
const groupList = 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 showAssignedDevice = ref(false); /*显示已分配的设备列表*/
|
|
const showSelectDevice = ref(false); /*显示选择设备窗口*/
|
|
const assignedDeviceRef = ref();
|
|
const activeGroupId = ref();
|
|
const data = reactive({
|
|
form: {},
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
groupName: null,
|
|
sort: null,
|
|
status: null,
|
|
tenantId: null,
|
|
},
|
|
rules: {
|
|
groupName: [
|
|
{
|
|
required: true,
|
|
message: "请输入分组名称",
|
|
trigger: "blur",
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
/** 查询设备分组列表 */
|
|
function getList() {
|
|
loading.value = true;
|
|
listGroup(queryParams.value).then((response) => {
|
|
groupList.value = response.rows;
|
|
total.value = response.total;
|
|
loading.value = false;
|
|
});
|
|
}
|
|
|
|
// 取消按钮
|
|
function cancel() {
|
|
open.value = false;
|
|
reset();
|
|
}
|
|
|
|
// 表单重置
|
|
function reset() {
|
|
form.value = {
|
|
groupId: null,
|
|
groupName: null,
|
|
sort: null,
|
|
remark: null,
|
|
createTime: null,
|
|
createBy: null,
|
|
status: null,
|
|
tenantId: null,
|
|
};
|
|
proxy.resetForm("groupRef");
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
function handleQuery() {
|
|
queryParams.value.pageNum = 1;
|
|
getList();
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
function resetQuery() {
|
|
proxy.resetForm("queryRef");
|
|
handleQuery();
|
|
}
|
|
|
|
// 多选框选中数据
|
|
function handleSelectionChange(selection) {
|
|
ids.value = selection.map((item) => item.groupId);
|
|
single.value = selection.length !== 1;
|
|
multiple.value = !selection.length;
|
|
}
|
|
|
|
/** 新增按钮操作 */
|
|
function handleAdd() {
|
|
reset();
|
|
open.value = true;
|
|
title.value = "添加设备分组";
|
|
}
|
|
|
|
/** 修改按钮操作 */
|
|
function handleUpdate(row) {
|
|
reset();
|
|
const _groupId = row.groupId || ids.value;
|
|
getGroup(_groupId).then((response) => {
|
|
form.value = response.data;
|
|
open.value = true;
|
|
title.value = "修改设备分组";
|
|
});
|
|
}
|
|
|
|
const listUnassignedDevice = (groupId) => (queryParams) =>
|
|
listDevice({
|
|
...queryParams,
|
|
searchValue: 1,
|
|
groupId,
|
|
});
|
|
|
|
const listAssignedDevice = (groupId) => (queryParams) =>
|
|
listDevice({
|
|
...queryParams,
|
|
groupId,
|
|
});
|
|
|
|
/*确认取消分配设备*/
|
|
const confirmUnassignedDevice = async (data) => {
|
|
if (data.length) {
|
|
const _ids = data.map((el) => el.deviceId).join(",");
|
|
await unAssignDevice(_ids);
|
|
showAssignedDevice.value = false;
|
|
ElMessage.success("取消分配设备成功");
|
|
} else {
|
|
ElMessage.error("清选择要取消分配的设备");
|
|
}
|
|
};
|
|
|
|
/** 提交按钮 */
|
|
function submitForm() {
|
|
proxy.$refs["groupRef"].validate((valid) => {
|
|
if (valid) {
|
|
if (form.value.groupId != null) {
|
|
updateGroup(form.value).then((response) => {
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
open.value = false;
|
|
getList();
|
|
});
|
|
} else {
|
|
addGroup(form.value).then((response) => {
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
open.value = false;
|
|
getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
function handleDelete(row) {
|
|
const _groupIds = row.groupId || ids.value;
|
|
proxy.$modal
|
|
.confirm('是否确认删除设备分组编号为"' + _groupIds + '"的数据项?')
|
|
.then(function () {
|
|
return delGroup(_groupIds);
|
|
})
|
|
.then(() => {
|
|
getList();
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
})
|
|
.catch(() => {});
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
function handleExport() {
|
|
proxy.download(
|
|
"device/group/export",
|
|
{
|
|
...queryParams.value,
|
|
},
|
|
`group_${new Date().getTime()}.xlsx`
|
|
);
|
|
}
|
|
|
|
const handleAssignDevice = async (data) => {
|
|
if (data.length) {
|
|
const _ids = data.map((el) => el.deviceId).join(",");
|
|
await assignDevice(activeGroupId.value, _ids);
|
|
ElMessage.success("成功");
|
|
showSelectDevice.value = false;
|
|
} else {
|
|
ElMessage.error("清选择要分配的设备");
|
|
}
|
|
};
|
|
|
|
getList();
|
|
</script>
|