|
@@ -1,5 +1,5 @@
|
|
|
import Taro, { Component } from '@tarojs/taro'
|
|
|
-import { View, Text, Image, ScrollView } from '@tarojs/components'
|
|
|
+import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
|
|
|
import { Loading } from '@components'
|
|
|
import { connect } from '@tarojs/redux'
|
|
|
import * as actions from '@actions/list'
|
|
@@ -18,13 +18,40 @@ class List extends Component {
|
|
|
loaded: false,
|
|
|
loading: false,
|
|
|
lastItemId: 0,
|
|
|
- hasMore: true
|
|
|
+ hasMore: true,
|
|
|
+ selectorChecked: { id: 0, key: "按报告类型", value: 'title' },
|
|
|
+ selector: [{ id: 0, key: "按报告类型", value: 'title' },
|
|
|
+ { id: 1, key: "按企业名称", value: 'companyName' },
|
|
|
+ { id: 2, key: "按项目名称", value: 'reportName' },
|
|
|
+ { id: 3, key: "按关键词", value: 'keyword' },],
|
|
|
+ keyword: "",
|
|
|
}
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ // field:this.state.selectorChecked.value
|
|
|
+
|
|
|
+ onChange = e => {
|
|
|
+ this.setState({
|
|
|
+ selectorChecked: this.state.selector[e.detail.value],
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ onInput(e) {
|
|
|
+ this.setState({
|
|
|
+ keyword: e.detail.value
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ onSearch() {
|
|
|
+ if (!this.state.keyword) {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
render() {
|
|
|
// if (!this.state.loaded) {
|
|
|
// return <Loading />
|
|
@@ -33,11 +60,29 @@ class List extends Component {
|
|
|
const { } = this.props
|
|
|
return (
|
|
|
<View className='home'>
|
|
|
+ <View className='home_head'>
|
|
|
+ <Picker
|
|
|
+ mode='selector'
|
|
|
+ range={this.state.selector}
|
|
|
+ rangeKey="key"
|
|
|
+ value={this.state.selectorChecked.id}
|
|
|
+ onChange={this.onChange}>
|
|
|
+ <View className='picker'>
|
|
|
+ {this.state.selectorChecked.key} ▼
|
|
|
+ </View>
|
|
|
+ </Picker>
|
|
|
+ <Input className='input' type='text' placeholder='请输入关键词进行查询' onInput={this.onInput} />
|
|
|
+ <View className='button'
|
|
|
+ onClick={() => {
|
|
|
+
|
|
|
+ }}
|
|
|
+ >搜索</View>
|
|
|
+ </View>
|
|
|
<ScrollView
|
|
|
scrollY
|
|
|
className='home__wrap'
|
|
|
onScrollToLower={() => { console.log("----滑到底部") }}
|
|
|
- style={{ height: getWindowHeight() }}
|
|
|
+ style={{ height: (getWindowHeight().substring(0, getWindowHeight().length - 2) - 55) + "px" }}
|
|
|
>
|
|
|
<ItemList />
|
|
|
</ScrollView>
|