|
@@ -1,14 +1,14 @@
|
|
|
-import Taro, { Component } from '@tarojs/taro'
|
|
|
+import Taro, { Component, useRef } from '@tarojs/taro'
|
|
|
import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
|
|
|
import { Loading } from '@components'
|
|
|
import { connect } from '@tarojs/redux'
|
|
|
import * as actions from '@actions/list'
|
|
|
-// import { dispatchCartNum } from '@actions/list'
|
|
|
+import { getList } from '@actions/list'
|
|
|
import ItemList from './itemlist'
|
|
|
import { getWindowHeight } from '@utils/style'
|
|
|
import './list.scss'
|
|
|
|
|
|
-// @connect(state => state.home, { ...actions, })
|
|
|
+@connect(state => state.home, { ...actions, })
|
|
|
class List extends Component {
|
|
|
config = {
|
|
|
navigationBarTitleText: '报告列表'
|
|
@@ -20,18 +20,46 @@ class List extends Component {
|
|
|
lastItemId: 0,
|
|
|
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' },],
|
|
|
+ selector: [
|
|
|
+ { id: 0, key: "按报告类型", value: 'title' },
|
|
|
+ { id: 1, key: "按企业名称", value: 'companyName' },
|
|
|
+ { id: 2, key: "按项目名称", value: 'reportName' },
|
|
|
+ { id: 3, key: "按关键词", value: 'keyword' },],
|
|
|
keyword: "",
|
|
|
+ dataList: [],
|
|
|
}
|
|
|
|
|
|
componentDidMount() {
|
|
|
+ this.getData()
|
|
|
+ }
|
|
|
+
|
|
|
+ page = 1
|
|
|
+ getData = () => {
|
|
|
+ let payload = {}
|
|
|
+ this.setState({ loading: true })
|
|
|
+ if (!this.state.keyword) {
|
|
|
+ payload = {
|
|
|
+ page: this.page
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ payload = {
|
|
|
+ page: this.page,
|
|
|
+ field: this.state.selectorChecked.value,
|
|
|
+ keyword: this.state.keyword,
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.props.getList(payload).then((data) => {
|
|
|
+ this.setState({
|
|
|
+ loading: false,
|
|
|
+ dataList: this.page === 1 ? data.reports : this.state.dataList.concat(data.reports),
|
|
|
+ })
|
|
|
+ page = data.reports.length === 0 ? this.page : this.page++
|
|
|
+ }).catch(() => {
|
|
|
+ this.setState({ loading: false })
|
|
|
+ })
|
|
|
|
|
|
}
|
|
|
|
|
|
- // field:this.state.selectorChecked.value
|
|
|
|
|
|
onChange = e => {
|
|
|
this.setState({
|
|
@@ -39,18 +67,12 @@ class List extends Component {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- onInput(e) {
|
|
|
+ onInput = e => {
|
|
|
this.setState({
|
|
|
keyword: e.detail.value
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- onSearch() {
|
|
|
- if (!this.state.keyword) {
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
render() {
|
|
|
// if (!this.state.loaded) {
|
|
@@ -74,17 +96,18 @@ class List extends Component {
|
|
|
<Input className='input' type='text' placeholder='请输入关键词进行查询' onInput={this.onInput} />
|
|
|
<View className='button'
|
|
|
onClick={() => {
|
|
|
-
|
|
|
+ this.page = 1
|
|
|
+ this.getData()
|
|
|
}}
|
|
|
>搜索</View>
|
|
|
</View>
|
|
|
<ScrollView
|
|
|
scrollY
|
|
|
className='home__wrap'
|
|
|
- onScrollToLower={() => { console.log("----滑到底部") }}
|
|
|
+ onScrollToLower={this.getData}
|
|
|
style={{ height: (getWindowHeight().substring(0, getWindowHeight().length - 2) - 55) + "px" }}
|
|
|
>
|
|
|
- <ItemList />
|
|
|
+ <ItemList list={this.state.dataList} />
|
|
|
</ScrollView>
|
|
|
</View>
|
|
|
)
|