index.js 766 B

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