(id)
| 1019 | |
| 1020 | // 设为默认代理 |
| 1021 | async function handleSetProxyDefault(id) { |
| 1022 | try { |
| 1023 | await api.post(`/settings/proxies/${id}/set-default`); |
| 1024 | toast.success('已设为默认代理'); |
| 1025 | loadProxies(); |
| 1026 | } catch (error) { |
| 1027 | toast.error('操作失败: ' + error.message); |
| 1028 | } |
| 1029 | } |
| 1030 | |
| 1031 | // 打开代理模态框 |
| 1032 | function openProxyModal(proxy = null) { |
nothing calls this directly
no test coverage detected