From d4bf2c6dda8bf782f9f9cf953aa15e30f3672fa2 Mon Sep 17 00:00:00 2001 From: colin Date: Mon, 28 Apr 2025 20:35:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(vben5):=20=E4=BF=AE=E5=A4=8D=E9=82=AE?= =?UTF-8?q?=E4=BB=B6=E7=A1=AE=E8=AE=A4=E7=AA=97=E5=8F=A3=E6=9C=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../@abp/account/src/components/MySetting.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/vben5/packages/@abp/account/src/components/MySetting.vue b/apps/vben5/packages/@abp/account/src/components/MySetting.vue index 20c07367f..a237fd344 100644 --- a/apps/vben5/packages/@abp/account/src/components/MySetting.vue +++ b/apps/vben5/packages/@abp/account/src/components/MySetting.vue @@ -103,11 +103,13 @@ const [ChangePhoneNumberModal, changePhoneNumberModalApi] = useVbenModal({ }); function onEmailConfirm() { if (query?.confirmToken) { - emailConfirmModalApi.setData({ - email: myProfile.value.email, - ...query, - }); - emailConfirmModalApi.open(); + setTimeout(() => { + emailConfirmModalApi.setData({ + email: myProfile.value.email, + ...query, + }); + emailConfirmModalApi.open(); + }, 300); } } async function onGetProfile() {