2023-05-15 10:12:22 +08:00
|
|
|
export default {
|
|
|
|
token: state => state.app.token,
|
|
|
|
isLogin: state => !!state.app.token,
|
|
|
|
backgroundColor: state => state.app.backgroundColor,
|
|
|
|
userInfo: state => state.app.userInfo || {},
|
2023-05-19 11:25:26 +08:00
|
|
|
tenantInfo: state => state.app.tenantInfo || {},
|
2023-05-15 10:12:22 +08:00
|
|
|
uid: state => state.app.uid,
|
2023-05-18 14:56:38 +08:00
|
|
|
tenantId: state => state.app.tenantId,
|
2023-05-18 18:07:27 +08:00
|
|
|
openId: state => state.app.openId,
|
2023-05-15 10:12:22 +08:00
|
|
|
homeActive: state => state.app.homeActive,
|
|
|
|
home: state => state.app.home,
|
|
|
|
chatUrl: state => state.app.chatUrl,
|
|
|
|
systemPlatform: state => state.app.systemPlatform,
|
|
|
|
productType: state => state.app.productType
|
|
|
|
};
|