index.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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:"https://yrh.liuniu946.com",//'http://eb.shuibo.net',//请求地址配置
  8. // baseURL:"http://cys.liuniu946.com",//'http://eb.shuibo.net',//请求地址配置
  9. loginInterceptor:true,//是否打开强制登录
  10. urlFile:'/index',//项目部署所在文件夹
  11. // #ifdef H5 || MP-WEIXIN
  12. weichatInfo:{},//保存微信注册信息
  13. weichatObj:'',//微信对象
  14. // #endif
  15. // #ifdef APP-PLUS
  16. isShowIllegality:false,//不显示ios审核不允许的功能
  17. // #endif
  18. // #ifndef APP-PLUS
  19. isShowIllegality:true,//允许显示隐藏信息
  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. // 修改显示隐藏ios审核不允许显示的功能
  32. changeState(state, provider){
  33. state.isShowIllegality = provider;
  34. }
  35. },
  36. modules:{
  37. user
  38. },
  39. actions: {}
  40. })
  41. export default store