You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-vue/src/store/modules/user.js

162 lines
4.5 KiB
JavaScript

import {login, logout, getInfo} from "@/api/login";
2 years ago
import {
getToken,
setToken,
removeToken,
removeAdminId,
setAdminId, getAdminId,
2 years ago
} from "@/utils/auth";
import {sha256} from "js-sha256";
2 years ago
const user = {
state: {
adminId: getAdminId(),
2 years ago
token: getToken(),
2 years ago
name: "",
avatar: "",
2 years ago
roles: [],
permissions: [],
employeeName: "",
customerId: "",
companyName: "",
locDeptCode: "",
locInvCode: "",
locDeptName: "",
locInvName: "",
},
mutations: {
SET_ADMINID: (state, adminId) => {
2 years ago
state.adminId = adminId;
2 years ago
},
SET_TOKEN: (state, token) => {
2 years ago
state.token = token;
2 years ago
},
SET_NAME: (state, name) => {
2 years ago
state.name = name;
2 years ago
},
SET_AVATAR: (state, avatar) => {
2 years ago
state.avatar = avatar;
2 years ago
},
SET_ROLES: (state, roles) => {
2 years ago
state.roles = roles;
2 years ago
},
SET_PERMISSIONS: (state, permissions) => {
2 years ago
state.permissions = permissions;
2 years ago
},
SET_EMPLOYEENAME: (state, employeeName) => {
2 years ago
state.employeeName = employeeName;
2 years ago
},
SET_CUSTOMERID: (state, customerId) => {
2 years ago
state.customerId = customerId;
2 years ago
},
SET_COMPANYNAME: (state, companyName) => {
2 years ago
state.companyName = companyName;
2 years ago
},
SET_LOCDEPTCODE: (state, locDeptCode) => {
2 years ago
state.locDeptCode = locDeptCode;
2 years ago
},
SET_LOCIVNCODE: (state, locInvCode) => {
2 years ago
state.locInvCode = locInvCode;
2 years ago
},
SET_LOCDEPTNAME: (state, locDeptName) => {
2 years ago
state.locDeptName = locDeptName;
2 years ago
},
SET_LOCIVNNAME: (state, locInvName) => {
2 years ago
state.locInvName = locInvName;
2 years ago
},
},
actions: {
// 登录
Login({commit}, userInfo) {
2 years ago
const username = userInfo.username.trim();
// const password = userInfo.password;
const password = sha256(userInfo.password)
2 years ago
const code = userInfo.code;
const uuid = userInfo.uuid;
2 years ago
return new Promise((resolve, reject) => {
2 years ago
login(username, password, code, uuid)
.then((res) => {
if (res.code == 20000) {
setToken(res.data.token);
setAdminId(res.data.id);
commit("SET_TOKEN", res.data.token);
commit("SET_ADMINID", res.data.id);
resolve(res);
2 years ago
} else {
reject(res.message);
}
})
.catch((error) => {
reject(error);
});
});
2 years ago
},
// 获取用户信息
GetInfo({commit, state}) {
2 years ago
return new Promise((resolve, reject) => {
2 years ago
getInfo()
.then((res) => {
const user = res.data;
const avatar =
user.avatar == "" || user.avatar == null
? require("@/assets/images/glxplogo.png")
: user.avatar;
if (res.data.roles && res.data.roles.length > 0) {
// 验证返回的roles是否是一个非空数组
commit("SET_ROLES", res.data.roles);
commit("SET_PERMISSIONS", res.data.permissions);
} else {
commit("SET_ROLES", ["ROLE_DEFAULT"]);
}
commit("SET_AVATAR", avatar);
commit("SET_NAME", user.userName);
commit("SET_EMPLOYEENAME", user.employeeName);
commit("SET_CUSTOMERID", user.customerId);
commit("SET_COMPANYNAME", user.companyName);
commit("SET_LOCDEPTCODE", user.locDeptCode);
commit("SET_LOCIVNCODE", user.locInvCode);
commit("SET_LOCDEPTNAME", user.locDeptName);
commit("SET_LOCIVNNAME", user.locInvName);
resolve(res);
// console.log("获取用户数据成功-=----");
})
.catch((error) => {
reject(error);
});
});
2 years ago
},
// 退出系统
LogOut({commit, state}) {
2 years ago
return new Promise((resolve, reject) => {
2 years ago
logout(state.token)
.then(() => {
commit("SET_ADMINID", "");
commit("SET_TOKEN", "");
commit("SET_ROLES", []);
commit("SET_PERMISSIONS", []);
commit("SET_EMPLOYEENAME", "");
commit("SET_CUSTOMERID", "");
commit("SET_COMPANYNAME", "");
commit("SET_LOCDEPTCODE", "");
commit("SET_LOCIVNCODE", "");
commit("SET_LOCDEPTNAME", "");
commit("SET_LOCIVNNAME", "");
removeToken();
removeAdminId();
resolve();
})
.catch((error) => {
reject(error);
});
});
2 years ago
},
2 years ago
},
};
2 years ago
2 years ago
export default user;