import React, { Component } from 'react'; import {observer} from 'mobx-react'; import {WeaTab} from 'ecCom'; import SearchBar from './SearchBar'; import TimeLineView from './TimeLineView'; import MapView from './MapView'; import DataListView from './DataListView'; @observer export default class Content extends Component{ render(){ const {store} = this.props; const {tabProps} = store; const {selectedKey} = tabProps; return (
{ selectedKey != '2' && } {selectedKey == '0' && } {selectedKey == '1' && } {selectedKey == '2' && }
) } }