index.js 943 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. // #ifdef H5
  9. baseURL:window.location.protocol + "//" + window.location.host,//请求地址配置
  10. // #endif
  11. // #ifndef H5
  12. baseURL:'https://stx2.qiniu1314.com',//请求地址配置
  13. // #endif
  14. urlFile:'/index',//项目部署所在文件夹
  15. userInfo: {}, //登录信息
  16. loginInterceptor:false,//是否打开强制登录
  17. // #ifdef H5 || MP-WEIXIN
  18. weichatInfo:{},//保存微信注册信息
  19. weichatObj:'',//微信对象
  20. // #endif
  21. },
  22. mutations: {
  23. //保存微信信息
  24. setWeiChatInfo(state, provider) {
  25. state.weichatInfo = provider;
  26. },
  27. //保存微信对象
  28. setWeiChatObj(state, provider) {
  29. state.weichatObj = provider;
  30. }
  31. },
  32. modules:{
  33. user
  34. },
  35. actions: {}
  36. })
  37. export default store