index.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /**
  2. * 登录状态管理
  3. * 个人信息数据持久化
  4. */
  5. import Vue from 'vue';
  6. import Vuex from 'vuex';
  7. // import $api from "@/api.js";
  8. import Request from '@/js_sdk/luch-request/luch-request/index.js';
  9. const http = new Request();
  10. import md5 from '@/js_sdk/js-md5/md5.min.js';
  11. import {config} from '@/config/config.js'
  12. Vue.use(Vuex);
  13. const userKey = md5("userInfo");
  14. const hPageKey = md5('historyPage');
  15. const sysTokenKey = md5('accessToken');
  16. const loginUrl = '/pages/login/loginType';
  17. const token = uni.getStorageSync(sysTokenKey);
  18. let thetoken = 'Bearer ' + token.accessToken;
  19. export default new Vuex.Store({
  20. state: {
  21. hasLogin: false,
  22. userInfo: {
  23. customerCompanyInfoForm:{}
  24. },
  25. token: '',
  26. hPage: ''
  27. },
  28. mutations: {
  29. login(state, token = '') {
  30. token = token instanceof Object ? token.accessToken : token;
  31. state.token = token || uni.getStorageSync(sysTokenKey).accessToken || '';
  32. state.hasLogin = Boolean(state.token);
  33. //保存token
  34. uni.setStorage({
  35. key: sysTokenKey,
  36. data: {
  37. accessToken: state.token
  38. }
  39. });
  40. },
  41. /**
  42. * 退出登录,传入false只更新缓存不跳转
  43. */
  44. logout(state, v = true) {
  45. state.hasLogin = false;
  46. state.userInfo = {};
  47. state.token = '';
  48. uni.removeStorage({
  49. key: userKey
  50. });
  51. uni.removeStorage({
  52. key: sysTokenKey
  53. });
  54. //跳到登录页
  55. // v && $api.goto(loginUrl);
  56. },
  57. // historyPage(state, pUrl = '') {
  58. // if($api.alterUrl('/',pUrl) != loginUrl){
  59. // state.hPage = pUrl || uni.getStorageSync(hPageKey).url;
  60. // //记录历史页
  61. // uni.setStorage({
  62. // key: hPageKey,
  63. // data: {
  64. // url: state.hPage
  65. // }
  66. // });
  67. // }
  68. // },
  69. async upInfo(state, provider = {}) {
  70. //用户信息结构
  71. const infoObj = {
  72. "guid": "",
  73. "account": "",
  74. "customerType": '',
  75. "customerName": "",
  76. "nickName": "",
  77. "phone": "",
  78. "sex": '',
  79. "headImage": "",
  80. "queryStr": '',
  81. "carbonAmount": '',
  82. "farmerNum": '',
  83. "farmerPersonNum": '',
  84. "loginType": '',
  85. "customerCompanyInfoForm": {
  86. "guid": "",
  87. "fkCustomerId": "",
  88. "companyName": "",
  89. "principals": "",
  90. "phone": "",
  91. "email": "",
  92. "companyAddress": "",
  93. "companyImages": "",
  94. "condition": "",
  95. "customerType": "",
  96. "imageList": '',
  97. "companyType": ''
  98. },
  99. "channelType": ''
  100. };
  101. const then = res => {
  102. console.log('222',res)
  103. // if (res.code == 0) {
  104. // let data = res.data instanceof Object ? res.data : infoObj;
  105. // //处理头像连接
  106. // // data.headImage = $api.alterUrl($api.href, data.headImage || "");
  107. // state.userInfo = data;
  108. // uni.setStorage({ //缓存用户登陆状态
  109. // key: userKey,
  110. // data
  111. // });
  112. // }
  113. }
  114. //读取本地缓存信息进行赋值
  115. then({
  116. code: 0,
  117. data: Object.assign(uni.getStorageSync(userKey),provider)
  118. });
  119. //在线更新取得用户信息
  120. // then(await $api.$http({
  121. // url: config.apiBaseurl + '/carbon-h5/wap/customer/getCustomerByToken'
  122. // }));
  123. then(await
  124. http.get(config.apiBaseurl + '/carbon-h5/wap/customer/getCustomerByToken',{header: {Authorization:thetoken}}).then(res => {
  125. console.log('getCustomerByToken', res);
  126. }).catch(err => {
  127. // console.log('err', err)
  128. })
  129. );
  130. }
  131. }
  132. });