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() {