index.js 5.0 KB

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