const getters = { token: state => state.app.token, stocksColor: state => state.app.stocksColor, headHeight: state => state.app.headHeight, statusBarHeight: state => state.app.statusBarHeight, navBarHeight: state => state.app.navBarHeight, windowInfo: state => state.app.windowInfo, PageContentHeight: state => state.app.PageContentHeight, maxPageHeight: state => state.app.maxPageHeight, tabBarHeight: state => state.app.tabBarHeight, // 资产 contractAccount: state => state.possession.contractAccount, bibiAccount: state => state.possession.bibiAccount, legalAccount: state => state.possession.legalAccount, GiftMoneyAccount: state => state.possession.GiftMoneyAccount, // websocket bids: state => state.websocket.bids, asks: state => state.websocket.asks, daymarket: state => state.websocket.daymarket, usdtList: state => state.websocket.usdtList, optional: state => state.websocket.optional, marketAll: state => state.websocket.marketAll, contract_optional: state => state.websocket.contract_optional, contract_marketAll: state => state.websocket.contract_marketAll, currencyVal: state => state.websocket.currencyVal, } export default getters