From d2e91eb565d83b015a39b624eae8cc5341407226 Mon Sep 17 00:00:00 2001 From: xiaosi <2652281683@qq.com> Date: Fri, 28 Aug 2026 17:23:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=93=8D=E4=BD=9C=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E6=8E=A7=E4=BB=B6=E5=88=87=E6=8D=A2=E5=88=B0?= =?UTF-8?q?=20TDesign?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../OperationLogsView/OperationLogsView.vue | 42 +++++++++++++++---- 1 file changed, 34 insertions(+), 8 deletions(-) diff --git a/src/views/OperationLogsView/OperationLogsView.vue b/src/views/OperationLogsView/OperationLogsView.vue index 07d49f7..eacdb29 100644 --- a/src/views/OperationLogsView/OperationLogsView.vue +++ b/src/views/OperationLogsView/OperationLogsView.vue @@ -10,15 +10,19 @@
- +
- +
@@ -75,6 +79,14 @@ const pages = ref(1) const keyword = ref('') const statusFilter = ref('') +const statusFilterOptions = [ + { label: '全部状态', value: '' }, + { label: '已下发', value: 'sent' }, + { label: '已确认', value: 'acked' }, + { label: '已超时', value: 'timeout' }, + { label: '执行失败', value: 'terminal' } +] + const COMMAND_NAMES = { 'dock.open': '打开舱门', 'dock.close': '关闭舱门', @@ -158,3 +170,17 @@ function goPage(p) { onMounted(load) + +