From 1c9b41da97f6356b360da363870e0b1c4c5359c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Fri, 16 Jan 2026 02:25:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E8=87=AA=E5=B8=A6?= =?UTF-8?q?=E9=95=9C=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/views/environment/GoView.vue | 20 ++++++++++----- web/src/views/environment/NodejsView.vue | 25 +++++++++++++------ web/src/views/environment/PythonView.vue | 31 +++++++++++++++++------- 3 files changed, 54 insertions(+), 22 deletions(-) diff --git a/web/src/views/environment/GoView.vue b/web/src/views/environment/GoView.vue index 00e5eaca..d7bd1f71 100644 --- a/web/src/views/environment/GoView.vue +++ b/web/src/views/environment/GoView.vue @@ -15,8 +15,14 @@ const proxyLoading = ref(false) const proxyOptions = [ { label: $gettext('Official (proxy.golang.org)'), value: 'https://proxy.golang.org,direct' }, { label: $gettext('China - Qiniu (goproxy.cn)'), value: 'https://goproxy.cn,direct' }, - { label: $gettext('China - Alibaba (mirrors.aliyun.com)'), value: 'https://mirrors.aliyun.com/goproxy/,direct' }, - { label: $gettext('China - Tencent (mirrors.cloud.tencent.com)'), value: 'https://mirrors.cloud.tencent.com/go/,direct' } + { + label: $gettext('China - Alibaba (mirrors.aliyun.com)'), + value: 'https://mirrors.aliyun.com/goproxy/,direct' + }, + { + label: $gettext('China - Tencent (mirrors.tencent.com)'), + value: 'https://mirrors.tencent.com/go/,direct' + } ] // 获取当前代理设置 @@ -52,9 +58,7 @@ const handleSaveProxy = async () => { - +