index.js 4.8 KB

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