(containerId: string)
| 118 | * 数据加载完成后调用,清空骨架屏内容 |
| 119 | */ |
| 120 | export function hideSkeleton(containerId: string): void { |
| 121 | const el = document.getElementById(containerId); |
| 122 | if (el) { |
| 123 | el.innerHTML = ''; |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | // ==================== 模式配置 ==================== |
| 128 |
no outgoing calls
no test coverage detected