()
| 1498 | |
| 1499 | // 批量刷新Token |
| 1500 | async function handleBatchRefresh() { |
| 1501 | const count = getEffectiveCount(); |
| 1502 | if (count === 0 || isBatchRefreshing) return; |
| 1503 | |
| 1504 | const confirmed = await confirm(`确定要刷新选中的 ${count} 个账号的Token吗?`); |
| 1505 | if (!confirmed) return; |
| 1506 | |
| 1507 | await runBatchRefreshTask(buildBatchPayload(), count, '批量刷新'); |
| 1508 | } |
| 1509 | |
| 1510 | // 批量验证Token |
| 1511 | async function handleBatchValidate() { |
nothing calls this directly
no test coverage detected