123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import { login, logout, getInfo } from '@/api/login'
- import { getToken, setToken, removeToken } from '@/utils/auth'
- import { Notification } from 'element-ui'
- const user = {
- state: {
- token: getToken(),
- name: '',
- avatar: '',
- roles: [],
- permissions: [],
- dataPermissions: []
- },
- mutations: {
- SET_TOKEN: (state, token) => {
- state.token = token
- },
- SET_NAME: (state, name) => {
- state.name = name
- },
- SET_AVATAR: (state, avatar) => {
- state.avatar = avatar
- },
- SET_ROLES: (state, roles) => {
- state.roles = roles
- },
- SET_PERMISSIONS: (state, permissions) => {
- state.permissions = permissions
- },
- SET_DATA_PERMISSIONS: (state, dataPermissions) => {
- state.dataPermissions = dataPermissions
- }
- },
- 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) => {
- if (res.code == 200) {
- setToken(res.token)
- commit('SET_TOKEN', res.token)
- resolve()
- } else {
- Notification({
- message: res.msg,
- type: 'error',
- duration: 2000,
- customClass: 'elemsg-notify'
- })
- }
- })
- .catch((error) => {
- reject(error)
- })
- })
- },
- // 获取用户信息
- GetInfo({ commit, state }) {
- return new Promise((resolve, reject) => {
- getInfo()
- .then((res) => {
- if (res.code == 200) {
- const user = res.user
- const avatar = user.avatar == '' ? require('@/assets/images/profile.jpg') : process.env.VUE_APP_BASE_API + user.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'])
- }
- let deptids = user.dataJurisdictionIds && user.dataJurisdictionIds.split(',')
- commit('SET_DATA_PERMISSIONS', deptids)
- commit('SET_NAME', user.userName)
- commit('SET_AVATAR', avatar)
- 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()
- })
- }
- }
- }
- export default user
|