getters.js 459 B

123456789101112
  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. accessToken: (state) => state.user.accessToken,
  8. appId: (state) => state.user.appId,
  9. accountType: (state) => state.user.accountType,
  10. type: (state) => state.user.type,
  11. supplierInfo: (state) => state.supplier.supplierInfo,
  12. }