toast问题修复

This commit is contained in:
zhangguoping 2026-01-16 18:36:04 +08:00
parent fbe115c095
commit a829be47d5
1 changed files with 0 additions and 5 deletions

View File

@ -358,11 +358,6 @@
const toast = document.getElementById('toast'); const toast = document.getElementById('toast');
if (toast) { if (toast) {
toast.className = 'toast hide'; toast.className = 'toast hide';
// 动画结束后完全隐藏
setTimeout(() => {
toast.style.display = 'none';
}, 300);
} }
} }
}; };