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.
32 lines
652 B
32 lines
652 B
2 years ago
|
"use strict";
|
||
|
const common_vendor = require("../common/vendor.js");
|
||
|
const store = common_vendor.createStore({
|
||
|
state: {
|
||
|
islogin: true,
|
||
|
access_token: "",
|
||
|
refresh_token: "",
|
||
|
userinfo: {}
|
||
|
},
|
||
|
mutations: {
|
||
|
updateislog(state, islogin) {
|
||
|
state.islogin = islogin;
|
||
|
},
|
||
|
updatetk(state, access_token) {
|
||
|
state.access_token = access_token;
|
||
|
},
|
||
|
updaterftk(state, refresh_token) {
|
||
|
state.refresh_token = refresh_token;
|
||
|
},
|
||
|
updatauser(state, userinfo) {
|
||
|
state.userinfo = userinfo;
|
||
|
}
|
||
|
},
|
||
|
actions: {
|
||
|
huoqubeijin(context) {
|
||
|
}
|
||
|
},
|
||
|
getters: {},
|
||
|
modules: {}
|
||
|
});
|
||
|
exports.store = store;
|