* 删除图片服务商
(name: string)
| 461 | * 删除图片服务商 |
| 462 | */ |
| 463 | async function deleteImageProvider(name: string) { |
| 464 | if (confirm(`确定要删除服务商 "${name}" 吗?`)) { |
| 465 | delete imageConfig.value.providers[name] |
| 466 | if (imageConfig.value.active_provider === name) { |
| 467 | imageConfig.value.active_provider = '' |
| 468 | } |
| 469 | await autoSaveConfig() |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | /** |
| 474 | * 测试图片服务商连接(弹窗中) |
nothing calls this directly
no test coverage detected