12345678910111213141516171819 |
- export default {
- // 应用相关
- isPc: (state) => state.app.isPc,
- screen: (state) => state.app.screen,
- static: (state) => state.app.static,
- routePrefix: (state) => state.app.routePrefix,
- loginVisiable: (state) => state.app.loginVisiable,
- themeName: (state) => state.app.themeName,
- // 用户相关
- userInfo: (state) => state.user.userInfo,
- authUserId: (state) => state.user.authUserId,
- authId: (state) => state.user.authId,
- accessToken: (state) => state.user.accessToken,
- appId: (state) => state.user.appId,
- accountType: (state) => state.user.accountType,
- clubUserId: (state) => state.user.clubUserId,
- // 供应商相关
- supplierInfo: (state) => state.supplier.supplierInfo,
- }
|