app.js 1.8 KB

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