wbc
2025-07-26 0a89440a54cd9066688b2a7c9d21c4c4e49c3edc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import Vue from 'vue'
import Vuex from 'vuex'
 
//引入vuex插件 进行状态管理
Vue.use(Vuex) 
const store = new Vuex.Store({
    state: { 
        id: 'id',
        serverInfo:{//服务信息
            networkFlag:'内网',
            serverURLInt:'http://10.0.2.2:10054',//服务器体检 10.0.1.104:10054
            serverURL:'http://10.0.2.2:10054',//本地调试地址
            serverAPI:'http://localhost:10054/api',//当前正在使用的服务器,默认为外网  localhost
        }
    },
    mutations: {
        test(state,id){
            state.id = id;
        }
    },
    getters:{
        currentColor(state){
            return state.colorList[state.colorIndex]
        }
    },
    actions: {
        // lazy loading openid
        
    }
})
 
export default store