import React, { PureComponent } from 'react'; import { connect } from 'dva'; import { Row, Col, Card, Table, Icon, Divider } from 'antd'; const columns = [{ title: 'Name', dataIndex: 'name', key: 'name', }, { title: 'Age', dataIndex: 'age', key: 'age', }, { title: 'Address', dataIndex: 'address', key: 'address', }, { title: 'Action', key: 'action', render: (text, record) => ( Action 一 {record.name} Delete More actions ), }]; class Dashboard extends PureComponent { componentDidMount() { this.props.dispatch({ type: 'user/fetch', }); } render() { const { user: { list, loading } } = this.props; return (

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

卡片内容

} > ); } } export default connect(state => ({ user: state.user, }))(Dashboard);