fix: console.error

This commit is contained in:
yangsy
2025-09-15 11:12:38 +08:00
parent dacac54a20
commit a1251e6d1f
10 changed files with 24 additions and 4 deletions

View File

@@ -88,7 +88,7 @@ const { mutate: getDeviceAlarmLogList, isPending } = useMutation({
tableData.value = records;
},
onError: (error) => {
console.error(`查询${ndmDevice.value.name}告警数据失败:`, error);
console.error(error);
window.$message.error(error.message);
},
});