user.js 618 B

123456789101112131415161718192021222324252627282930313233
  1. import { reqLogin } from "@/request/api.js";
  2. const state = {
  3. loginInfo: {}, //当前登录用户信息
  4. };
  5. const getters = {};
  6. const mutations = {
  7. // 登录
  8. vxLogin(state, args) {
  9. state.loginInfo = args;
  10. },
  11. // 修改当前登录用户信息
  12. changeLoginInfo(state, args){
  13. state.loginInfo.user = args;
  14. }
  15. };
  16. const actions = {
  17. // 登录
  18. async vxLogin({ commit }, args) {
  19. let result = await reqLogin(args);
  20. if (result.status == 200) {
  21. commit("vxLogin", result.user);
  22. }
  23. return result;
  24. },
  25. };
  26. export default {
  27. namespaced: true,
  28. state,
  29. getters,
  30. mutations,
  31. actions,
  32. };