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.
21 lines
444 B
21 lines
444 B
// export default {
|
|
// userInfo: state => state.user.userInfo,
|
|
// pushMessage: state => state.push.pushMessage,
|
|
// currentAdd: state=>{
|
|
// };
|
|
|
|
export default {
|
|
pushMessage: state => state.push.pushMessage,
|
|
getCurrentAdd: function (state) {
|
|
//返回一个函数用于接收
|
|
return function (id) {
|
|
let add = state.add.addList.find(item => item.id == id)
|
|
if(add) {
|
|
return add
|
|
}else {
|
|
return {}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|