import React, { PureComponent } from 'react'; import { connect } from 'dva'; import { Card, Button, Icon, List } from 'antd'; import { Ellipsis } from 'ant-design-pro'; import PageHeaderWrapper from './components/PageHeaderWrapper'; import styles from './style.less'; @connect(({ BLOCK_NAME_CAMEL_CASE, loading }) => ({ BLOCK_NAME_CAMEL_CASE, loading: loading.models.list, })) class PAGE_NAME_UPPER_CAMEL_CASE extends PureComponent { componentDidMount() { const { dispatch } = this.props; dispatch({ type: 'BLOCK_NAME_CAMEL_CASE/fetch', payload: { count: 8, }, }); } render() { const { BLOCK_NAME_CAMEL_CASE: { list }, loading, } = this.props; const content = (

段落示意:蚂蚁金服务设计平台 ant.design,用最小的工作量,无缝接入蚂蚁金服生态, 提供跨越设计与开发的体验解决方案。

{' '} 快速开始 {' '} 产品简介 {' '} 产品文档
); const extraContent = (
这是一个标题
); return (
item ? ( 操作一, 操作二]}> } title={{item.title}} description={ {item.description} } /> ) : ( ) } />
); } } export default PAGE_NAME_UPPER_CAMEL_CASE;