From 6887129e91d32557c2b57178180329f46df09d12 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 10 三月 2025 13:23:49 +0800
Subject: [PATCH] feat: api

---
 apps/bMiniApp/src/hooks/user.ts |   36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/apps/bMiniApp/src/hooks/user.ts b/apps/bMiniApp/src/hooks/user.ts
index 1f9b943..0e00d5b 100644
--- a/apps/bMiniApp/src/hooks/user.ts
+++ b/apps/bMiniApp/src/hooks/user.ts
@@ -2,7 +2,7 @@
 import Taro from '@tarojs/taro';
 import { object2query, LocationUtils } from '@12333/utils';
 import { ParkOrHRStatus, UserCertificationFrontStatus } from '@12333/constants';
-import * as userServices from '@12333/services/api/User';
+// import * as userServices from '@12333/services/api/User';
 import { useQuery } from '@tanstack/vue-query';
 import { MaybeRef } from 'vue';
 import { useRefeshDidShow } from '@12333/hooks/infiniteLoading';
@@ -12,24 +12,24 @@
 
   const { userDetail, userInfo, locationCity } = storeToRefs(userStore);
 
-  function updateUserInfo() {
-    return userStore.getCurrentUserInfo();
-  }
+  // function updateUserInfo() {
+  //   return userStore.getCurrentUserInfo();
+  // }
 
-  const isCompanyAudited = computed(() => {
-    return userDetail.value?.openHRSiteStatus === ParkOrHRStatus.Running;
-  });
+  // const isCompanyAudited = computed(() => {
+  //   return userDetail.value?.openHRSiteStatus === ParkOrHRStatus.Running;
+  // });
 
   /**
    * 鏄惁瀹屽杽涓汉淇℃伅锛堜紒涓氬悕绉帮紝鎵嬫満鍙凤級
    */
-  const isCompletePersonalInfo = computed(() => {
-    return (
-      !!userDetail.value?.customerName &&
-      !!userDetail.value?.contacter &&
-      !!userDetail.value?.cityName
-    );
-  });
+  // const isCompletePersonalInfo = computed(() => {
+  //   return (
+  //     !!userDetail.value?.customerName &&
+  //     !!userDetail.value?.contacter &&
+  //     !!userDetail.value?.cityName
+  //   );
+  // });
 
   const isCertified = computed(() => {
     return userDetail.value?.frontStatus === UserCertificationFrontStatus.Certified;
@@ -38,9 +38,9 @@
   return {
     user: userInfo,
     userDetail: userDetail,
-    updateUserInfo,
-    isCompletePersonalInfo,
-    isCompanyAudited,
+    // updateUserInfo,
+    // isCompletePersonalInfo,
+    // isCompanyAudited,
     isCertified,
     locationCity,
   };
@@ -68,7 +68,7 @@
 
   Taro.useReady(async () => {
     if (isLogin.value && userStore.firstGetUserDetail) {
-      userStore.getCurrentUserInfo();
+      // userStore.getCurrentUserInfo();
     }
     if (needAuth && !isLogin.value) {
       Taro.navigateTo({

--
Gitblit v1.9.1