Commit 183286c6 by hank

bug

parent 58945950
......@@ -179,6 +179,7 @@ class Films extends Component {
render() {
const { list, height, count } = this.props
const { checked, showTempalte } = this.state
let myHeight = height && height - 40
return (
<View className="films">
<View className="film-search-bar">
......@@ -219,7 +220,7 @@ class Films extends Component {
</View>
<ListView
count={count}
height={parseInt(height - 40)}
height={myHeight}
dataListLength={list.length}
pullingUp={done => this.onScrollToLower(done)}
pullingDown={done => this.onDownRefresh(done)}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment