From b9f35ae15201f2b391e04b23c9dceb935a701d7c Mon Sep 17 00:00:00 2001 From: guoapeng Date: Fri, 13 Jun 2025 20:08:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=AE=B9=E5=99=A8=E7=8A=B6=E6=80=81?= 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 6bcda00..21aa06f 100644 --- a/src/layouts/default.vue +++ b/src/layouts/default.vue @@ -130,6 +130,15 @@ const commandHandle = async (command: string, params?: unknown) => { } const editDateVisible = ref(false) + +const containerStatus = computed(() => { + const empty = systemStore.systemStatus.solutionModule.solutionContainer.find(item => item.empty) + if (empty) { + return 'empty' + } + return 'full' + // return 'empty' +})