From 3b1167057d8f132086817f36e200703541c298f0 Mon Sep 17 00:00:00 2001 From: guoapeng Date: Fri, 13 Jun 2025 19:46:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=B9=E5=99=A8=E4=BD=99=E9=87=8F?= =?UTF-8?q?=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/default.vue | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/layouts/default.vue b/src/layouts/default.vue index 71fcded..cc68c2c 100644 --- a/src/layouts/default.vue +++ b/src/layouts/default.vue @@ -92,6 +92,15 @@ const statusMap = { name: '指令执行异常', }, } + +const containerStatus = computed(() => { + const empty = systemStore.systemStatus.solutionModule.solutionContainer.find(item => item.empty) + if (empty) { + return 'empty' + } + return 'full' + // return 'empty' +})