perf: 对话式运行状态归6类

This commit is contained in:
rd
2025-08-27 12:04:23 +08:00
parent 4baf054d5c
commit 6e7bf7f9e4
6 changed files with 135 additions and 57 deletions

View File

@ -36,9 +36,9 @@ const showInOnePage = computed(() => {
const layoutPageClass = computed(() => {
let result = showInOnePage.value ? 'overflow-hidden' : '';
if (isHomeRoute.value) {
result += 'pb-8px pr-8px';
result += ' pb-8px pr-8px';
} else {
result += 'pb-24px pr-24px';
result += ' pb-24px pr-24px';
}
return result;
});