feat: 新功能开发,设备告警信息、设备实时数据查看等。

This commit is contained in:
tianyongbao
2025-10-30 11:21:52 +08:00
parent cae0ff5d1e
commit 24cdc18b8a
32 changed files with 1720 additions and 25 deletions

View File

@@ -235,7 +235,7 @@ const submitForm = () => {
/** 删除按钮操作 */
const handleDelete = async (row?: DeviceThresholdVO) => {
const _ids = row?.id || ids.value;
await proxy?.$modal.confirm('是否确认删除设备阈值编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
await proxy?.$modal.confirm('是否确认删除选中的数据项?').finally(() => (loading.value = false));
await delDeviceThreshold(_ids);
proxy?.$modal.msgSuccess('删除成功');
await getList();