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