From 037fb36aaf4123ef143ac48038a0b171418a20e5 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 11 八月 2025 10:00:18 +0800
Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp

---
 apps/cMiniApp/src/stores/modules/user.ts |   96 ++++++++++++++++-------------------------------
 1 files changed, 33 insertions(+), 63 deletions(-)

diff --git a/apps/cMiniApp/src/stores/modules/user.ts b/apps/cMiniApp/src/stores/modules/user.ts
index 7e52ace..d49e137 100644
--- a/apps/cMiniApp/src/stores/modules/user.ts
+++ b/apps/cMiniApp/src/stores/modules/user.ts
@@ -8,9 +8,6 @@
   setUserDetail,
   getUserDetail,
   removeUserDetail,
-  removeMatchMakingIdentity,
-  getMatchMakingIdentity,
-  setMatchMakingIdentity,
 } from '@/utils/storage/auth';
 import * as accountServices from '@12333/services/api/Account';
 import * as userServices from '@12333/services/api/User';
@@ -24,14 +21,17 @@
   setOSSLink,
   getUserCertificationFrontStatusAdapter,
   LocationUtils,
+  md5Encrypt,
 } from '@12333/utils';
 import DefaultAvatar from '@/assets/components/icon-default-avatar.png';
 import { WxMiniAppEnum } from '@12333/constants';
 import { myClient } from '@/constants/query';
 import { globalEventEmitter } from '@12333/hooks';
+import * as authServices from '@12333/services/apiV2/auth';
+import { AppLocalConfig } from '@/constants';
 
 interface UserState {
-  userInfo?: Nullable<API.IdentityModelTokenCacheItem>;
+  userInfo?: Nullable<API.LoginCommandCallback>;
   token?: Nullable<string>;
   refreshToken?: Nullable<string>;
   userDetail?: Nullable<API.UserInfoV2>;
@@ -80,15 +80,6 @@
     };
   },
   getters: {
-    cacheToken: (state) => {
-      if (!state.token) {
-        const storageToken = getCacheToken() as API.IdentityModelTokenCacheItem;
-
-        state.token = storageToken.accessToken;
-      }
-      return state.token || null;
-    },
-
     cacheRefreshToken: (state) => {
       return state.refreshToken;
     },
@@ -96,10 +87,6 @@
     accountInfo(): Partial<AccountInfo> {
       return getAccountInfoFromAccessToken(this.userInfo?.accessToken);
     },
-
-    // matchMakingIdentity(state): MatchMakingIdentityEnum {
-
-    // },
   },
   actions: {
     // 鎵嬫満鍙锋巿鏉僀ode鐧诲綍
@@ -115,7 +102,7 @@
             sessionKey: wxMiniAppUserLoginRes.sessionKey,
             encryptedData: detail.encryptedData,
             iv: detail.iv,
-            wxMiniApp: WxMiniAppEnum.浜哄崟鍚堜竴,
+            wxMiniApp: WxMiniAppEnum.C绔皬绋嬪簭,
           };
           res = await accountServices.wxMiniAppPhoneAuthLogin(params);
           this.loginSuccess(res);
@@ -127,11 +114,13 @@
     },
 
     // 鐢ㄦ埛鎵嬫満楠岃瘉鐮佺櫥鍏�
