diff --git a/check_tip.h264 b/check_tip.h264 deleted file mode 100644 index 6e4c3a5..0000000 Binary files a/check_tip.h264 and /dev/null differ diff --git a/deploy/easyvqd/package.json b/deploy/easyvqd/package.json index 229d9d4..ed04c4a 100644 --- a/deploy/easyvqd/package.json +++ b/deploy/easyvqd/package.json @@ -19,7 +19,7 @@ "homepage": "EasyVQD.html", "icon": "EasyVQD.ico", "updated_at": "2025-12-26", - "version": "v0.0.10", + "version": "v0.0.11", "website": "https://www.tsingsee.com", "activation": "service", "status": "" diff --git a/web/src/components/VqdAlarm.tsx b/web/src/components/VqdAlarm.tsx index a82c8ea..5608f86 100644 --- a/web/src/components/VqdAlarm.tsx +++ b/web/src/components/VqdAlarm.tsx @@ -288,7 +288,7 @@ export default function VqdAlarmPage() {
-
+
{ @@ -299,8 +299,11 @@ export default function VqdAlarmPage() { }) } -
- 通道名称: {item.channel_name}({item.channel_id}) +
+ 通道名称: {item.channel_name||"-"} +
+
+ 通道编码: {item.channel_id}
检出时间: {item.created_at} diff --git a/web/src/components/VqdTask.tsx b/web/src/components/VqdTask.tsx index c0db1ce..643a873 100644 --- a/web/src/components/VqdTask.tsx +++ b/web/src/components/VqdTask.tsx @@ -108,6 +108,11 @@ export default function VqdTaskPage() { }; // 表格列定义 const columns: ColumnsType = [ + { + title: "ID", + dataIndex: "id", + align: "center", + }, { title: "诊断任务", dataIndex: "name", @@ -119,7 +124,7 @@ export default function VqdTaskPage() { align: "center", render: (text, record) => ( - {text||record.channel_id} + {`${text}(${record.channel_id})`} ), }, diff --git a/web/src/output.css b/web/src/output.css index 6d0141d..055f5f4 100644 --- a/web/src/output.css +++ b/web/src/output.css @@ -523,6 +523,11 @@ line-height: 1.25rem; } +.text-sm-1 { + font-size: 0.81rem; + line-height: 1rem; +} + .text-xs { font-size: 0.75rem; line-height: 1rem;