From c07ac2b71352478e892bd1e246c2c44879125799 Mon Sep 17 00:00:00 2001 From: wangyi <3432649580@qq.com> Date: Thu, 30 Oct 2025 16:53:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=8F=B7=E5=A2=9E=E6=B7=BB-?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/start/Registration/Registration.vue | 4 ++-- pages/start/login/login.vue | 4 ++-- pages/start/recoverPassword/recoverPassword.vue | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/start/Registration/Registration.vue b/pages/start/Registration/Registration.vue index b4d205a..994a2c3 100644 --- a/pages/start/Registration/Registration.vue +++ b/pages/start/Registration/Registration.vue @@ -326,7 +326,7 @@ function changeAccount() { } if (switchType.value === "Phone") { - account.value = `${country.value}${phone.value}`; + account.value = `${country.value}-${phone.value}`; } if (switchType.value === "Email") { account.value = email.value; @@ -511,7 +511,7 @@ async function sendCode() { if (switchType.value === "Phone") { // 发送验证码 - const phoneAll = `${country.value}${phone.value}`; + const phoneAll = `${country.value}-${phone.value}`; const res = await SendPhoneCodeApi({ phone: phoneAll, }); diff --git a/pages/start/login/login.vue b/pages/start/login/login.vue index 5cd0fc6..dd41da7 100644 --- a/pages/start/login/login.vue +++ b/pages/start/login/login.vue @@ -536,7 +536,7 @@ function changeAccount() { } if (switchType.value === "Phone") { - account.value = `${country.value}${phone.value}`; + account.value = `${country.value}-${phone.value}`; } if (switchType.value === "Email") { account.value = email.value; @@ -652,7 +652,7 @@ async function sendCode() { if (switchType.value === "Phone") { // 发送验证码 - const phoneAll = `${country.value}${phone.value}`; + const phoneAll = `${country.value}-${phone.value}`; const res = await SendPhoneCodeApi({ phone: phoneAll, }); diff --git a/pages/start/recoverPassword/recoverPassword.vue b/pages/start/recoverPassword/recoverPassword.vue index 9644a18..4c1915e 100644 --- a/pages/start/recoverPassword/recoverPassword.vue +++ b/pages/start/recoverPassword/recoverPassword.vue @@ -451,7 +451,7 @@ function changeAccount() { } if (switchType.value === "Phone") { - account.value = `${country.value}${phone.value}`; + account.value = `${country.value}-${phone.value}`; } if (switchType.value === "Email") { account.value = email.value; @@ -570,7 +570,7 @@ function sendCode() { } } if (switchType.value === "Phone") { - const phoneAll = `${country.value}${phone.value}`; + const phoneAll = `${country.value}-${phone.value}`; const res = SendPhoneCodeApi({ phone: phoneAll,