* 隐藏加载动画
()
| 39 | * 隐藏加载动画 |
| 40 | */ |
| 41 | function hideLoadingAnimation() { |
| 42 | console.log('隐藏加载动画'); |
| 43 | const overlay = document.getElementById('loadingOverlay'); |
| 44 | if (overlay) { |
| 45 | overlay.classList.add('hide'); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // 检查设备连接状态 |
| 50 | async function checkDeviceStatus() { |
no test coverage detected