完善设备操作界面

This commit is contained in:
ChenYi 2025-12-25 15:40:41 +08:00
parent 2ff8a447cf
commit b0760495ae

View File

@ -361,7 +361,7 @@ const commandTableColumns = computed(() => [
loading: record.loading,
onClick: () => sendCommand(record),
},
'发送指令',
{ default: () => '发送指令' },
),
h(
Button,
@ -370,7 +370,7 @@ const commandTableColumns = computed(() => [
loading: record.loading,
onClick: () => readData(record),
},
'抄读数据',
{ default: () => '抄读数据' },
),
],
);