index.js
801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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>
)
}
}