From 2dca6e3ff810622fad98ecd1ca394db552e104fe Mon Sep 17 00:00:00 2001
From: fengerli <528575642@qq.com>
Date: Tue, 7 Oct 2025 15:56:22 +0800
Subject: [PATCH] =?UTF-8?q?=E8=81=94=E8=B0=83=E4=B8=AD=E5=BF=83=EF=BC=8C?=
=?UTF-8?q?=E6=8E=A7=E5=88=B6=E8=AE=BE=E5=A4=87=E4=BB=85=E5=9C=A8=E7=BA=BF?=
=?UTF-8?q?=E7=8A=B6=E6=80=81=EF=BC=8C=E5=8F=91=E9=80=81=E6=8C=87=E4=BB=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/debugCenter/debugPanel/index.vue | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/src/views/debugCenter/debugPanel/index.vue b/src/views/debugCenter/debugPanel/index.vue
index 6c95584..19a864d 100644
--- a/src/views/debugCenter/debugPanel/index.vue
+++ b/src/views/debugCenter/debugPanel/index.vue
@@ -69,7 +69,7 @@
:data="List"
:height="Status.showSearch.length > 0 ? 'calc(100vh - 355px)' : 'calc(100vh - 255px)'"
>
-
+
@@ -337,6 +337,12 @@ function handleQuery() {
queryTime = setTimeout(getList, 500);
}
+const isSelectable = (row: any) => {
+ // 仅当在线状态(onlineStatus == 1)时允许选中
+ return row.onlineStatus === 1;
+}
+
+
function getList() {
Status.loading = true;
api
@@ -1079,4 +1085,13 @@ onMounted(() => {
.SingEditContent .item .imgContent:hover .opt {
display: block !important;
}
+
+.green {
+ color: rgba(0, 165, 82, 1);
+}
+
+.red {
+ color: rgba(224, 52, 52, 1);
+}
+