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);
+}
+