list.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import Taro, { Component } from '@tarojs/taro'
  2. import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
  3. import { Loading } from '@components'
  4. import { connect } from '@tarojs/redux'
  5. import * as actions from '@actions/list'
  6. import ItemList from './itemlist'
  7. import { getWindowHeight } from '@utils/style'
  8. import './list.scss'
  9. @connect(state => state.home, { ...actions, })
  10. class List extends Component {
  11. config = {
  12. navigationBarTitleText: '报告列表'
  13. }
  14. state = {
  15. loading: false,
  16. lastItemId: 0,
  17. hasMore: true,
  18. selectorChecked: { id: 0, key: "按报告类型", value: 'title' },
  19. selector: [
  20. { id: 0, key: "按报告类型", value: 'title' },
  21. { id: 1, key: "按企业名称", value: 'companyName' },
  22. { id: 2, key: "按项目名称", value: 'reportName' },
  23. { id: 3, key: "按关键词", value: 'keyword' },],
  24. keyword: "",
  25. dataList: [],
  26. }
  27. componentDidMount() {
  28. this.getData()
  29. }
  30. page = 1
  31. getData = () => {
  32. let payload = {}
  33. this.setState({ loading: true })
  34. if (!this.state.keyword) {
  35. payload = {
  36. page: this.page
  37. }
  38. } else {
  39. payload = {
  40. page: this.page,
  41. field: this.state.selectorChecked.value,
  42. keyword: this.state.keyword,
  43. }
  44. }
  45. this.props.getList(payload).then((data) => {
  46. this.setState({
  47. loading: false,
  48. dataList: this.page === 1 ? data.reports : this.state.dataList.concat(data.reports),
  49. })
  50. page = data.reports.length === 0 ? this.page : this.page++
  51. }).catch(() => {
  52. this.setState({ loading: false })
  53. })
  54. }
  55. onChange = e => {
  56. this.setState({
  57. selectorChecked: this.state.selector[e.detail.value],
  58. })
  59. }
  60. onInput = e => {
  61. this.setState({
  62. keyword: e.detail.value
  63. })
  64. }
  65. render() {
  66. // if (this.state.loaded) {
  67. // return <Loading />
  68. // }
  69. return (
  70. <View className='home'>
  71. <View className='home_head'>
  72. <Picker
  73. mode='selector'
  74. range={this.state.selector}
  75. rangeKey="key"
  76. value={this.state.selectorChecked.id}
  77. onChange={this.onChange}>
  78. <View className='picker'>
  79. {this.state.selectorChecked.key} ▼
  80. </View>
  81. </Picker>
  82. <Input className='input' type='text' placeholder='请输入关键词进行查询' onInput={this.onInput} />
  83. <View className='button'
  84. onClick={() => {
  85. this.page = 1
  86. this.getData()
  87. }}
  88. >搜索</View>
  89. </View>
  90. <ScrollView
  91. scrollY
  92. className='home__wrap'
  93. onScrollToLower={this.getData}
  94. style={{ height: (getWindowHeight().substring(0, getWindowHeight().length - 2) - 55) + "px" }}
  95. >
  96. <ItemList list={this.state.dataList} />
  97. </ScrollView>
  98. </View>
  99. )
  100. }
  101. }
  102. export default List