index.js 801 Bytes
import React, { Component } from 'react'
import { NavBar, Icon } from 'antd-mobile';
import styles from "./HeaderNav.css"
export default class HeaderNav extends Component{

  constructor(props){
    super(props);
    this.state={
      select:0
    }

  }
  componentDidMount(){


  }

  goBack=()=>{
    this.props.history.goBack();
  }
  render(){
    return (
      <div className={styles.size}>
        <NavBar

          mode="light"
          icon={<Icon type="left" onClick={this.goBack} style={{color:'#954547'}}/>}
          onLeftClick={() => console.log('onLeftClick')}
          rightContent={[

            <Icon key="1" type="ellipsis" />,
          ]}
          style={{fontSize:'.18rem',height:'.45rem',color:'red'}}
        >{this.props.title}</NavBar>


      </div>



    )
  }
}