From c7ab8c4fca1c690f3e5536dff520eaa9c4010fd1 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 24 三月 2025 19:52:35 +0800
Subject: [PATCH] fix: 三期bug

---
 apps/taro/src/hooks/user.ts |   32 ++++++++++++++++++++++++--------
 1 files changed, 24 insertions(+), 8 deletions(-)

diff --git a/apps/taro/src/hooks/user.ts b/apps/taro/src/hooks/user.ts
index 6e25fee..b6523b1 100644
--- a/apps/taro/src/hooks/user.ts
+++ b/apps/taro/src/hooks/user.ts
@@ -6,7 +6,11 @@
 import { useRefeshDidShow } from './infiniteLoading';
 import { LoginFormTabs } from '@/subpackages/login/constants';
 import { useLoginedJump } from './login';
-import { useLifeRechargeContext, APIgetLifePayWxIndentityParams } from '@life-payment/core-vue';
+import {
+  useLifeRechargeContext,
+  APIgetLifePayWxIndentityParams,
+  WxMiniAppIndentityInfo,
+} from '@life-payment/core-vue';
 import { isInWeChat } from '@/utils/env';
 
 export function useUser() {
@@ -95,11 +99,13 @@
       }
       if (!!code && !wxCode.value) {
         userStore.setWxCode(router.params.code ?? '');
-        getLifePayWxIndentity(code);
+        // getLifePayWxIndentity(code);
       }
     } catch (error) {}
   });
 }
+
+let wxIndentityPromise: Promise<WxMiniAppIndentityInfo>;
 
 export function useLifePayWxIndentity() {
   const { blLifeRecharge } = useLifeRechargeContext();
@@ -110,10 +116,20 @@
       let params: APIgetLifePayWxIndentityParams = {
         code: code,
       };
-      let res = await blLifeRecharge.services.getLifePayWxIndentity(params, {
-        showLoading: false,
-      });
-      userStore.setWxOpenId(res.openId);
+      if (!wxIndentityPromise) {
+        wxIndentityPromise = blLifeRecharge.services
+          .getLifePayWxIndentity(params, {
+            showLoading: false,
+          })
+          .finally(() => {
+            wxIndentityPromise = undefined;
+          });
+      }
+
+      let res = await wxIndentityPromise;
+      if (res.openId) {
+        userStore.setWxOpenId(res.openId);
+      }
       return res;
     } catch (error) {}
   }
@@ -126,11 +142,11 @@
   const { getLifePayWxIndentity } = useLifePayWxIndentity();
 
   async function ensureOpenId() {
-    if (wxOpenId) {
+    if (wxOpenId.value) {
       return wxOpenId.value;
     } else {
       let rea = await getLifePayWxIndentity(wxCode.value);
-      return rea.openId;
+      return rea.openId ? rea.openId : wxOpenId.value;
     }
   }
 

--
Gitblit v1.9.1