|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- import router from '@/router'
- import { MessageBox, } from 'element-ui'
- import { login, logout, getInfo, systemConfig } from '@/api/login'
- import { getToken, setToken, removeToken } from '@/utils/auth'
- import { isHttp, isEmpty } from "@/utils/validate"
- import defAva from '@/assets/images/profile.jpg'
- import Cookies from "js-cookie";
-
- const user = {
- state: {
- token: getToken(),
- id: '',
- name: '',
- nickName: '',
- avatar: '',
- user: {},
- userDept:null,
- roles: [],
- permissions: [],
- //获取登录页相关标题
- systemConfigList: [],
- //系统名称
- loginSystemName: '',
- //浏览器页签名称
- browserName: '',
- //技术支持
- technicalSupport: '',
- //界面logo
- globalLogo:'',
- },
-
- mutations: {
- SET_TOKEN: (state, token) => {
- state.token = token
- },
- SET_ID: (state, id) => {
- state.id = id
- },
- SET_NAME: (state, name) => {
- state.name = name
- },
- SET_NICK_NAME: (state, nickName) => {
- state.nickName = nickName
- },
- SET_AVATAR: (state, avatar) => {
- state.avatar = avatar
- },
- SET_USER: (state, user) => {
- state.user = user
- },
- SET_USERDEPT: (state, dept) => {
- state.userDept = dept
- },
- SET_ROLES: (state, roles) => {
- state.roles = roles
- },
- SET_PERMISSIONS: (state, permissions) => {
- state.permissions = permissions
- },
- SET_STSTEMCONFIGlIST: (state, systemConfigList) => {
- state.systemConfigList = systemConfigList
- },
- SET_LOGINSYSTEMNAME: (state, loginSystemName) => {
- state.loginSystemName = loginSystemName
- },
- SET_BORWSERNAME: (state, browserName) => {
- state.browserName = browserName
- },
- SET_TECHNICALSUPPORT: (state, technicalSupport) => {
- state.technicalSupport = technicalSupport
- },
- SET_GLOBALLOGO: (state, globalLogo) => {
- state.globalLogo = globalLogo
- },
- },
-
- actions: {
- // 登录
- Login({ commit }, userInfo) {
- const username = userInfo.username.trim()
- const password = userInfo.password
- const code = userInfo.code
- const uuid = userInfo.uuid
- return new Promise((resolve, reject) => {
- login(username, password, code, uuid).then(res => {
- setToken(res.token)
- commit('SET_TOKEN', res.token)
- resolve()
- }).catch(error => {
- reject(error)
- })
- })
- },
-
- // 获取用户信息
- GetInfo({ commit, state }) {
- return new Promise((resolve, reject) => {
- getInfo().then(res => {
- const user = res.user
- let avatar = user.avatar || ""
- if (!isHttp(avatar)) {
- avatar = (isEmpty(avatar)) ? defAva : process.env.VUE_APP_BASE_API + avatar
- }
- if (res.roles && res.roles.length > 0) { // 验证返回的roles是否是一个非空数组
- commit('SET_ROLES', res.roles)
- commit('SET_PERMISSIONS', res.permissions)
- } else {
- commit('SET_ROLES', ['ROLE_DEFAULT'])
- }
- commit('SET_ID', user.userId)
- commit('SET_NAME', user.userName)
- commit('SET_NICK_NAME', user.nickName)
- commit('SET_AVATAR', avatar)
- commit('SET_USER', user)
- commit('SET_USERDEPT', user.dept.deptId)
- Cookies.set('userDept',user.dept.deptId)
- Cookies.set('importCode',user.dept.importCode)
- /* 初始密码提示 */
- if(res.isDefaultModifyPwd) {
- MessageBox.confirm('您的密码还是初始密码,请修改密码!', '安全提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => {
- router.push({ name: 'Profile', params: { activeTab: 'resetPwd' } })
- }).catch(() => {})
- }
- /* 过期密码提示 */
- if(!res.isDefaultModifyPwd && res.isPasswordExpired) {
- MessageBox.confirm('您的密码已过期,请尽快修改密码!', '安全提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => {
- router.push({ name: 'Profile', params: { activeTab: 'resetPwd' } })
- }).catch(() => {})
- }
- resolve(res)
- }).catch(error => {
- reject(error)
- })
- })
- },
-
- // 退出系统
- LogOut({ commit, state }) {
- return new Promise((resolve, reject) => {
- logout(state.token).then(() => {
- commit('SET_TOKEN', '')
- commit('SET_ROLES', [])
- commit('SET_PERMISSIONS', [])
- removeToken()
- resolve()
- }).catch(error => {
- reject(error)
- })
- })
- },
-
- // 前端 登出
- FedLogOut({ commit }) {
- return new Promise(resolve => {
- commit('SET_TOKEN', '')
- removeToken()
- resolve()
- })
- },
-
- //获取登录页相关标题
- systemTitle({ commit, state }) {
- return new Promise((resolve, reject) => {
- systemConfig({ configKey: 'system' }).then((data) => {
- let content = data.rows;
- commit('SET_STSTEMCONFIGlIST', content)
- //系统名称
- let loginSystemName = '';
- //浏览器页签名称
- let browserName = '';
- //技术支持
- let technicalSupport = '';
- //界面logo
- let globalLogo = '';
-
- content.forEach((v, i) => {
- if (v.configKey == 'system.login.name') {
- loginSystemName = v.configValue
- } else if (v.configKey == 'system.browser.name') {
- browserName = v.configValue
- } else if (v.configKey == 'system.company.name') {
- technicalSupport = v.configValue
- }else if(v.configKey == 'system.logo.pic'){
- globalLogo = v.configValue
- }
- })
-
- commit('SET_LOGINSYSTEMNAME', loginSystemName)
- commit('SET_BORWSERNAME', browserName)
- commit('SET_TECHNICALSUPPORT', technicalSupport)
- commit('SET_GLOBALLOGO', globalLogo)
- resolve()
- }).catch(error => {
- reject(error)
- })
- })
- },
-
-
- }
- }
-
- export default user
|