-    async loginByUsername(data: API.PhoneMesssageCodeLoginInput) {
-      let res = await accountServices.phoneMesssageCodeLogin(
+    async loginByUsername(data: API.SmsLoginCommand) {
+      let res = await authServices.smsLogin(
         {
           phoneNumber: data.phoneNumber,
-          code: data.code,
+          verifyCode: data.verifyCode,
+          type: AppLocalConfig.userType,
+          clientType: AppLocalConfig.clientType,
         },
         { showLoading: false }
       );
@@ -143,11 +132,13 @@
     },
 
     // 鐢ㄦ埛璐﹀彿瀵嗙爜鐧诲叆
-    async loginByPassword(data: API.AccessRequestDto) {
-      let res = await accountServices.passwordLogin(
+    async loginByPassword(params: API.PasswordLoginCommand) {
+      let res = await authServices.passwordLogin(
         {
-          loginName: data.userName,
-          password: data.userPassword,
+          userName: params.userName,
+          password: md5Encrypt(params.password),
+          type: AppLocalConfig.userType,
+          clientType: AppLocalConfig.clientType,
         },
         { showLoading: false }
       );
@@ -157,7 +148,7 @@
       return res;
     },
 
-    async loginSuccess(res: API.IdentityModelTokenCacheItem) {
+    async loginSuccess(res: API.LoginCommandCallback) {
       try {
         this.setUserInfoAction(res);
         this.setTokenAction(res);
@@ -189,7 +180,7 @@
           sessionKey: wxIndentityRes.sessionKey,
           encryptedData: detail.encryptedData,
           iv: detail.iv,
-          wxMiniApp: WxMiniAppEnum.浜哄崟鍚堜竴,
+          wxMiniApp: WxMiniAppEnum.C绔皬绋嬪簭,
         });
         this.loginSuccess(res);
         return res;
@@ -200,24 +191,24 @@
       try {
         let res = await userServices.getUserInfo({ showLoading: false });
         if (res) {
-          res.frontStatus = getUserCertificationFrontStatusAdapter(
-            res.userCertificationStatus,
-            res.userCertificationAuditStatus
-          );
-          res.originalAvatarUrl = res.avatarUrl;
-          res.avatarUrl = res.avatarUrl ? setOSSLink(res.avatarUrl) : DefaultAvatar;
-          this.setUserDetail(res);
-          this.firstGetUserDetail = false;
+          // res.frontStatus = getUserCertificationFrontStatusAdapter(
+          //   res.userCertificationStatus,
+          //   res.userCertificationAuditStatus
+          // );
+          // res.originalAvatarUrl = res.avatarUrl;
+          // res.avatarUrl = res.avatarUrl ? setOSSLink(res.avatarUrl) : DefaultAvatar;
+          // this.setUserDetail(res);
+          // this.firstGetUserDetail = false;
         }
       } catch (error) {}
     },
 
-    setTokenAction(tokenInfo: API.IdentityModelTokenCacheItem) {
+    setTokenAction(tokenInfo: API.LoginCommandCallback) {
       this.token = tokenInfo?.accessToken;
       this.refreshToken = tokenInfo.refreshToken ?? '';
     },
 
-    setUserInfoAction(info: API.IdentityModelTokenCacheItem) {
+    setUserInfoAction(info: API.LoginCommandCallback) {
       this.userInfo = info;
       setUserInfo(info);
     },
@@ -234,7 +225,6 @@
       this.userDetail = null;
       removeUserInfo();
       removeUserDetail();
-      removeMatchMakingIdentity();
     },
 
     /**
@@ -271,36 +261,16 @@
       }
     },
 
-    async getTokenByRefreshToken(params: API.AccessRefreshToken) {
-      try {
-        const res = await accountServices.getTokenByRefreshToken(params, {
-          showLoading: false,
-        });
-        if (res) {
-          this.setTokenAction(res);
-          this.setUserInfoAction(res);
-          return res;
-        } else {
-          throw new Error('鍒锋柊token澶辫触');
-        }
-      } catch (error) {
-        throw new Error('error');
-      }
-    },
-
     setLocationCity(cityName: string, provinceName: string) {
       this.locationCity = cityName;
       this.locationProvince = provinceName;
       this.firstSetLocation = false;
       setStorageLocationCity({ city: cityName, province: provinceName });
-      if (LocationUtils.isProvinceChange(provinceName)) {
-        this.resetState();
-        myClient.removeQueries();
-        globalEventEmitter.trigger('logout/refresh');
-        // myClient.invalidateQueries({
-        //   queryKey: ['logout/refresh'],
-        // });
-      }
+      // if (LocationUtils.isProvinceChange(provinceName)) {
+      //   this.resetState();
+      //   myClient.removeQueries();
+      //   globalEventEmitter.trigger('logout/refresh');
+      // }
       LocationUtils.currentProvinceName = provinceName;
     },
   },

--
Gitblit v1.9.1