123456789101112131415161718192021222324252627282930313233343536 |
- 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
- restrictOrder: state => state.websocket.restrictOrder,
- 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,
-
- orderList: state => state.websocket.orderList, // 合约持仓
- leverTrade: state => state.websocket.leverTrade, // 合约页面
-
- }
- export default getters
|