From d9d52ab7cb9351d47f30bcd6157c4f3786ba35a8 Mon Sep 17 00:00:00 2001 From: xingyy <64720302+Concur-max@users.noreply.github.com> Date: Thu, 27 Feb 2025 09:15:43 +0800 Subject: [PATCH] =?UTF-8?q?infrastructure(env):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E7=94=9F=E4=BA=A7=E7=8E=AF=E5=A2=83=20API=20=E5=92=8C=20WebSoc?= =?UTF-8?q?ket=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 API 基础 URL 和 WebSocket URL 从 https://auction.yixunlink.com 更改为 https://auction.szjixun.cn - 修正签名提示文本的翻译键 --- app/pages/signature/panel/index.vue | 2 +- env/.env.prod | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/pages/signature/panel/index.vue b/app/pages/signature/panel/index.vue index 3e05c75..b833eb7 100644 --- a/app/pages/signature/panel/index.vue +++ b/app/pages/signature/panel/index.vue @@ -19,7 +19,7 @@ const clearSignature = () => { const toast=ref(false) const submitSignature = () => { if (signaturePad.value?.isEmpty()) { - showToast($t('signature.pleaseSign')); + showToast($t('collectCode.signature.pleaseSign')); return; } toast.value=showLoadingToast({ diff --git a/env/.env.prod b/env/.env.prod index 8ac45db..f9f8eaf 100644 --- a/env/.env.prod +++ b/env/.env.prod @@ -1,4 +1,4 @@ # 生产环境配置 -NUXT_PUBLIC_API_BASE=https://auction.yixunlink.com -NUXT_PUBLIC_SOCKET_URL=wss://auction.yixunlink.com +NUXT_PUBLIC_API_BASE=https://auction.szjixun.cn +NUXT_PUBLIC_SOCKET_URL=wss://auction.szjixun.cn NUXT_API_SECRET=prod-secret