infrastructure(env): 更新生产环境 API 和 WebSocket URL

- 将 API 基础 URL 和 WebSocket URL 从 https://auction.yixunlink.com 更改为 https://auction.szjixun.cn
- 修正签名提示文本的翻译键
This commit is contained in:
xingyy 2025-02-27 09:15:43 +08:00
parent d885680be1
commit d9d52ab7cb
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ const clearSignature = () => {
const toast=ref(false) const toast=ref(false)
const submitSignature = () => { const submitSignature = () => {
if (signaturePad.value?.isEmpty()) { if (signaturePad.value?.isEmpty()) {
showToast($t('signature.pleaseSign')); showToast($t('collectCode.signature.pleaseSign'));
return; return;
} }
toast.value=showLoadingToast({ toast.value=showLoadingToast({

4
env/.env.prod vendored
View File

@ -1,4 +1,4 @@
# 生产环境配置 # 生产环境配置
NUXT_PUBLIC_API_BASE=https://auction.yixunlink.com NUXT_PUBLIC_API_BASE=https://auction.szjixun.cn
NUXT_PUBLIC_SOCKET_URL=wss://auction.yixunlink.com NUXT_PUBLIC_SOCKET_URL=wss://auction.szjixun.cn
NUXT_API_SECRET=prod-secret NUXT_API_SECRET=prod-secret