From 7415c51f9c6af25090566dbcba1c3897e9094179 Mon Sep 17 00:00:00 2001 From: betaqi <3188864257@qq.com> Date: Thu, 18 Dec 2025 17:39:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/engineering/components/category-point-drawer.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/views/engineering/components/category-point-drawer.vue b/src/views/engineering/components/category-point-drawer.vue index c69e0de..7e71224 100644 --- a/src/views/engineering/components/category-point-drawer.vue +++ b/src/views/engineering/components/category-point-drawer.vue @@ -74,7 +74,6 @@ const computedColDefs = computed(() => { sortable: true, } - // Hex sorting for Point Address and Function Code if (header === '点位地址' || header === '功能码') { def.comparator = (valueA: string, valueB: string) => { const numA = parseInt(valueA, 16) || 0 @@ -83,7 +82,6 @@ const computedColDefs = computed(() => { } } - // Numeric sorting for Count and Period if (header === '点数量' || header === '点读取周期ms') { def.comparator = (valueA: string, valueB: string) => { const numA = parseFloat(valueA) || 0 @@ -95,8 +93,6 @@ const computedColDefs = computed(() => { return def }) - console.log(colDefs) - return colDefs })