index.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. Vue.use(Vuex)
  4. import {code2Session, logout, checkLogin} from '@/api/login.js'
  5. import {getLookUpDatas} from '@/api/data.js'
  6. import { getScanVinQty } from '@/api/car.js'
  7. import { xprhStoreApplyFindLast } from '@/api/xprh.js'
  8. let lifeData = {};
  9. try{
  10. // 尝试获取本地是否存在lifeData变量,第一次启动APP时是不存在的
  11. lifeData = uni.getStorageSync('lifeData');
  12. }catch(e){
  13. }
  14. // 需要永久存储,且下次APP启动需要取出的,在state中的变量名
  15. let saveStateKeys = ['vuex_carBrandList'];
  16. // 保存变量到本地存储中
  17. const saveLifeData = function(key, value){
  18. // 判断变量名是否在需要存储的数组中
  19. if(saveStateKeys.indexOf(key) != -1) {
  20. // 获取本地存储的lifeData对象,将变量添加到对象中
  21. let tmp = uni.getStorageSync('lifeData');
  22. // 第一次打开APP,不存在lifeData变量,故放一个{}空对象
  23. tmp = tmp ? tmp : {};
  24. tmp[key] = value;
  25. // 执行这一步后,所有需要存储的变量,都挂载在本地的lifeData对象中
  26. uni.setStorageSync('lifeData', tmp);
  27. }
  28. }
  29. const store = new Vuex.Store({
  30. state: {
  31. /**
  32. * 是否需要强制登录
  33. */
  34. forcedLogin: false,
  35. hasLogin: false,
  36. isOpenLocation: false, // 用户是否开启授权开启定位
  37. // 如果上面从本地获取的lifeData对象下有对应的属性,就赋值给state中对应的变量
  38. // 加上vuex_前缀,是防止变量名冲突,也让人一目了然
  39. vuex_carBrandList: lifeData.vuex_carBrandList ? lifeData.vuex_carBrandList : [] ,// 车型品牌数据
  40. vuex_carType: {}, // 选择的车辆品牌
  41. deviceNo: "",
  42. vuex_storeShelf: null, // 数字货架是否启用
  43. vuex_settleRecordDetail: null, // 结算记录详情
  44. vuex_settleOrderDetail: null, // 结算记录订单详情
  45. vuex_shelfChoosePart: [], // 数字货架临配选择配件
  46. vuex_allLookUp: [], // 数据字典
  47. vuex_paymentTypeList: [], // 支付方式
  48. vuex_userInfo: null,
  49. vuex_openid: "",
  50. vuex_nowStaffData: null, // 员工临时数据
  51. vuex_vinScanNums:null, // 扫描次数
  52. vuex_storeAuthInfo: null // 门店认证状态信息
  53. },
  54. getters:{
  55. getOpeid(state){
  56. return state.vuex_openid
  57. }
  58. },
  59. mutations: {
  60. login(state, data) {
  61. console.log(data)
  62. state.hasLogin = true;
  63. uni.setStorageSync('token', data.access_token);
  64. // VISITOR:游客,EMPLOYEE:雇员
  65. data.auth_user['identifyType'] = 'VISITOR'
  66. uni.setStorageSync('userInfo', data.auth_user);
  67. state.vuex_userInfo = data.auth_user
  68. },
  69. logout(state) {
  70. state.hasLogin = false;
  71. uni.removeStorageSync('token')
  72. uni.removeStorageSync('userInfo')
  73. state.vuex_userInfo = null
  74. },
  75. openId(state,id) {
  76. console.log(id,'----------')
  77. state.vuex_openid = id
  78. uni.setStorageSync('openid', id);
  79. },
  80. $uStore(state, payload) {
  81. // 判断是否多层级调用,state中为对象存在的情况,诸如user.info.score = 1
  82. let nameArr = payload.name.split('.');
  83. let saveKey = '';
  84. let len = nameArr.length;
  85. if(nameArr.length >= 2) {
  86. let obj = state[nameArr[0]];
  87. for(let i = 1; i < len - 1; i ++) {
  88. obj = obj[nameArr[i]];
  89. }
  90. obj[nameArr[len - 1]] = payload.value;
  91. saveKey = nameArr[0];
  92. } else {
  93. // 单层级变量,在state就是一个普通变量的情况
  94. state[payload.name] = payload.value;
  95. saveKey = payload.name;
  96. }
  97. // 保存变量到本地,见顶部函数定义
  98. saveLifeData(saveKey, state[saveKey])
  99. },
  100. isOpenLocation(state,isOpenLocation){
  101. state.isOpenLocation = isOpenLocation
  102. },
  103. setHasLogin(state,isLogin){
  104. state.hasLogin = isLogin;
  105. state.vuex_userInfo = uni.getStorageSync('userInfo')
  106. },
  107. setScanNums(state,nums) {
  108. state.vuex_vinScanNums = nums
  109. },
  110. setStoreAuthInfo(state,obj) {
  111. state.vuex_storeAuthInfo = obj
  112. }
  113. },
  114. actions: {
  115. // 获取门店审核
  116. getSotreAuth(context,mobile){
  117. xprhStoreApplyFindLast({contactPhone: mobile}).then(res => {
  118. console.log(res)
  119. context.commit('setStoreAuthInfo',res.data || null)
  120. })
  121. },
  122. // 获取查询次数
  123. getScanNums(context,provider){
  124. getScanVinQty().then(res => {
  125. context.commit('setScanNums',res.data||0)
  126. })
  127. },
  128. wxLogin(context,provider){
  129. uni.login({
  130. provider: provider,
  131. success(result) {
  132. console.log(result)
  133. if (result.code) {
  134. code2Session({
  135. code: result.code
  136. }).then(res => {
  137. console.log(res)
  138. if (res.status === '200') {
  139. context.commit('openId',res.data)
  140. };
  141. });
  142. }
  143. }
  144. });
  145. },
  146. // 登出
  147. userLogout(context,data){
  148. logout().then(res => {
  149. console.log(res,'out')
  150. if(res.status == 200){
  151. context.commit('logout')
  152. }
  153. })
  154. },
  155. // 检测是否登录
  156. checkLogin(context,callback){
  157. console.log(callback)
  158. checkLogin().then(res => {
  159. if(res.status == '200'){
  160. context.commit('setHasLogin',true)
  161. callback&&callback()
  162. }else{
  163. context.commit('logout')
  164. }
  165. })
  166. },
  167. // 检测是否开启定位
  168. checkIsOpenLocation(context,data) {
  169. uni.authorize({
  170. scope: 'scope.userLocation',
  171. success:()=> {
  172. // 判断手机设置是否开启对微信的定位服务
  173. const systemInfo = uni.getSystemInfoSync()
  174. if(systemInfo.locationAuthorized) {
  175. context.commit('isOpenLocation', true)
  176. } else {
  177. context.commit('isOpenLocation', false)
  178. }
  179. },
  180. fail() {
  181. uni.getSetting({
  182. success(res) {
  183. if(!res.authSetting['scope.userLocation'] || !res.authSetting['scope.userLocationBackground']){
  184. context.commit('isOpenLocation', false)
  185. } else {
  186. context.commit('isOpenLocation', true)
  187. }
  188. },
  189. fail() {
  190. context.commit('isOpenLocation', false)
  191. }
  192. })
  193. }
  194. })
  195. },
  196. }
  197. })
  198. export default store