You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

387 lines
15 KiB
Vue

<template>
<div class="p-2">
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
<div v-show="showSearch" class="mb-[10px]">
<el-card shadow="hover">
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
<el-form-item label="设备编号" prop="deviceCode">
<el-input v-model="queryParams.deviceCode" 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="deviceType">
<el-select v-model="queryParams.deviceType" placeholder="请选择设备类型" clearable>
<el-option v-for="dict in wcs_device_type" :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
</el-select>
</el-form-item>
<el-form-item label="设备状态" prop="deviceStatus">
<el-select v-model="queryParams.deviceStatus" placeholder="请选择设备状态" clearable>
<el-option v-for="dict in wcs_device_status" :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
</el-card>
</div>
</transition>
<el-card shadow="never">
<template #header>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['wcs:deviceInfo:add']">新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['wcs:deviceInfo:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['wcs:deviceInfo:remove']"
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['wcs:deviceInfo:export']">导出</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
</template>
<el-table v-loading="loading" border :data="deviceInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" align="center" type="index" width="60" />
<el-table-column label="设备编号" align="center" prop="deviceCode" />
<el-table-column label="设备名称" align="center" prop="deviceName" />
<el-table-column label="所属主机" align="center" prop="hostName" />
<el-table-column label="设备类型" align="center" prop="deviceType">
<template #default="scope">
<dict-tag :options="wcs_device_type" :value="scope.row.deviceType" />
</template>
</el-table-column>
<el-table-column label="设备状态" align="center" prop="deviceStatus">
<template #default="scope">
<dict-tag :options="wcs_device_status" :value="scope.row.deviceStatus" />
</template>
</el-table-column>
<el-table-column label="是否标识" align="center" prop="isFlag">
<template #default="scope">
<dict-tag :options="wcs_is_flag" :value="scope.row.isFlag" />
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="创建时间" align="center" prop="createTime" width="100">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="创建人" align="center" prop="createByName" width="100" />
<el-table-column label="更新人" align="center" prop="updateByName" width="100" />
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width" width="160">
<template #default="scope">
<el-tooltip content="明细" placement="top">
<el-button link type="primary" icon="Tickets" @click="handleDetail(scope.row)" v-hasPermi="['wcs:deviceParam:list']">明细</el-button>
</el-tooltip>
<el-tooltip content="修改" placement="top">
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['wcs:deviceInfo:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['wcs:deviceInfo:remove']"></el-button>
</el-tooltip>
</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-card>
<el-dialog :title="dialog.title" v-model="dialog.visible" width="550px" append-to-body>
<el-form ref="deviceInfoFormRef" :model="form" :rules="rules" label-width="80px">
<el-row :gutter="16">
<el-col :span="12">
<el-form-item label="设备编号" prop="deviceCode">
<el-input v-model="form.deviceCode" placeholder="请输入设备编号" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="设备名称" prop="deviceName">
<el-input v-model="form.deviceName" placeholder="请输入设备名称" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="所属主机" prop="hostCode">
<el-select v-model="form.hostCode" placeholder="请选择所属主机" clearable style="width: 100%">
<el-option v-for="item in hostList" :key="item.objId" :label="item.hostName" :value="item.hostCode" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="设备类型" prop="deviceType">
<el-select v-model="form.deviceType" placeholder="请选择设备类型" clearable style="width: 100%">
<el-option v-for="dict in wcs_device_type" :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="设备状态" prop="deviceStatus">
<el-select v-model="form.deviceStatus" placeholder="请选择设备状态" clearable style="width: 100%">
<el-option v-for="dict in wcs_device_status" :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="是否标识" prop="isFlag">
<el-radio-group v-model="form.isFlag">
<el-radio v-for="dict in wcs_is_flag" :key="dict.value" :value="parseInt(dict.value)">{{ dict.label }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入备注" />
</el-form-item>
</el-col>
</el-row>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</template>
</el-dialog>
<el-drawer v-model="detailDrawer.visible" :title="detailDrawer.title" size="68%" append-to-body>
<el-table v-loading="detailLoading" border :data="deviceParamDetailList" height="calc(100vh - 150px)">
<el-table-column label="序号" align="center" type="index" width="60" />
<el-table-column label="参数编号" align="center" prop="paramCode" min-width="120" />
<el-table-column label="参数名称" align="center" prop="paramName" min-width="120" />
<el-table-column label="参数地址" align="center" prop="paramAddress" min-width="120" />
<el-table-column label="参数类型" align="center" prop="paramType" width="100" />
<el-table-column label="操作类型" align="center" prop="operationType" width="100">
<template #default="scope">
<dict-tag :options="wcs_operation_type" :value="scope.row.operationType" />
</template>
</el-table-column>
<el-table-column label="操作频率(ms)" align="center" prop="operationFrequency" width="120" />
<el-table-column label="是否标识" align="center" prop="isFlag" width="90">
<template #default="scope">
<dict-tag :options="wcs_is_flag" :value="scope.row.isFlag" />
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" min-width="140" />
</el-table>
</el-drawer>
</div>
</template>
<script setup name="DeviceInfo" lang="ts">
import { listDeviceInfo, getDeviceInfo, delDeviceInfo, addDeviceInfo, updateDeviceInfo } from '@/api/wcs/deviceInfo';
import { getDeviceHostList } from '@/api/wcs/deviceHost';
import { listDeviceParam } from '@/api/wcs/deviceParam';
import { DeviceInfoVO, DeviceInfoQuery, DeviceInfoForm } from '@/api/wcs/deviceInfo/types';
import { DeviceHostVO } from '@/api/wcs/deviceHost/types';
import { DeviceParamVO } from '@/api/wcs/deviceParam/types';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { wcs_device_type, wcs_device_status, wcs_is_flag, wcs_operation_type } = toRefs<any>(
proxy?.useDict('wcs_device_type', 'wcs_device_status', 'wcs_is_flag', 'wcs_operation_type')
);
const deviceInfoList = ref<DeviceInfoVO[]>([]);
const hostList = ref<DeviceHostVO[]>([]);
const deviceParamDetailList = ref<DeviceParamVO[]>([]);
const buttonLoading = ref(false);
const loading = ref(true);
const detailLoading = ref(false);
const showSearch = ref(true);
const ids = ref<Array<string | number>>([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const queryFormRef = ref<ElFormInstance>();
const deviceInfoFormRef = ref<ElFormInstance>();
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
const detailDrawer = reactive<DialogOption>({
visible: false,
title: ''
});
const initFormData: DeviceInfoForm = {
objId: undefined,
deviceCode: undefined,
deviceName: undefined,
hostCode: undefined,
deviceType: 0,
deviceStatus: 0,
isFlag: 1,
remark: undefined
};
const data = reactive<PageData<DeviceInfoForm, DeviceInfoQuery>>({
form: { ...initFormData },
queryParams: {
pageNum: 1,
pageSize: 10,
deviceCode: undefined,
deviceName: undefined,
hostCode: undefined,
deviceType: undefined,
deviceStatus: undefined,
isFlag: undefined,
params: {}
},
rules: {
deviceCode: [{ required: true, message: '设备编号不能为空', trigger: 'blur' }]
}
});
const { queryParams, form, rules } = toRefs(data);
const getList = async () => {
loading.value = true;
try {
const res = await listDeviceInfo(queryParams.value);
deviceInfoList.value = res.rows;
total.value = res.total;
} finally {
loading.value = false;
}
};
const getHostList = async () => {
try {
// 下拉接口只需要筛选条件,不携带分页必填字段,避免为满足类型而使用 any。
const res = await getDeviceHostList({ params: {} });
hostList.value = res.data || [];
} catch {
proxy?.$modal.msgError('获取设备主机下拉列表失败');
}
};
const cancel = () => {
reset();
dialog.visible = false;
};
const reset = () => {
form.value = { ...initFormData, isFlag: 1, deviceType: 0, deviceStatus: 0 };
deviceInfoFormRef.value?.resetFields();
};
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
};
const resetQuery = () => {
queryFormRef.value?.resetFields();
handleQuery();
};
const handleSelectionChange = (selection: DeviceInfoVO[]) => {
ids.value = selection.map((item) => item.objId);
single.value = selection.length != 1;
multiple.value = !selection.length;
};
const handleAdd = () => {
reset();
getHostList();
dialog.visible = true;
dialog.title = '添加设备信息';
};
const handleUpdate = async (row?: DeviceInfoVO) => {
reset();
getHostList();
const _objId = row?.objId || ids.value[0];
const res = await getDeviceInfo(_objId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = '修改设备信息';
};
const handleDetail = async (row: DeviceInfoVO) => {
detailDrawer.visible = true;
detailDrawer.title = `设备参数 - ${row.deviceCode}`;
deviceParamDetailList.value = [];
detailLoading.value = true;
try {
const res = await listDeviceParam({
pageNum: 1,
pageSize: 999,
deviceCode: row.deviceCode,
params: {}
});
deviceParamDetailList.value = res.rows || [];
} finally {
detailLoading.value = false;
}
};
const buildSubmitData = (): DeviceInfoForm => ({
objId: form.value.objId,
deviceCode: form.value.deviceCode,
deviceName: form.value.deviceName,
hostCode: form.value.hostCode,
deviceType: form.value.deviceType,
deviceStatus: form.value.deviceStatus,
isFlag: form.value.isFlag,
remark: form.value.remark
});
const submitForm = () => {
deviceInfoFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
const submitData = buildSubmitData();
if (submitData.objId) {
await updateDeviceInfo(submitData).finally(() => (buttonLoading.value = false));
} else {
await addDeviceInfo(submitData).finally(() => (buttonLoading.value = false));
}
proxy?.$modal.msgSuccess('操作成功');
dialog.visible = false;
await getList();
}
});
};
const handleDelete = async (row?: DeviceInfoVO) => {
const _objIds = row?.objId || ids.value;
try {
await proxy?.$modal.confirm('是否确认删除设备信息编号为"' + _objIds + '"的数据项?');
await delDeviceInfo(_objIds);
proxy?.$modal.msgSuccess('删除成功');
await getList();
} catch (e) {
if (e !== 'cancel' && e !== 'close') {
proxy?.$modal.msgError('删除设备信息失败');
}
}
};
const handleExport = () => {
proxy?.download(
'wcs/deviceInfo/export',
{
...queryParams.value
},
`deviceInfo_${new Date().getTime()}.xlsx`
);
};
onMounted(() => {
getList();
});
</script>