user.js 640 B

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