2025-04-20 17:24:21 +08:00
|
|
|
const Panel_left = document.getElementById('leftPanel');
|
|
|
|
const Panel_right = document.getElementById('rightPanel');
|
|
|
|
|
2025-04-22 20:37:03 +08:00
|
|
|
function switchPanel() {
|
2025-04-20 17:24:21 +08:00
|
|
|
if (Panel_right.style.display === 'none' || Panel_right.style.display === '') {
|
|
|
|
Panel_left.style.display = 'none';
|
|
|
|
Panel_right.style.display = 'flex';
|
2025-04-22 20:37:03 +08:00
|
|
|
}
|
2025-04-20 17:24:21 +08:00
|
|
|
else {
|
|
|
|
Panel_left.style.display = 'flex';
|
|
|
|
Panel_right.style.display = 'none';
|
|
|
|
}
|
|
|
|
}
|