2020-08-13 08:12:57 +00:00
|
|
|
export default {
|
2021-03-19 10:26:43 +00:00
|
|
|
token: state => state.app.token,
|
|
|
|
isLogin: state => !!state.app.token,
|
|
|
|
backgroundColor: state => state.app.backgroundColor,
|
|
|
|
userInfo: state => state.app.userInfo || {},
|
|
|
|
uid: state => state.app.uid,
|
2020-08-13 08:12:57 +00:00
|
|
|
homeActive: state => state.app.homeActive,
|
|
|
|
home: state => state.app.home,
|
2021-03-19 10:26:43 +00:00
|
|
|
chatUrl: state => state.app.chatUrl,
|
2021-06-11 09:41:16 +00:00
|
|
|
systemPlatform: state => state.app.systemPlatform,
|
2023-11-25 11:45:53 +00:00
|
|
|
openid: state => state.app.openid,
|
2021-06-11 09:41:16 +00:00
|
|
|
productType: state => state.app.productType
|
2020-08-13 08:12:57 +00:00
|
|
|
};
|