123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import Vue from 'vue'
- import Vuex from 'vuex'
- import user from './model/user'
- Vue.use(Vuex)
- const store = new Vuex.Store({
- state: {
- // #ifdef MP
- baseURL: 'https://red.liuniu946.com', //请求地址配置
- // #endif
- // #ifndef MP
- baseURL: 'https://red.liuniu946.com', //请求地址配置
- // #endif
- // baseURL: 'http://yrh.liuniu946.com', //请求地址配置
- urlFile: '/index', //项目部署所在文件夹
- loginInterceptor: false, //是否打开强制登录
- token:'',
- // #ifdef H5
- setWeiChatInfo:'',
- Spread:'',
- weichatInfo: {}, //保存微信注册信息
- weichatObj: '', //微信对象
- weichatBrowser: '' ,//当前是否为微信内置浏览器
- // #endif
- // shareData:'',//分享信息
- project_area: 0
- },
- mutations: {
-
- // #ifdef H5
- tabbar(state,provider){
- state.tabbarindex = provider;
- },
- //保存微信信息
- setWeiChatInfo(state, provider) {
- state.weichatInfo = provider;
- },
- setSpread(state, provider) {
- state.Spread = provider;
- },
- //保存微信对象
- setWeiChatObj(state, provider) {
- state.weichatObj = provider;
- }
- // #endif
- },
- modules:{
- user
- },
- actions: {
- }
- })
- export default store
|