From 717df6588a272fe017e40122a6047132ab3b1b56 Mon Sep 17 00:00:00 2001 From: li-xiaochen <397721316@qq.com> Date: Mon, 7 Jul 2025 20:39:35 +0800 Subject: [PATCH] =?UTF-8?q?=E7=95=8C=E9=9D=A2=E4=BC=98=E5=8C=96=EF=BC=9A?= =?UTF-8?q?=E5=B0=86=E9=95=9C=E5=83=8F=E6=BA=90=E9=80=89=E6=8B=A9=E5=99=A8?= =?UTF-8?q?=E4=BB=8E=E5=8D=95=E9=80=89=E6=8C=89=E9=92=AE=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/pages/Update.vue | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/ui/src/pages/Update.vue b/ui/src/pages/Update.vue index c828935..483bae7 100644 --- a/ui/src/pages/Update.vue +++ b/ui/src/pages/Update.vue @@ -20,6 +20,28 @@ const steps = computed(() => [ cwd: 'mower-ng' } ]) +const mirror_options = [ + { + label: 'PyPI', + value: 'pypi', + }, + { + label: '阿里云镜像源', + value: 'aliyun', + }, + { + label: '上海交通大学镜像源', + value: 'sjtu', + }, + { + label: '清华大学镜像源', + value: 'tuna', + }, + { + label: '中国科学技术大学镜像源', + value: 'ustc', + } +] provide('steps', steps) const current_step = ref(1) provide('current_step', current_step) @@ -40,15 +62,7 @@ provide('current_state', current_state) - - - PyPI - 阿里云镜像站 - 上海交通大学镜像站 - 清华大学镜像站 - 中国科学技术大学镜像站 - - +