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.

24 lines
1.2 KiB

3 months ago
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. export default {
  11. token: state => state.app.token,
  12. isLogin: state => !!state.app.token,
  13. backgroundColor: state => state.app.backgroundColor,
  14. userInfo: state => state.app.userInfo || {},
  15. uid: state => state.app.uid,
  16. homeActive: state => state.app.homeActive,
  17. home: state => state.app.home,
  18. chatUrl: state => state.app.chatUrl,
  19. systemPlatform: state => state.app.systemPlatform,
  20. productType: state => state.app.productType,
  21. bottomNavigationIsCustom: state => state.app.bottomNavigationIsCustom,
  22. globalData: state => state.app.globalData,
  23. };