index.jsx 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. import { Component } from 'react';
  2. import Taro from '@tarojs/taro';
  3. import { connect } from 'react-redux'
  4. import { View, Image } from '@tarojs/components'
  5. import { set } from '../../actions/counter'
  6. import { getProjecList } from '../../utils/servers/servers'
  7. import {resourceAddress} from '../../utils/config';
  8. import NavBar from '../../components/NavBar';
  9. import ListBottomStart from '../../components/common/listBottomStart';
  10. import './index.less';
  11. import background from '../../assets/images/background.png';
  12. @connect(({ counter }) => ({
  13. counter
  14. }), (dispatch) => ({
  15. set (value) {
  16. dispatch(set(value))
  17. }
  18. }))
  19. class Index extends Component {
  20. inst = Taro.getCurrentInstance()
  21. constructor(props) {
  22. super(props);
  23. this.state={
  24. list: [],
  25. pageNo: 0,
  26. listState: 'LOADING',
  27. }
  28. this.getProjecList= this.getProjecList.bind(this);
  29. }
  30. componentDidShow() {
  31. //设置barter的选择状态
  32. this.props.set(0);
  33. }
  34. async componentDidMount() {
  35. await this.getProjecList();
  36. }
  37. onPullDownRefresh(){
  38. this.getProjecList();
  39. }
  40. onReachBottom(){
  41. this.getProjecList(this.state.pageNo+1);
  42. }
  43. async getProjecList (pageNo = 1){
  44. this.setState({
  45. listState: 'LOADING'
  46. })
  47. let msg = await getProjecList({
  48. pageNo: pageNo,
  49. pageSize: 10,
  50. });
  51. if(msg.error.length === 0){
  52. if(msg.data.totalCount === 0){
  53. this.setState({
  54. listState: 'NO_DATA'
  55. })
  56. }else if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
  57. Taro.showToast({title:'没有更多数据了',icon:'none'});
  58. this.setState({
  59. listState: 'NO_MORE_DATA'
  60. })
  61. }else{
  62. this.setState({
  63. list:pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
  64. pageNo: msg.data.pageNo
  65. },()=>{
  66. if(msg.data.totalCount === this.state.list.length){
  67. this.setState({
  68. listState: 'NO_MORE_DATA'
  69. })
  70. }
  71. })
  72. }
  73. }else{
  74. Taro.showToast({title:msg.error[0].message,icon:'none'});
  75. this.setState({
  76. listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
  77. })
  78. }
  79. Taro.stopPullDownRefresh();
  80. }
  81. render () {
  82. return (
  83. <View className='indexPage'>
  84. <NavBar
  85. extClass='NavBar'
  86. title='课程'
  87. background='#7ac7ff'
  88. onHome={()=>{}}
  89. />
  90. <Image src={background} className='background'/>
  91. <View className='title'>推荐</View>
  92. <View className='list'>
  93. {
  94. this.state.list.map((v,k)=>(
  95. <View key={k} className='item' onClick={()=>{
  96. Taro.navigateTo({
  97. url:'/pages/details/index?id='+v.id
  98. })
  99. }}>
  100. <View className='infor'>
  101. <View className='name'>{v.name}</View>
  102. <View className='createTimes'>{v.typeName}</View>
  103. <View className='amount'>
  104. <View className='money'>¥</View>
  105. {v.amount}
  106. </View>
  107. </View>
  108. <Image className='thumbnailUrl' src={resourceAddress+v.thumbnailUrl} resizeMode='center'/>
  109. </View>
  110. ))
  111. }
  112. <ListBottomStart
  113. state={this.state.listState}
  114. reload={()=>{
  115. this.getProjecList(this.state.pageNo+1);
  116. }}/>
  117. </View>
  118. </View>
  119. )
  120. }
  121. }
  122. export default Index