()
| 2027 | |
| 2028 | // 开始账号列表轮询 |
| 2029 | function startAccountsPolling() { |
| 2030 | // 每30秒刷新一次账号列表 |
| 2031 | accountsPollingInterval = setInterval(() => { |
| 2032 | loadRecentAccounts(); |
| 2033 | }, 30000); |
| 2034 | } |
| 2035 | |
| 2036 | function renderTodayStats(total, success, failed, rate) { |
| 2037 | if (elements.todayStatsTotal) { |
no test coverage detected