const getters = { model: state => state.app.model, systemInfo: state => state.app.systemInfo, safeArea: state => state.app.safeArea, headImgUrl: state => state.user.headImgUrl, nickName: state => state.user.nickName, userIdentity: state => state.user.userIdentity, userId: state => state.user.userId, openId: state => state.user.openId, accessToken: state => state.user.accessToken, unusedNum: state => state.coupon.unusedNum, expiredNum: state => state.coupon.expiredNum, usedNum: state => state.coupon.usedNum, couponAlertType: state => state.coupon.couponAlertType, couponNoticeFlag: state => state.coupon.couponNoticeFlag, kindCount: state => state.cart.kindCount, isIphoneX: state => state.app.isIphoneX, isIphone: state => state.app.isIphone, hasLogin: state => state.user.hasLogin, } export default getters