// +----------------------------------------------------------------------
|
// | CMS [ CMS赋能开发者,助力企业发展 ]
|
// +----------------------------------------------------------------------
|
// | Copyright (c) 2016~2021 https://www.CMS.com All rights reserved.
|
// +----------------------------------------------------------------------
|
// | Licensed CMS并不是自由软件,未经许可不能去掉CMS相关版权
|
// +----------------------------------------------------------------------
|
// | Author: CMS Team <admin@CMS.com>
|
// +----------------------------------------------------------------------
|
|
import { login, logout, getInfo } from '@/api/user'
|
import { getToken, setToken, removeToken } from '@/utils/auth'
|
import router, { resetRouter } from '@/router'
|
import { isLoginApi } from '@/api/sms'
|
import Cookies from 'js-cookie'
|
import { oAuth, getQueryString } from "@/libs/wechat";
|
|
const state = {
|
token: getToken(),
|
name: '',
|
avatar: '',
|
introduction: '',
|
roles: [],
|
isLogin: Cookies.get('isLogin'),
|
permissions:[],
|
}
|
|
const mutations = {
|
SET_TOKEN: (state, token) => {
|
state.token = token
|
},
|
SET_ISLOGIN: (state, isLogin) => {
|
state.isLogin = isLogin
|
Cookies.set(isLogin)
|
},
|
SET_INTRODUCTION: (state, introduction) => {
|
state.introduction = introduction
|
},
|
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
|
},
|
}
|
|
const actions = {
|
// user login
|
login({ commit }, userInfo) {
|
const { account, pwd, key, code, wxCode } = userInfo
|
return new Promise((resolve, reject) => {
|
login( userInfo ).then(data => {
|
commit('SET_TOKEN', data.token)
|
Cookies.set('JavaInfo', JSON.stringify(data))
|
setToken(data.token)
|
resolve()
|
}).catch(error => {
|
reject(error)
|
})
|
})
|
},
|
|
// 短信是否登录
|
isLogin({ commit }, userInfo) {
|
// const { username, password } = userInfo
|
return new Promise((resolve, reject) => {
|
isLoginApi().then(async res => {
|
commit('SET_ISLOGIN', res.status)
|
resolve(res)
|
}).catch(res => {
|
commit('SET_ISLOGIN', false)
|
reject(res)
|
})
|
})
|
},
|
|
// get user info
|
getInfo({ commit, state }) {
|
return new Promise((resolve, reject) => {
|
getInfo(state.token).then(data => {
|
if (!data) {
|
reject('Verification failed, please Login again.')
|
}
|
const { roles, account } = data
|
// roles must be a non-empty array
|
if (!roles || roles.length <= 0) {
|
reject('getInfo: roles must be a non-null array!')
|
}
|
|
commit('SET_ROLES', roles)
|
// commit('SET_ROLES', ['admin'])
|
commit('SET_NAME', account)
|
// commit('SET_AVATAR', avatar)
|
commit('SET_AVATAR', 'http://kaifa.CMS.net/system/images/admin_logo.png')
|
|
commit('SET_INTRODUCTION', 'CMS admin')
|
commit('SET_PERMISSIONS', data.permissionsList) //权限标识
|
resolve(data)
|
}).catch(error => {
|
reject(error)
|
})
|
})
|
},
|
|
// user logout
|
logout({ commit, state, dispatch }) {
|
return new Promise((resolve, reject) => {
|
logout(state.token).then(() => {
|
commit('SET_TOKEN', '')
|
commit('SET_ROLES', [])
|
commit('SET_PERMISSIONS', [])
|
removeToken()
|
resetRouter()
|
// localStorage.clear();
|
Cookies.remove('storeStaffList')
|
Cookies.remove('JavaInfo')
|
sessionStorage.removeItem('token')
|
// reset visited views and cached views
|
// to fixed https://github.com/PanJiaChen/vue-element-admin/issues/2485
|
dispatch('tagsView/delAllViews', null, { root: true })
|
|
resolve()
|
}).catch(error => {
|
reject(error)
|
})
|
})
|
},
|
|
// remove token
|
resetToken({ commit }) {
|
return new Promise(resolve => {
|
commit('SET_TOKEN', '')
|
commit('SET_ROLES', [])
|
removeToken()
|
resolve()
|
})
|
},
|
// 设置token
|
setToken({commit},state) {
|
return new Promise(resolve => {
|
commit('SET_TOKEN', state.token)
|
Cookies.set('JavaInfo', JSON.stringify(state))
|
setToken(data.token)
|
resolve()
|
})
|
},
|
|
// dynamically modify permissions
|
changeRoles({ commit, dispatch }, role) {
|
return new Promise(async resolve => {
|
const token = role + '-token'
|
|
commit('SET_TOKEN', token)
|
setToken(token)
|
|
const { roles } = await dispatch('getInfo')
|
|
resetRouter()
|
|
// generate accessible routes map based on roles
|
const accessRoutes = await dispatch('permission/generateRoutes', roles, { root: true })
|
|
// dynamically add accessible routes
|
router.addRoutes(accessRoutes)
|
|
// reset visited views and cached views
|
dispatch('tagsView/delAllViews', null, { root: true })
|
|
resolve()
|
})
|
}
|
}
|
|
export default {
|
namespaced: true,
|
state,
|
mutations,
|
actions
|
}
|