From edfae1d731f9962fcf23a35632ce45521fd73018 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期二, 23 九月 2025 17:18:52 +0800 Subject: [PATCH] fix: bug --- apps/cMiniApp/src/subpackages/authentication/authenticationRealName/InnerPage.vue | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/apps/cMiniApp/src/subpackages/authentication/authenticationRealName/InnerPage.vue b/apps/cMiniApp/src/subpackages/authentication/authenticationRealName/InnerPage.vue index dae5564..d2ae4ab 100644 --- a/apps/cMiniApp/src/subpackages/authentication/authenticationRealName/InnerPage.vue +++ b/apps/cMiniApp/src/subpackages/authentication/authenticationRealName/InnerPage.vue @@ -109,7 +109,7 @@ name: 'InnerPage', }); -const { userDetail } = useUser(); +const { userDetail, updateUserInfo } = useUser(); const router = Taro.useRouter(); const type = router.params?.type ?? ''; @@ -212,6 +212,7 @@ let res = await electronSignServices.personalUserFaceReal(params); if (res) { const encodedUrl = encodeURIComponent(res); + updateUserInfo(); Taro.navigateTo({ url: `${RouterPath.extraPage}?url=${encodedUrl}` }); } } catch (error) {} -- Gitblit v1.9.1