work-order/work-order-uniapp/store/modules/user.js
2025-07-27 20:34:15 +08:00

142 lines
4.0 KiB
JavaScript

import { getInfo, login, logout, wxLogin } from '@/api/login'
import config from '@/config'
import { getToken, removeToken, setToken } from '@/utils/auth'
import constant from '@/utils/constant'
import storage from '@/utils/storage'
const baseUrl = config.baseUrl
const user = {
state: {
token: getToken(),
name: storage.get(constant.name),
userId: storage.get(constant.userId),
avatar: storage.get(constant.avatar),
roles: storage.get(constant.roles),
permissions: storage.get(constant.permissions),
mobile: storage.get(constant.mobile),
mchId: storage.get(constant.mchId)
},
mutations: {
SET_TOKEN: (state, token) => {
state.token = token
},
SET_NAME: (state, name) => {
state.name = name
storage.set(constant.name, name)
},
SET_AVATAR: (state, avatar) => {
state.avatar = avatar
storage.set(constant.avatar, avatar)
},
SET_ROLES: (state, roles) => {
state.roles = roles
storage.set(constant.roles, roles)
},
SET_PERMISSIONS: (state, permissions) => {
state.permissions = permissions
storage.set(constant.permissions, permissions)
},
SET_USER_ID: (state, userId) => {
state.userId = userId;
storage.set(constant.userId, userId)
},
SET_MOBILE: (state, mobile) => {
state.mobile = mobile;
storage.set(constant.mobile, mobile)
},
SET_MCH_ID: (state, mchId) => {
state.mchId = mchId;
storage.set(constant.mchId, mchId)
}
},
actions: {
// 微信登录
WxLogin({commit}) {
return new Promise((resolve, reject) => {
wx.login({
success: (wxRes) => {
if (wxRes.code) {
let invitorId = uni.getStorageSync('invitorId')
wxLogin(wxRes.code, config.appId, invitorId).then(res => {
setToken(res.token)
commit('SET_TOKEN', res.token)
resolve()
}).catch(error => {
reject(error)
})
} else {
this.$modal.msgError("登录失败")
}
}
})
})
},
// 登录
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
const avatar = (user == null || user.avatar === "" || user.avatar == null) ? require("@/static/images/profile.jpg") : baseUrl + user.avatar
const username = (user == null || user.nickName === "" || user.nickName == null) ? "" : user.nickName
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_USER_ID', user.userId)
commit('SET_MOBILE', user.phonenumber)
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()
storage.clean()
resolve()
}).catch(error => {
reject(error)
})
})
},
// 设置商家ID
SetMchId({ commit }, mchId) {
commit('SET_MCH_ID', mchId)
storage.set(constant.mchId, mchId)
}
}
}
export default user