import React from 'react'; import { TabBar } from 'antd-mobile'; //import {PageContext} from '../context' class TabBarBottom extends React.Component { constructor(props) { super(props); this.state = { selectedTab: 'bill', hidden: false, fullScreen: true, }; this.handleChange=this.handleChange.bind(this) } //要保留,勿动 renderContent(page){} handleChange(page){ this.props.changePage(page) } render() { //这里渲染一次 return (