import { Row, Col, } from 'antd' import React from 'react' class Statistics extends React.Component { constructor(props) { super(props); } getTriangleIcon(tag) { if (tag > 0) { return (); } else if (tag < 0) { return (); } } getPercent(tag, percent) { if (tag > 0) { return ({percent}); } else if (tag < 0) { return ({percent}); } else { return ({percent}); } } render() { const { countDatas, getIcons, isNeedLink, linkIndex, setVisible } = this.props; return (