import React, { memo } from 'react'; import { Row, Col, Table, Tooltip, Card, Icon } from 'antd'; import { FormattedMessage } from 'umi/locale'; import Trend from '@/components/Trend'; import numeral from 'numeral'; import styles from './Analysis.less'; import NumberInfo from '@/components/NumberInfo'; import { MiniArea } from '@/components/Charts'; const columns = [ { title: , dataIndex: 'index', key: 'index', }, { title: ( ), dataIndex: 'keyword', key: 'keyword', render: text => {text}, }, { title: , dataIndex: 'count', key: 'count', sorter: (a, b) => a.count - b.count, className: styles.alignRight, }, { title: , dataIndex: 'range', key: 'range', sorter: (a, b) => a.range - b.range, render: (text, record) => ( {text}% ), align: 'right', }, ]; const TopSearch = memo(({ loading, visitData2, searchData, dropdownGroup }) => ( } extra={dropdownGroup} style={{ marginTop: 24 }} > } > } gap={8} total={numeral(12321).format('0,0')} status="up" subTotal={17.1} /> } > } total={2.7} status="down" subTotal={26.2} gap={8} /> record.index} size="small" columns={columns} dataSource={searchData} pagination={{ style: { marginBottom: 0 }, pageSize: 5, }} /> )); export default TopSearch;