index.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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 userKey = "userInfo";
  15. const hPageKey = md5('historyPage');
  16. // const sysTokenKey = md5('accessToken');
  17. const sysTokenKey ='accessToken';
  18. const loginUrl = '/pages/login/loginType';
  19. export default new Vuex.Store({
  20. state: {
  21. hasLogin: false,
  22. userInfo: {
  23. customerCompanyInfoForm:{}
  24. },
  25. token: '',
  26. cartListTmp:[],
  27. hPage: ''
  28. },
  29. mutations: {
  30. addCart(state,data){
  31. if(data){
  32. state.cartListTmp = data
  33. console.log("vuex add:",state.cartListTmp)
  34. }
  35. },
  36. clearCart(state){
  37. state.cartListTmp = []
  38. console.log(state.cartListTmp)
  39. },
  40. login(state, token = '') {
  41. token = token instanceof Object ? token.token : token;
  42. state.token = token || uni.getStorageSync(sysTokenKey).accessToken || '';
  43. state.hasLogin = Boolean(state.token);
  44. //保存token
  45. uni.setStorage({
  46. key: sysTokenKey,
  47. data: {
  48. accessToken: state.token
  49. }
  50. });
  51. },
  52. /**
  53. * 退出登录,传入false只更新缓存不跳转
  54. */
  55. logout(state, v = true) {
  56. state.hasLogin = false;
  57. state.userInfo = {};
  58. state.token = '';
  59. uni.removeStorage({
  60. key: userKey
  61. });
  62. uni.removeStorage({
  63. key: sysTokenKey
  64. });
  65. //跳到登录页
  66. // v && $api.goto(loginUrl);
  67. },
  68. // historyPage(state, pUrl = '') {
  69. // if($api.alterUrl('/',pUrl) != loginUrl){
  70. // state.hPage = pUrl || uni.getStorageSync(hPageKey).url;
  71. // //记录历史页
  72. // uni.setStorage({
  73. // key: hPageKey,
  74. // data: {
  75. // url: state.hPage
  76. // }
  77. // });
  78. // }
  79. // },
  80. async upInfo(state, provider = {}) {
  81. const token = uni.getStorageSync(sysTokenKey);
  82. let thetoken = 'Bearer ' + token.accessToken;
  83. //用户信息结构
  84. const infoObj = {
  85. "page": 0,
  86. "pageNo": 0,
  87. "pageNum": 1,
  88. "pageSize": 10,
  89. "pageStart": null,
  90. "pageEnd": null,
  91. "limit": 0,
  92. "accessToken": null,
  93. "fkProductGuid": null,
  94. "fkOrgGuid": null,
  95. "state": null,
  96. "createUser": "",
  97. "createTime": "",
  98. "modifiedUser": "",
  99. "modifiedTime": "",
  100. "orgBrevity": null,
  101. "ico": null,
  102. "params": null,
  103. "codeUrlPrefix": null,
  104. "loginOrgGuid": null,
  105. "msgCode": null,
  106. "storeName": null,
  107. "guid": "",
  108. "account": "",
  109. "passwd": "",
  110. "customerType": null,
  111. "customerName": "",
  112. "nickName": "",
  113. "pid": null,
  114. "phone": null,
  115. "sex": null,
  116. "score": null,
  117. "wxId": "",
  118. "unionId": null,
  119. "headImage": "",
  120. "isCompany": 0,
  121. "isValidate": 0,
  122. "isEnable": 1,
  123. "queryStr": null,
  124. "carbonAmount": null,
  125. "goodsNum": null,
  126. "farmerNum": null,
  127. "farmerPersonNum": null,
  128. "goodsList": null,
  129. "loginType": null,
  130. "customerCompanyInfoForm": null,
  131. "channelType": null
  132. };
  133. const then = res => {
  134. if (res.data.code == 0) {
  135. let data = res.data.retBody instanceof Object ? res.data.retBody : infoObj;
  136. //处理头像连接
  137. // data.headImage = $api.alterUrl($api.href, data.headImage || "");
  138. state.userInfo = data;
  139. uni.setStorage({ //缓存用户登陆状态
  140. key: userKey,
  141. data
  142. });
  143. }
  144. };
  145. //读取本地缓存信息进行赋值
  146. then({
  147. code: 0,
  148. data: Object.assign(uni.getStorageSync(userKey),provider)
  149. });
  150. //在线更新取得用户信息
  151. then(await(
  152. http.get(config.apiBaseurl + '/carbon-h5/wap/customer/getCustomerByToken',{header: {Authorization:thetoken}}).then(res => {
  153. // console.log('getCustomerByToken', res.data);
  154. if(res.data.retHead.errCode == 0){res.data.code = 0;}
  155. // 处理非微信头像
  156. let headImage = res.data.retBody.headImage;
  157. if (headImage) {
  158. //判断是否符合http://符合返回真不符合返回假
  159. var http = /^http:\/\/.*/i.test(headImage);
  160. //判断是否符合https://符合返回真不符合返回假
  161. var https = /^https:\/\/.*/i.test(headImage);
  162. //如果两个都为假,我们就为客户添加http://
  163. if (!http && !https) {
  164. headImage = config.onlineImg + headImage;
  165. }
  166. };
  167. res.data.retBody.headImage = headImage;
  168. // 处理非微信头像
  169. return res;
  170. }).catch(err => {
  171. // console.log('err', err)
  172. })
  173. ));
  174. }
  175. }
  176. });