设备数据优化

This commit is contained in:
ChenYi 2025-08-01 17:36:42 +08:00
parent b501552616
commit ed095728a4
7 changed files with 396 additions and 49 deletions

View File

@ -154,7 +154,7 @@ const handleMenuClick = (e: any) => {
</template> </template>
</Space> </Space>
<Dropdown v-if="getDropdownList.length > 0" :trigger="['hover']"> <Dropdown v-if="getDropdownList.length > 0" :trigger="['click']">
<slot name="more"> <slot name="more">
<Button size="small" type="link"> <Button size="small" type="link">
<template #icon> <template #icon>

View File

@ -223,7 +223,10 @@
"FormattedTimestamps": "Formatted Timestamps", "FormattedTimestamps": "Formatted Timestamps",
"DevicePath": "DevicePath", "DevicePath": "DevicePath",
"DeviceAddress": "Device Address", "DeviceAddress": "Device Address",
"CacheRefresh": "Cache Refresh" "CacheRefresh": "Cache Refresh",
"TelemetryLog": "Telemetry Log",
"PlatformLog": "Platform Log",
"Command": "Command"
}, },
"CTWingLog": { "CTWingLog": {
"PlatformTenantId": "PlatformTenantId", "PlatformTenantId": "PlatformTenantId",

View File

@ -223,7 +223,10 @@
"FormattedTimestamps": "本地时间", "FormattedTimestamps": "本地时间",
"DevicePath": "设备路径", "DevicePath": "设备路径",
"DeviceAddress": "设备地址", "DeviceAddress": "设备地址",
"CacheRefresh": "缓存刷新" "CacheRefresh": "缓存刷新",
"TelemetryLog": "遥测日志",
"PlatformLog": "平台日志",
"Command": "指令"
}, },
"CTWingLog": { "CTWingLog": {
"PlatformTenantId": "物联网平台租户Id", "PlatformTenantId": "物联网平台租户Id",

View File

@ -7,8 +7,13 @@ import { useRouter } from 'vue-router';
import { Page, useVbenModal } from '@vben/common-ui'; import { Page, useVbenModal } from '@vben/common-ui';
import { message as Message, Modal, Tag } from 'ant-design-vue'; import {
import { Loading } from '#/components/Loading'; Button,
message as Message,
Modal,
Popover,
Tag,
} from 'ant-design-vue';
import { useVbenForm } from '#/adapter/form'; import { useVbenForm } from '#/adapter/form';
import { useVbenVxeGrid } from '#/adapter/vxe-table'; import { useVbenVxeGrid } from '#/adapter/vxe-table';
@ -18,11 +23,14 @@ import {
postDeviceInfoCacheDeviceDataToRedis, postDeviceInfoCacheDeviceDataToRedis,
postDeviceInfoPage, postDeviceInfoPage,
} from '#/api-client'; } from '#/api-client';
import { Icon } from '#/components/icon';
import { Loading } from '#/components/Loading';
import { TableAction } from '#/components/table-action'; import { TableAction } from '#/components/table-action';
import { $t } from '#/locales'; import { $t } from '#/locales';
import { import {
addDeviceFormSchema, addDeviceFormSchema,
commandFormSchema,
editDeviceFormSchemaEdit, editDeviceFormSchemaEdit,
querySchema, querySchema,
tableSchema, tableSchema,
@ -72,6 +80,7 @@ const [Grid, gridApi] = useVbenVxeGrid({ formOptions, gridOptions });
const editRow: Record<string, any> = ref({}); const editRow: Record<string, any> = ref({});
const cacheRefreshLoading = ref(false); const cacheRefreshLoading = ref(false);
const pageLoading = ref(false); const pageLoading = ref(false);
const commandRow: Record<string, any> = ref({});
const [UserModal, userModalApi] = useVbenModal({ const [UserModal, userModalApi] = useVbenModal({
draggable: true, draggable: true,
onConfirm: submit, onConfirm: submit,
@ -81,6 +90,15 @@ const [UserModal, userModalApi] = useVbenModal({
}, },
}); });
const [CommandModal, commandModalApi] = useVbenModal({
draggable: true,
onConfirm: submitCommand,
onBeforeClose: () => {
commandRow.value = {};
return true;
},
});
const [AddForm, addFormApi] = useVbenForm({ const [AddForm, addFormApi] = useVbenForm({
// //
collapsed: false, collapsed: false,
@ -116,6 +134,22 @@ const [EditForm, editFormApi] = useVbenForm({
wrapperClass: 'grid-cols-2', wrapperClass: 'grid-cols-2',
}); });
const [CommandForm, commandFormApi] = useVbenForm({
//
collapsed: false,
//
commonConfig: {
labelWidth: 110,
componentProps: {
class: 'w-full',
},
},
layout: 'horizontal',
schema: commandFormSchema.value,
showCollapseButton: false,
showDefaultActions: false,
});
// //
async function submit() { async function submit() {
const isEdit = !!editRow.value.id; const isEdit = !!editRow.value.id;
@ -235,6 +269,7 @@ const toDeviceInfoData = (row: Record<string, any>) => {
path: '/iotdbdatamanagement/deviceData', path: '/iotdbdatamanagement/deviceData',
query: { query: {
DeviceAddress: row.deviceAddress, DeviceAddress: row.deviceAddress,
IoTDataType: 'Data',
}, },
}); });
}; };
@ -259,11 +294,51 @@ const toDeviceLog = (row: Record<string, any>) => {
}); });
} }
}; };
const toTelemetryLog = (row: Record<string, any>) => {
//
router.push({
path: '/iotdbdatamanagement/telemetryLog',
query: {
DeviceAddress: row.deviceAddress,
},
});
};
const openAddModal = async () => { const openAddModal = async () => {
editRow.value = {}; editRow.value = {};
userModalApi.open(); userModalApi.open();
}; };
const openCommandModal = (row: Record<string, any>) => {
commandRow.value = row;
commandModalApi.open();
};
//
async function submitCommand() {
const { valid } = await commandFormApi.validate();
if (!valid) return;
const formValues = await commandFormApi.getValues();
try {
commandModalApi.setState({ loading: true, confirmLoading: true });
// TODO:
console.log('指令内容:', formValues.command);
console.log('设备信息:', commandRow.value);
Message.success($t('common.operationSuccess'));
commandModalApi.close();
commandRow.value = {};
} catch (error) {
console.error('指令发送失败:', error);
Message.error($t('common.operationFailed'));
} finally {
commandModalApi.setState({ loading: false, confirmLoading: false });
}
}
// //
const handleCacheRefresh = async () => { const handleCacheRefresh = async () => {
if (cacheRefreshLoading.value) return; // if (cacheRefreshLoading.value) return; //
@ -364,44 +439,53 @@ const toolbarActions = computed(() => [
</template> </template>
<template #action="{ row }"> <template #action="{ row }">
<TableAction :actions="[ <div style="display: flex; gap: 8px; align-items: center">
{ <Button size="small" type="link" @click="onEdit.bind(null, row)()">
label: $t('common.edit'), {{ $t('common.edit') }}
type: 'link', </Button>
size: 'small', <Button size="small" type="link" @click="toDeviceInfoData.bind(null, row)()">
auth: ['AbpIdentity.Users.Update'], {{ $t('abp.deviceInfos.viewData') }}
onClick: onEdit.bind(null, row), </Button>
}, <Button size="small" type="link" @click="openCommandModal.bind(null, row)()">
{ {{ $t('abp.IoTDBBase.Command') }}
label: $t('abp.deviceInfos.viewData'), </Button>
type: 'link', <Popover trigger="hover" placement="bottomRight" :overlay-style="{ minWidth: '120px' }">
size: 'small', <template #content>
auth: ['AbpIdentity.Users.Update'], <div style="display: flex; flex-direction: column; gap: 4px">
onClick: toDeviceInfoData.bind(null, row), <Button type="text" size="small" @click="toDeviceLog.bind(null, row)()"
}, style=" padding: 4px 8px;text-align: left">
{ {{ $t('abp.IoTDBBase.PlatformLog') }}
label: $t('abp.log.title'), </Button>
type: 'link', <Button type="text" size="small" @click="toTelemetryLog.bind(null, row)()"
size: 'small', style=" padding: 4px 8px;text-align: left">
auth: ['AbpIdentity.Users.Update'], {{ $t('abp.IoTDBBase.TelemetryLog') }}
onClick: toDeviceLog.bind(null, row), </Button>
}, <Button type="text" size="small" @click="
]" :drop-down-actions="[ () => {
{ Modal.confirm({
label: $t('common.delete'),
icon: 'ant-design:delete-outlined',
type: 'primary',
auth: ['AbpIdentity.Users.Delete'],
popConfirm: {
title: $t('common.askConfirmDelete'), title: $t('common.askConfirmDelete'),
confirm: onDel.bind(null, row), onOk: () => onDel(row),
}, });
}, }
]" /> " style=" padding: 4px 8px; color: #ff4d4f;text-align: left">
{{ $t('common.delete') }}
</Button>
</div>
</template>
<Button size="small" type="link">
<template #icon>
<Icon icon="ant-design:more-outlined" />
</template>
</Button>
</Popover>
</div>
</template> </template>
</Grid> </Grid>
<UserModal :title="editRow.id ? $t('common.edit') : $t('common.add')" class="w-[800px]"> <UserModal :title="editRow.id ? $t('common.edit') : $t('common.add')" class="w-[800px]">
<component :is="editRow.id ? EditForm : AddForm" /> <component :is="editRow.id ? EditForm : AddForm" />
</UserModal> </UserModal>
<CommandModal :title="$t('abp.IoTDBBase.Command')" class="w-[600px]">
<CommandForm />
</CommandModal>
</Page> </Page>
</template> </template>

View File

@ -83,7 +83,7 @@ export const tableSchema: any = computed((): VxeGridProps['columns'] => [
title: $t('common.action'), title: $t('common.action'),
field: 'action', field: 'action',
fixed: 'right', fixed: 'right',
width: '165', width: '180',
slots: { default: 'action' }, slots: { default: 'action' },
}, },
]); ]);
@ -648,3 +648,20 @@ export const editDeviceFormSchemaEdit: any = computed(() => [
disabled: true, disabled: true,
}, },
]); ]);
export const commandFormSchema: any = computed(() => [
{
component: 'Textarea',
fieldName: 'command',
label: $t('abp.IoTDBBase.Command'),
componentProps: {
rows: 8,
placeholder: $t('common.pleaseInput') + $t('abp.IoTDBBase.Command'),
showCount: true,
maxLength: 1000,
},
rules: z.string().min(1, {
message: `${$t('common.pleaseInput')}${$t('abp.IoTDBBase.Command')}`,
}),
},
]);

