fix: page

This commit is contained in:
2025-08-06 17:21:27 +08:00
parent 1cea3e0f42
commit 56fe2abbc4
6 changed files with 96 additions and 33 deletions

View File

@@ -309,11 +309,11 @@ class AppState {
if (tableView && cardView) {
if (mode === 'table') {
tableView.style.display = 'block';
tableView.style.display = 'flex';
cardView.style.display = 'none';
} else {
tableView.style.display = 'none';
cardView.style.display = 'grid';
cardView.style.display = 'block';
}
}
}