From 1c8c18285e5676df8b5eaabff33bfac9d1f33b13 Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期五, 22 五月 2026 09:23:43 +0800
Subject: [PATCH] Merge branch 'dev_NEW_pro' into dev_NEW_pro_OA

---
 src/store/modules/user.ts |  100 ++++++++++++++++++++++++++++++++------------------
 1 files changed, 64 insertions(+), 36 deletions(-)

diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts
index 72722dd..07b0f1c 100644
--- a/src/store/modules/user.ts
+++ b/src/store/modules/user.ts
@@ -1,8 +1,9 @@
-import {logout, getInfo, loginCheckFactory} from "@/api/login";
+import { logout, getInfo, loginCheckFactory } from "@/api/login";
+import { getRouters as getRoutersApi } from "@/api/menu";
 import { getToken, setToken, removeToken } from "@/utils/auth";
 import defAva from "@/static/images/profile.jpg";
 import { defineStore } from "pinia";
-import config from '@/config.js'
+import config from "@/config.js";
 
 export interface LoginForm {
   userName: string;
@@ -22,47 +23,59 @@
     currentLoginTime: "",
     roles: Array(),
     permissions: [],
+    routers: [], // 璺敱鏉冮檺鏁版嵁
   }),
   actions: {
     // 閮ㄩ棬鐧诲綍
     loginCheckFactory(userInfo: any) {
-      const userName = userInfo.userName
-      const password = userInfo.password
+      const userName = userInfo.userName.trim();
+      const password = userInfo.password;
+      const factoryId = userInfo.factoryId;
       return new Promise((resolve, reject) => {
-        loginCheckFactory(userName, password).then((res: any) => {
-          setToken(res.token)
-          this.token = res.token
-          resolve(null)
-        }).catch((error: any) => {
-          reject(error)
-        })
-      })
+        loginCheckFactory(userName, password, factoryId)
+          .then((res: any) => {
+            const token = res.token || res.data?.token;
+            if (token) {
+              setToken(token);
+              this.token = token;
+              resolve(null);
+            } else {
+              reject("鏈幏鍙栧埌鐧诲綍浠ょ墝");
+            }
+          })
+          .catch((error: any) => {
+            reject(error);
+          });
+      });
     },
     // 鑾峰彇鐢ㄦ埛淇℃伅
     getInfo() {
       return new Promise((resolve, reject) => {
         getInfo()
           .then((res: any) => {
-            const user = res.user
-            let avatar = user.avatar || ""
-            avatar = config.baseUrl + '/profile/' + avatar
-            if (res.roles && res.roles.length > 0) { // 楠岃瘉杩斿洖鐨剅oles鏄惁鏄竴涓潪绌烘暟缁�
-              this.roles = res.roles
-              this.permissions = res.permissions
+            // 鍏煎 res.data 缁撴瀯
+            const data = res.data || res;
+            const user = data.user || {};
+            let avatar = user.avatar || "";
+            avatar = config.baseUrl + "/profile/" + avatar;
+            if (data.roles && data.roles.length > 0) {
+              // 楠岃瘉杩斿洖鐨剅oles鏄惁鏄竴涓潪绌烘暟缁�
+              this.roles = data.roles;
+              this.permissions = data.permissions;
             } else {
-              this.roles = ['ROLE_DEFAULT']
+              this.roles = ["ROLE_DEFAULT"];
             }
-            this.id = user.userId
-            this.name = user.userName
-            this.avatar = avatar
-            this.currentFactoryName = user.currentFactoryName
-            this.nickName = user.nickName
-            this.roleName = user.roles[0].roleName
-            this.currentDeptId = user.tenantId
-            this.currentLoginTime = this.getCurrentTime()
-            resolve(res);
+            this.id = user.userId || "";
+            this.name = user.userName || "";
+            this.avatar = avatar;
+            this.currentFactoryName = user.currentFactoryName || "";
+            this.nickName = user.nickName || "";
+            this.roleName = Array.isArray(user.roles) && user.roles.length > 0 ? user.roles[0].roleName || "" : "";
+            this.currentDeptId = user.tenantId || "";
+            this.currentLoginTime = this.getCurrentTime();
+            resolve(data);
           })
-          .catch((error) => {
+          .catch(error => {
             reject(error);
           });
       });
@@ -75,26 +88,41 @@
             this.token = "";
             this.roles = [];
             this.permissions = [];
+            this.routers = [];
             this.name = "";
             this.avatar = "";
             removeToken();
             resolve(null);
           })
-          .catch((error) => {
+          .catch(error => {
             reject(error);
           });
       });
     },
     getCurrentTime() {
       const now = new Date();
-      const year = now.getFullYear();       // 鑾峰彇骞翠唤
-      const month = String(now.getMonth() + 1).padStart(2, '0');  // 鏈堜唤浠�0寮�濮嬶紝瑕�+1锛屽苟琛ラ浂
-      const day = String(now.getDate()).padStart(2, '0');         // 鏃ユ湡琛ラ浂
-      const hours = String(now.getHours()).padStart(2, '0');      // 灏忔椂琛ラ浂
-      const minutes = String(now.getMinutes()).padStart(2, '0');  // 鍒嗛挓琛ラ浂
-      const seconds = String(now.getSeconds()).padStart(2, '0');  // 绉掓暟琛ラ浂
+      const year = now.getFullYear(); // 鑾峰彇骞翠唤
+      const month = String(now.getMonth() + 1).padStart(2, "0"); // 鏈堜唤浠�0寮�濮嬶紝瑕�+1锛屽苟琛ラ浂
+      const day = String(now.getDate()).padStart(2, "0"); // 鏃ユ湡琛ラ浂
+      const hours = String(now.getHours()).padStart(2, "0"); // 灏忔椂琛ラ浂
+      const minutes = String(now.getMinutes()).padStart(2, "0"); // 鍒嗛挓琛ラ浂
+      const seconds = String(now.getSeconds()).padStart(2, "0"); // 绉掓暟琛ラ浂
       return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
     },
+    // 鑾峰彇璺敱鏉冮檺
+    getRouters() {
+      return new Promise((resolve, reject) => {
+        getRoutersApi()
+          .then((res: any) => {
+            // 瀛樺偍璺敱鏉冮檺鏁版嵁
+            this.routers = res.data || [];
+            resolve(res);
+          })
+          .catch(error => {
+            reject(error);
+          });
+      });
+    },
   },
 });
 

--
Gitblit v1.9.3