()
| 22 | } |
| 23 | |
| 24 | initUI() { |
| 25 | // 状态指示器 |
| 26 | this.statusElement = this.createStatusIndicator(); |
| 27 | this.overlay.appendChild(this.statusElement); |
| 28 | |
| 29 | // 进度条 |
| 30 | this.progressElement = this.createProgressBars(); |
| 31 | this.overlay.appendChild(this.progressElement); |
| 32 | |
| 33 | // 数据面板 |
| 34 | this.dataPanel = this.createDataPanel(); |
| 35 | this.overlay.appendChild(this.dataPanel); |
| 36 | } |
| 37 | |
| 38 | createStatusIndicator() { |
| 39 | const status = document.createElement('div'); |
no test coverage detected