123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import config from '@/config'
- import storage from '@/utils/storage'
- import constant from '@/utils/constant'
- import { login, logout, getInfo } from '@/api/login'
- import { getToken, setToken, removeToken } from '@/utils/auth'
- import { UserState, UserForm } from '@/types/store'
- import { Module } from 'vuex'
- const baseUrl = config.baseUrl
- const user: Module<UserState, UserState> = {
- state: {
- token: getToken(),
- name: storage.get(constant.name),
- avatar: storage.get(constant.avatar),
- roles: storage.get(constant.roles),
- permissions: storage.get(constant.permissions)
- },
- mutations: {
- SET_TOKEN: (state, token: string) => {
- state.token = token
- },
- SET_NAME: (state, name: string) => {
- state.name = name
- storage.set(constant.name, name)
- },
- SET_AVATAR: (state, avatar: string) => {
- state.avatar = avatar
- storage.set(constant.avatar, avatar)
- },
- SET_ROLES: (state, roles: Array<string>) => {
- state.roles = roles
- storage.set(constant.roles, roles)
- },
- SET_PERMISSIONS: (state, permissions: Array<string>) => {
- state.permissions = permissions
- storage.set(constant.permissions, permissions)
- }
- },
- actions: {
- // 登录
- Login({ commit }, userInfo: UserForm) {
- console.log('>>>>進來了', userInfo);
- const username = userInfo.username
- const password = userInfo.password
- const code = userInfo.code
- const uuid = userInfo.uuid
- return new Promise((resolve, reject) => {
- login(username, password, code, uuid).then((res: any) => {
- // console.log(login(),'接口调用了')
- setToken(res.token)
- commit('SET_TOKEN', res.token)
- resolve(res)
- }).catch(error => {
- reject(error)
- })
- })
- },
- // 获取用户信息
- GetInfo({ commit, state }) {
- return new Promise((resolve, reject) => {
- getInfo().then((res: any) => {
- const user = res.user
- const avatar = (user == null || user.avatar == "" || user.avatar == null) ? "@/static/images/profile.jpg" : baseUrl + user.avatar
- const username = (user == null || user.userName == "" || user.userName == null) ? "" : user.userName
- if (res.roles && res.roles.length > 0) {
- commit('SET_ROLES', res.roles)
- commit('SET_PERMISSIONS', res.permissions)
- } else {
- commit('SET_ROLES', ['ROLE_DEFAULT'])
- }
- commit('SET_NAME', username)
- commit('SET_AVATAR', avatar)
- resolve(res)
- }).catch(error => {
- reject(error)
- })
- })
- },
- // 退出系统
- LogOut({ commit, state }) {
- return new Promise((resolve, reject) => {
- logout().then((res) => {
- commit('SET_TOKEN', '')
- commit('SET_ROLES', [])
- commit('SET_PERMISSIONS', [])
- removeToken()
- storage.clean()
- resolve(res)
- }).catch(error => {
- reject(error)
- })
- })
- }
- }
- }
- export default user
|