index.js 870 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import user from './model/user'
  4. Vue.use(Vuex)
  5. const store = new Vuex.Store({
  6. state: {
  7. // baseURL:"http://yrh.liuniu946.com",//'http://eb.shuibo.net',//请求地址配置
  8. baseURL:'http://hb.liuniukj.com',//请求地址配置
  9. urlFile:'/index',//项目部署所在文件夹
  10. userInfo: {}, //登录信息
  11. loginInterceptor:false,//是否打开强制登录
  12. // #ifdef H5 || MP-WEIXIN
  13. weichatInfo:{},//保存微信注册信息
  14. weichatObj:'',//微信对象
  15. // #endif
  16. app: {}
  17. },
  18. mutations: {
  19. //保存微信信息
  20. setWeiChatInfo(state, provider) {
  21. state.weichatInfo = provider;
  22. },
  23. //保存微信对象
  24. setWeiChatObj(state, provider) {
  25. state.weichatObj = provider;
  26. },
  27. changeState(state,provider) {
  28. state.app = provider;
  29. }
  30. },
  31. modules:{
  32. user
  33. },
  34. actions: {}
  35. })
  36. export default store