You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
625 B
39 lines
625 B
7 months ago
|
import Vue from 'vue'
|
||
|
import Vuex from 'vuex'
|
||
|
|
||
|
Vue.use(Vuex)
|
||
|
|
||
|
const store = new Vuex.Store({
|
||
|
state: {
|
||
|
hasLogin: false,
|
||
|
userInfo: {},
|
||
|
},
|
||
|
mutations: {
|
||
|
login(state, provider) {
|
||
|
|
||
|
state.hasLogin = true;
|
||
|
state.userInfo = provider;
|
||
|
uni.setStorage({//缓存用户登陆状态
|
||
|
key: 'userInfo',
|
||
|
data: provider
|
||
|
})
|
||
|
console.log(state.userInfo);
|
||
|
},
|
||
|
logout(state) {
|
||
|
state.hasLogin = false;
|
||
|
state.userInfo = {};
|
||
|
uni.removeStorage({
|
||
|
key: 'userInfo'
|
||
|
});
|
||
|
uni.removeStorage({
|
||
|
key: 'token'
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
actions: {
|
||
|
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export default store
|