index.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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','vuex_userInfo'];
  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_userPhoto: null, // 用户头像
  50. vuex_permCodes: [], // 权限码
  51. vuex_openid: "",
  52. vuex_nowStaffData: null, // 员工临时数据
  53. vuex_nowRoleInfo: null, // 角色
  54. vuex_vinScanNums:null, // 扫描次数
  55. vuex_scanMaxNums: 10, // 最大扫描次数
  56. vuex_storeAuthInfo: null // 门店认证状态信息
  57. },
  58. getters:{
  59. getOpeid(state){
  60. return state.vuex_openid
  61. }
  62. },
  63. mutations: {
  64. login(state, data) {
  65. console.log(data,'-----loginSucees-----')
  66. state.hasLogin = true;
  67. state.vuex_userInfo = data.auth_user;
  68. state.vuex_userPhoto = data.auth_user.extInfo&&data.auth_user.extInfo.userExtInfo ? data.auth_user.extInfo.userExtInfo.headImage : ''
  69. // VISITOR:游客,EMPLOYEE:雇员
  70. data.auth_user['identifyType'] = data.sysUserFlag == '0' ? 'VISITOR' : 'EMPLOYEE';
  71. data.auth_user['sysUserFlag'] = data.sysUserFlag;
  72. uni.setStorageSync('token', data.access_token);
  73. uni.setStorageSync('userInfo', data.auth_user);
  74. // 权限码,游客没有
  75. const permCodes = data.sysUserFlag == '0' ? null : data.auth_user.permCodes.filter(item => item.indexOf("_mini")>=0);
  76. state.vuex_permCodes = permCodes;
  77. uni.setStorageSync('permCodes', permCodes);
  78. },
  79. logout(state) {
  80. console.log(state,'----logout------')
  81. state.hasLogin = false;
  82. uni.removeStorageSync('token')
  83. uni.removeStorageSync('userInfo')
  84. uni.removeStorageSync('permCodes')
  85. state.vuex_storeShelf = null
  86. state.vuex_userInfo = null
  87. state.vuex_userPhoto = null
  88. state.vuex_permCodes = null
  89. },
  90. openId(state,id) {
  91. state.vuex_openid = id
  92. uni.setStorageSync('openid', id);
  93. },
  94. $uStore(state, payload) {
  95. // 判断是否多层级调用,state中为对象存在的情况,诸如user.info.score = 1
  96. let nameArr = payload.name.split('.');
  97. let saveKey = '';
  98. let len = nameArr.length;
  99. if(nameArr.length >= 2) {
  100. let obj = state[nameArr[0]];
  101. for(let i = 1; i < len - 1; i ++) {
  102. obj = obj[nameArr[i]];
  103. }
  104. obj[nameArr[len - 1]] = payload.value;
  105. saveKey = nameArr[0];
  106. } else {
  107. // 单层级变量,在state就是一个普通变量的情况
  108. state[payload.name] = payload.value;
  109. saveKey = payload.name;
  110. }
  111. // 保存变量到本地,见顶部函数定义
  112. saveLifeData(saveKey, state[saveKey])
  113. },
  114. isOpenLocation(state,isOpenLocation){
  115. state.isOpenLocation = isOpenLocation
  116. },
  117. setHasLogin(state,isLogin){
  118. state.hasLogin = isLogin;
  119. state.vuex_userInfo = uni.getStorageSync('userInfo')
  120. },
  121. setScanNums(state,nums) {
  122. state.vuex_vinScanNums = nums
  123. },
  124. setStoreAuthInfo(state,obj) {
  125. state.vuex_storeAuthInfo = obj
  126. }
  127. },
  128. actions: {
  129. // 获取门店审核
  130. getSotreAuth(context,mobile){
  131. xprhStoreApplyFindLast({contactPhone: mobile}).then(res => {
  132. console.log(res)
  133. context.commit('setStoreAuthInfo',res.data || null)
  134. if(res.status == 200){
  135. if(res.data&&res.data.auditStatus=='PASS'){
  136. uni.showModal({
  137. title: '提示',
  138. content: '门店认证审核已通过,请重新登录!',
  139. confirmText: '去登录',
  140. showCancel: false,
  141. success() {
  142. context.commit('logout');
  143. uni.navigateTo({
  144. url: '/pages/login/login'
  145. });
  146. }
  147. })
  148. }
  149. }
  150. })
  151. },
  152. // 获取查询次数
  153. getScanNums(context,provider){
  154. getScanVinQty().then(res => {
  155. context.commit('setScanNums',res.data||0)
  156. })
  157. },
  158. wxLogin(context,provider){
  159. uni.login({
  160. provider: provider,
  161. success(result) {
  162. console.log(result)
  163. if (result.code) {
  164. code2Session({
  165. code: result.code
  166. }).then(res => {
  167. console.log(res)
  168. if (res.status === '200') {
  169. context.commit('openId',res.data)
  170. };
  171. });
  172. }
  173. }
  174. });
  175. },
  176. // 登出
  177. userLogout(context,data){
  178. logout().then(res => {
  179. console.log(res,'out')
  180. if(res.status == 200){
  181. context.commit('logout')
  182. }
  183. })
  184. },
  185. // 检测是否登录
  186. checkLogin(context,callback){
  187. console.log(callback,'--checkLogin--')
  188. checkLogin().then(res => {
  189. if(res.status == '200'){
  190. context.commit('setHasLogin',true)
  191. callback&&callback()
  192. }else{
  193. context.commit('logout')
  194. }
  195. })
  196. },
  197. // 检测是否开启定位
  198. checkIsOpenLocation(context,data) {
  199. uni.authorize({
  200. scope: 'scope.userLocation',
  201. success:()=> {
  202. // 判断手机设置是否开启对微信的定位服务
  203. const systemInfo = uni.getSystemInfoSync()
  204. if(systemInfo.locationAuthorized) {
  205. context.commit('isOpenLocation', true)
  206. } else {
  207. context.commit('isOpenLocation', false)
  208. }
  209. },
  210. fail() {
  211. uni.getSetting({
  212. success(res) {
  213. if(!res.authSetting['scope.userLocation'] || !res.authSetting['scope.userLocationBackground']){
  214. context.commit('isOpenLocation', false)
  215. } else {
  216. context.commit('isOpenLocation', true)
  217. }
  218. },
  219. fail() {
  220. context.commit('isOpenLocation', false)
  221. }
  222. })
  223. }
  224. })
  225. },
  226. }
  227. })
  228. export default store