View File

@ -2,24 +2,149 @@
import type { VbenFormProps } from '#/adapter/form'; import type { VbenFormProps } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table'; import type { VxeGridProps } from '#/adapter/vxe-table';
import { h } from 'vue'; import { h, ref, watch, onMounted } from 'vue';
import { useRoute } from 'vue-router';
import { Page } from '@vben/common-ui'; import { Page } from '@vben/common-ui';
import { Tag } from 'ant-design-vue'; import { Tag } from 'ant-design-vue';
import { useVbenVxeGrid } from '#/adapter/vxe-table'; import { useVbenVxeGrid } from '#/adapter/vxe-table';
import { postTableModelPacketInfoPage } from '#/api-client'; import { postTableModelPacketInfoPage, postDeviceInfoPage } from '#/api-client';
import { $t } from '#/locales'; import { $t } from '#/locales';
import DeviceSelect from '../deviceData/DeviceSelect.vue';
import { querySchema, tableSchema } from './schema'; import { querySchema, tableSchema } from './schema';
defineOptions({ defineOptions({
name: 'CollectionLog', name: 'CollectionLog',
}); });
const route = useRoute();
const { DeviceAddress } = route.query;
//
const isInitializing = ref(false);
//
const deviceSelectRef = ref();
//
const selectedDeviceInfo = ref<any>(null);
//
const deviceOptions = ref<any[]>();
//
const fetchDeviceOptions = async () => {
try {
const { data } = await postDeviceInfoPage({
body: {
pageIndex: 1,
pageSize: 1000,
},
});
if (data?.items) {
deviceOptions.value = data.items;
}
} catch (error) {
console.error('获取设备信息失败:', error);
}
};
//
const getDeviceInfoByAddress = (deviceAddress: string) => {
if (!deviceAddress || !deviceOptions.value || deviceOptions.value.length === 0) {
return null;
}
const device = deviceOptions.value.find((device) => device.deviceAddress === deviceAddress);
return device;
};
const formOptions: VbenFormProps = { const formOptions: VbenFormProps = {
schema: querySchema.value, schema: querySchema.value,
initialValues: {
DeviceAddress: DeviceAddress as string,
},
// 使
submitOnChange: false,
//
handleValuesChange: async (values, changedFields) => {
//
if (isInitializing.value) {
return;
}
// DeviceAddress selectedDeviceInfo
if (changedFields.includes('DeviceAddress')) {
const deviceAddress = values.DeviceAddress;
if (deviceAddress) {
// deviceOptions
let device =
deviceOptions.value.length > 0
? deviceOptions.value.find((d) => d.deviceAddress === deviceAddress)
: null;
// DeviceSelect
if (!device && gridApi?.formApi) {
try {
// DeviceSelect
const deviceSelectRef =
gridApi.formApi.getFieldComponentRef('DeviceAddress');
if (deviceSelectRef && deviceSelectRef.getSelectedDevice) {
device = deviceSelectRef.getSelectedDevice();
}
} catch {
//
}
}
if (device) {
selectedDeviceInfo.value = device;
} else {
//
setTimeout(() => {
try {
const deviceSelectRef =
gridApi.formApi.getFieldComponentRef('DeviceAddress');
if (deviceSelectRef && deviceSelectRef.getSelectedDevice) {
const delayedDevice = deviceSelectRef.getSelectedDevice();
if (delayedDevice) {
selectedDeviceInfo.value = delayedDevice;
}
}
} catch {
//
}
}, 100);
}
} else {
selectedDeviceInfo.value = null;
}
}
//
const relevantFields = new Set([
'DeviceAddress',
'focusAddress',
'meterAddress',
]);
const hasRelevantChange = changedFields.some((field) =>
relevantFields.has(field),
);
if (hasRelevantChange) {
// 使 setTimeout
setTimeout(async () => {
const latestValues = await gridApi.formApi.getValues();
gridApi.reload(latestValues);
}, 0);
}
},
}; };
const gridOptions: VxeGridProps<any> = { const gridOptions: VxeGridProps<any> = {
checkboxConfig: { checkboxConfig: {
@ -39,12 +164,39 @@ const gridOptions: VxeGridProps<any> = {
proxyConfig: { proxyConfig: {
ajax: { ajax: {
query: async ({ page }, formValues) => { query: async ({ page }, formValues) => {
const { data } = await postTableModelPacketInfoPage({ // API
body: { const currentFormValues = gridApi?.formApi ? await gridApi.formApi.getValues() : {};
...formValues,
// DeviceAddress使
if (!currentFormValues.DeviceAddress && DeviceAddress) {
currentFormValues.DeviceAddress = DeviceAddress as string;
}
//
let deviceAddress = currentFormValues.DeviceAddress || '';
// 使
const deviceInfo =
selectedDeviceInfo.value ||
(deviceAddress && deviceOptions.value.length > 0
? getDeviceInfoByAddress(deviceAddress)
: null);
if (deviceInfo) {
deviceAddress = deviceInfo.deviceAddress || deviceAddress;
}
//
const queryParams = {
pageIndex: page.currentPage, pageIndex: page.currentPage,
pageSize: page.pageSize, pageSize: page.pageSize,
}, DeviceAddress: deviceAddress,
focusAddress: currentFormValues.focusAddress || '',
meterAddress: currentFormValues.meterAddress || '',
};
const { data } = await postTableModelPacketInfoPage({
body: queryParams,
}); });
return data; return data;
}, },
@ -52,12 +204,91 @@ const gridOptions: VxeGridProps<any> = {
}, },
}; };
const [Grid] = useVbenVxeGrid({ formOptions, gridOptions }); const [Grid, gridApi] = useVbenVxeGrid({ formOptions, gridOptions });
//
const initializeGrid = async () => {
try {
//
isInitializing.value = true;
//
await fetchDeviceOptions();
//
if (DeviceAddress) {
//
setTimeout(async () => {
if (gridApi && gridApi.formApi) {
//
const currentValues = await gridApi.formApi.getValues();
if (!currentValues.DeviceAddress && DeviceAddress) {
await gridApi.formApi.setValues({
...currentValues,
DeviceAddress: DeviceAddress as string,
});
}
//
setTimeout(() => {
isInitializing.value = false;
gridApi.reload();
}, 200);
} else {
isInitializing.value = false;
}
}, 300);
} else {
//
isInitializing.value = false;
}
} catch (error) {
console.error('初始化表格失败:', error);
isInitializing.value = false;
}
};
//
watch(
() => gridApi?.pagerApi?.pageSize,
async (newSize, oldSize) => {
if (newSize !== oldSize && oldSize && !isInitializing.value) {
//
gridApi.pagerApi.currentPage = 1;
//
const latestValues = await gridApi.formApi.getValues();
gridApi.reload(latestValues);
}
},
);
//
watch(
() => gridApi?.pagerApi?.currentPage,
async (newPage, oldPage) => {
if (newPage !== oldPage && oldPage && !isInitializing.value) {
//
const latestValues = await gridApi.formApi.getValues();
gridApi.reload(latestValues);
}
},
);
//
onMounted(async () => {
// VXE
setTimeout(async () => {
await initializeGrid();
}, 100);
});
</script> </script>
<template> <template>
<Page auto-content-height> <Page auto-content-height>
<Grid> <Grid>
<template #DeviceAddress="{ model, field }">
<DeviceSelect ref="deviceSelectRef" v-model:value="model[field]"
:placeholder="$t('common.pleaseSelect') + $t('abp.log.deviceInfo')" allow-clear />
</template>
<template #ismanualOrNot="{ row }"> <template #ismanualOrNot="{ row }">
<component :is="h(Tag, { color: row.manualOrNot ? 'green' : 'red' }, () => <component :is="h(Tag, { color: row.manualOrNot ? 'green' : 'red' }, () =>
row.manualOrNot ? $t('common.yes') : $t('common.no'), row.manualOrNot ? $t('common.yes') : $t('common.no'),

View File

@ -5,6 +5,15 @@ import { computed } from 'vue';
import { $t } from '#/locales'; import { $t } from '#/locales';
export const querySchema = computed(() => [ export const querySchema = computed(() => [
{
component: 'DeviceSelect',
fieldName: 'DeviceAddress',
label: $t('abp.log.deviceInfo'),
componentProps: {
placeholder: $t('common.pleaseSelect') + $t('abp.log.deviceInfo'),
allowClear: true,
},
},
{ {
component: 'Input', component: 'Input',
fieldName: 'focusAddress', fieldName: 'focusAddress',