import React,{Component} from 'react'; import {Image, View} from '@tarojs/components'; import { AtActivityIndicator } from 'taro-ui'; import 'taro-ui/dist/style/components/icon.scss'; import 'taro-ui/dist/style/components/divider.scss'; import 'taro-ui/dist/style/components/icon.scss'; import './index.less'; import noData from '../../../image/noData.png'; class ListBottomStart extends Component{ constructor(props) { super(props); } render() { const { state } = this.props; return ( { state === 'NO_MORE_DATA' ? 没有更多了 : state === 'RELOAD' ? 加载失败 { this.props.reload && this.props.reload(); }}>点击重新加载 : state === 'LOADING' ? : state === 'NO_DATA' ? 暂时没有数据 : null } ) } } export default ListBottomStart;