mirror of
https://github.com/chillzhuang/Saber.git
synced 2025-04-18 19:09:21 +08:00
169 lines
5.6 KiB
JavaScript
169 lines
5.6 KiB
JavaScript
import { setToken, removeToken } from '@/util/auth'
|
|
import { setStore, getStore } from '@/util/store'
|
|
import { isURL } from '@/util/validate'
|
|
import { deepClone } from '@/util/util'
|
|
import webiste from '@/config/website'
|
|
import { loginByUsername, getUserInfo, getMenu, getTopMenu, logout, refeshToken } from '@/api/user'
|
|
|
|
|
|
function addPath(ele, first) {
|
|
const propsConfig = webiste.menu.props;
|
|
const propsDefault = {
|
|
label: propsConfig.label || 'name',
|
|
path: propsConfig.path || 'path',
|
|
icon: propsConfig.icon || 'icon',
|
|
children: propsConfig.children || 'children'
|
|
}
|
|
ele.icon = 'icon-caidan';
|
|
const isChild = ele[propsDefault.children] && ele[propsDefault.children].length !== 0;
|
|
if (!isChild) ele[propsDefault.children] = [];
|
|
if (!isChild && first && !isURL(ele[propsDefault.path])) {
|
|
ele[propsDefault.path] = ele[propsDefault.path] + '/index'
|
|
} else {
|
|
ele[propsDefault.children].forEach(child => {
|
|
addPath(child);
|
|
})
|
|
}
|
|
|
|
}
|
|
const user = {
|
|
state: {
|
|
userInfo: getStore({ name: 'userInfo' }) || [],
|
|
permission: {},
|
|
roles: [],
|
|
menu: getStore({ name: 'menu' }) || [],
|
|
menuAll: [],
|
|
token: getStore({ name: 'token' }) || '',
|
|
},
|
|
actions: {
|
|
//根据用户名登录
|
|
LoginByUsername({ commit }, userInfo) {
|
|
return new Promise((resolve) => {
|
|
loginByUsername(userInfo.username, userInfo.password, userInfo.type).then(res => {
|
|
const data = res.data.data;
|
|
commit('SET_TOKEN', data.accessToken);
|
|
commit('SET_USERIFNO', data);
|
|
commit('DEL_ALL_TAG');
|
|
commit('CLEAR_LOCK');
|
|
resolve();
|
|
})
|
|
})
|
|
},
|
|
//根据手机号登录
|
|
LoginByPhone({ commit }, userInfo) {
|
|
return new Promise((resolve) => {
|
|
loginByUsername(userInfo.phone, userInfo.code).then(res => {
|
|
const data = res.data.data;
|
|
commit('SET_TOKEN', data);
|
|
commit('DEL_ALL_TAG');
|
|
commit('CLEAR_LOCK');
|
|
resolve();
|
|
})
|
|
})
|
|
},
|
|
GetUserInfo({ commit }) {
|
|
return new Promise((resolve, reject) => {
|
|
getUserInfo().then((res) => {
|
|
const data = res.data.data;
|
|
commit('SET_ROLES', data.roles);
|
|
commit('SET_PERMISSION', data.permission)
|
|
resolve(data);
|
|
}).catch(err => {
|
|
reject(err);
|
|
})
|
|
})
|
|
},
|
|
//刷新token
|
|
RefeshToken({ state, commit }) {
|
|
return new Promise((resolve, reject) => {
|
|
refeshToken(state.refeshToken).then(res => {
|
|
const data = res.data.data;
|
|
commit('SET_TOKEN', data);
|
|
resolve(data);
|
|
}).catch(error => {
|
|
reject(error)
|
|
})
|
|
})
|
|
},
|
|
// 登出
|
|
LogOut({ commit }) {
|
|
return new Promise((resolve, reject) => {
|
|
logout().then(() => {
|
|
commit('SET_TOKEN', '')
|
|
commit('SET_MENU', [])
|
|
commit('SET_ROLES', [])
|
|
commit('DEL_ALL_TAG');
|
|
commit('CLEAR_LOCK');
|
|
removeToken()
|
|
resolve()
|
|
}).catch(error => {
|
|
reject(error)
|
|
})
|
|
})
|
|
},
|
|
//注销session
|
|
FedLogOut({ commit }) {
|
|
return new Promise(resolve => {
|
|
commit('SET_TOKEN', '')
|
|
commit('SET_MENU', [])
|
|
commit('SET_ROLES', [])
|
|
commit('DEL_ALL_TAG');
|
|
commit('CLEAR_LOCK');
|
|
removeToken()
|
|
resolve()
|
|
})
|
|
},
|
|
GetTopMenu() {
|
|
return new Promise(resolve => {
|
|
getTopMenu().then((res) => {
|
|
const data = res.data.data || []
|
|
resolve(data)
|
|
})
|
|
})
|
|
},
|
|
//获取系统菜单
|
|
GetMenu({ commit }, parentId) {
|
|
return new Promise(resolve => {
|
|
getMenu(parentId).then((res) => {
|
|
const data = res.data.data
|
|
let menu = deepClone(data);
|
|
menu.forEach(ele => {
|
|
addPath(ele, true);
|
|
})
|
|
commit('SET_MENU', menu)
|
|
resolve(menu)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
mutations: {
|
|
SET_TOKEN: (state, token) => {
|
|
setToken(token)
|
|
state.token = token;
|
|
setStore({ name: 'token', content: state.token, type: 'session' })
|
|
},
|
|
SET_USERIFNO: (state, userInfo) => {
|
|
state.userInfo = userInfo;
|
|
setStore({ name: 'userInfo', content: state.userInfo, type: 'session' })
|
|
},
|
|
SET_MENU: (state, menu) => {
|
|
state.menu = menu
|
|
setStore({ name: 'menu', content: state.menu, type: 'session' })
|
|
},
|
|
SET_MENU_ALL: (state, menuAll) => {
|
|
state.menuAll = menuAll;
|
|
},
|
|
SET_ROLES: (state, roles) => {
|
|
state.roles = roles;
|
|
},
|
|
SET_PERMISSION: (state, permission) => {
|
|
state.permission = {};
|
|
permission.forEach(ele => {
|
|
state.permission[ele] = true;
|
|
});
|
|
}
|
|
}
|
|
|
|
}
|
|
export default user
|