app.js 1.9 KB

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