zhengyiming
2025-06-11 91f00f1df35a964d69f48b9f71b484e2d4ef357e
apps/taro/src/hooks/user.ts
@@ -10,8 +10,32 @@
  useLifeRechargeContext,
  APIgetLifePayWxIndentityParams,
  WxMiniAppIndentityInfo,
  LifePayPhoneMesssageCodeLoginOutput,
} from '@life-payment/core-vue';
import { isInWeChat } from '@/utils/env';
export function useVirtualUserInfo() {
  const { blLifeRecharge } = useLifeRechargeContext();
  const { data: virtualUserInfo } = useQuery({
    queryKey: ['blLifeRecharge/lifePayUserMesssageByIduser', blLifeRecharge.accountModel.userId],
    queryFn: async () => {
      return await blLifeRecharge.services.lifePayUserMesssageByIduser(
        {
          id: blLifeRecharge.accountModel.userId,
        },
        {
          showLoading: false,
        }
      );
    },
    placeholderData: () => ({} as LifePayPhoneMesssageCodeLoginOutput),
    enabled: computed(() => !!blLifeRecharge.accountModel.userId),
    staleTime: Infinity,
  });
  return { virtualUserInfo };
}
export function useUser() {
  const userStore = useUserStore();
@@ -30,6 +54,12 @@
    return userStore.getCurrentUserInfo();
  }
  const { blLifeRecharge } = useLifeRechargeContext();
  // const { virtualUserInfo } = useVirtualUserInfo();
  const isChannelAccount = computed(() => blLifeRecharge.accountModel.isBackClientUser);
  const userPromoterIdNumber = computed(() => blLifeRecharge.accountModel.promoterIdNumber);
  return {
    user: userInfo,
    userDetail: userDetail,
@@ -39,6 +69,9 @@
    virtualPhoneNumber,
    wxCode,
    wxOpenId,
    isChannelAccount,
    userPromoterIdNumber,
    // virtualUserInfo,
  };
}
@@ -141,12 +174,12 @@
  const { wxCode, wxOpenId } = useUser();
  const { getLifePayWxIndentity } = useLifePayWxIndentity();
  async function ensureOpenId() {
  async function ensureOpenId(): Promise<string> {
    if (wxOpenId.value) {
      return wxOpenId.value;
    } else {
      let rea = await getLifePayWxIndentity(wxCode.value);
      return rea.openId ? rea.openId : wxOpenId.value;
      return rea.openId ? rea.openId : await ensureOpenId();
    }
  }