cyywl_server/yudao-ui-app/store/getters.js

18 lines
647 B
JavaScript
Raw Permalink Normal View History

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,
spreadId: state => state.app.spreadId,
isProperty: state => state.app.isProperty,
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
};