getters.js 507 B

12345678910111213
  1. export default {
  2. isPc: (state) => state.app.isPc,
  3. screen: (state) => state.app.screen,
  4. static: (state) => state.app.static,
  5. loginVisiable: (state) => state.app.loginVisiable,
  6. userInfo: (state) => state.user.userInfo,
  7. authUserId: (state) => state.user.authUserId,
  8. accessToken: (state) => state.user.accessToken,
  9. appId: (state) => state.user.appId,
  10. accountType: (state) => state.user.accountType,
  11. type: (state) => state.user.type,
  12. supplierInfo: (state) => state.supplier.supplierInfo,
  13. }