app.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import {
  2. getUserInfo
  3. } from "../../api/user.js";
  4. import {
  5. LOGIN_STATUS,
  6. UID
  7. } from '../../config/cache';
  8. import Cache from '../../utils/cache';
  9. import {
  10. USER_INFO
  11. } from '../../config/cache';
  12. const state = {
  13. token: Cache.get(LOGIN_STATUS) || false,
  14. backgroundColor: "#fff",
  15. userInfo: {},
  16. uid: Cache.get(UID) || 0,
  17. homeActive: false,
  18. phoneStatus:true,
  19. pageFooter:uni.getStorageSync('pageFoot') || {}
  20. };
  21. const mutations = {
  22. SETPHONESTATUS(state,val){
  23. state.phoneStatus = val;
  24. },
  25. LOGIN(state, opt) {
  26. state.token = opt.token;
  27. Cache.set(LOGIN_STATUS, opt.token, opt.time);
  28. },
  29. SETUID(state,val){
  30. state.uid = val;
  31. Cache.set(UID, val);
  32. },
  33. UPDATE_LOGIN(state, token) {
  34. state.token = token;
  35. },
  36. LOGOUT(state) {
  37. state.token = false;
  38. state.uid = 0
  39. Cache.clear(LOGIN_STATUS);
  40. Cache.clear(UID);
  41. },
  42. BACKGROUND_COLOR(state, color) {
  43. state.color = color;
  44. document.body.style.backgroundColor = color;
  45. },
  46. UPDATE_USERINFO(state, userInfo) {
  47. state.userInfo = userInfo;
  48. Cache.set(USER_INFO, userInfo);
  49. },
  50. OPEN_HOME(state) {
  51. state.homeActive = true;
  52. },
  53. CLOSE_HOME(state) {
  54. state.homeActive = false;
  55. },
  56. FOOT_UPLOAD(state,data){
  57. state.pageFooter = data
  58. }
  59. };
  60. const actions = {
  61. USERINFO({
  62. state,
  63. commit
  64. }, force) {
  65. if (state.userInfo !== null && !force)
  66. return Promise.resolve(state.userInfo);
  67. else
  68. return new Promise(reslove => {
  69. getUserInfo().then(res => {
  70. commit("UPDATE_USERINFO", res.data);
  71. Cache.set(USER_INFO, res.data);
  72. reslove(res.data);
  73. });
  74. }).catch(() => {
  75. });
  76. }
  77. };
  78. export default {
  79. state,
  80. mutations,
  81. actions
  82. };