index.jsx 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import React,{Component} from 'react';
  2. import {Image, View} from '@tarojs/components';
  3. import { AtActivityIndicator } from 'taro-ui';
  4. import 'taro-ui/dist/style/components/icon.scss';
  5. import 'taro-ui/dist/style/components/divider.scss';
  6. import 'taro-ui/dist/style/components/icon.scss';
  7. import './index.less';
  8. import noData from '../../../image/noData.png';
  9. class ListBottomStart extends Component{
  10. constructor(props) {
  11. super(props);
  12. }
  13. render() {
  14. const { state } = this.props;
  15. return (
  16. <View className='listBottomStartComponent'>
  17. {
  18. state === 'NO_MORE_DATA' ?
  19. <View className='noMoreData'>
  20. 没有更多了
  21. </View>:
  22. state === 'RELOAD' ?
  23. <View className='reload'>
  24. <View>加载失败</View>
  25. <View className='operation' onClick={()=>{
  26. this.props.reload && this.props.reload();
  27. }}>点击重新加载</View>
  28. </View>:
  29. state === 'LOADING' ?
  30. <View>
  31. <AtActivityIndicator content='加载中...'/>
  32. </View>:
  33. state === 'NO_DATA' ?
  34. <View className='noData'>
  35. <Image src={noData} className='noDataImg'/>
  36. <View className='noDataTitle'>暂时没有数据</View>
  37. </View>
  38. : null
  39. }
  40. </View>
  41. )
  42. }
  43. }
  44. export default ListBottomStart;