123456789101112131415161718192021222324 |
- 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,
- screenWidth: (state) => state.app.screenWidth,
- showHeader: (state) => state.app.showHeader,
- showFooter: (state) => state.app.showFooter,
- wxConfig: (state) => state.app.wxConfig,
- // 用户相关
- userInfo: (state) => state.user.userInfo,
- authId: (state) => state.user.userInfo.authId,
- accessToken: (state) => state.user.userInfo.accessToken,
- clubUserId: (state) => state.user.userInfo.clubUserId,
- accountType: (state) => state.user.accountType,
- mobile: (state) => state.user.userInfo.mobile,
- // 供应商相关
- supplierInfo: (state) => state.supplier.supplierInfo,
- authUserId: (state) => state.supplier.supplierInfo.authUserId,
- appId: (state) => state.supplier.supplierInfo.appId,
- }
|