an_xiao/police_uniapp/store/openids/openid.js

20 lines
316 B
JavaScript
Raw Permalink Normal View History

2024-07-25 16:03:08 +08:00
export default {
namespaced: true,
state: {
// 用户信息
openid: {},
},
mutations: {
openidList(state, data){
console.log(state,data);
state.openid = data;
},
clearuserInforma(state){
state.userInformation = {}
}
},
actions: {},
getters: {
getopenid:state => state.openid
},
};