import StandardFormRow from '@/components/StandardFormRow'; import TagSelect from '@/components/TagSelect'; import { formatWan } from '@/utils/utils'; import { Avatar, Card, Col, Dropdown, Form, Icon, List, Menu, Row, Select, Tooltip } from 'antd'; import { FormComponentProps } from 'antd/es/form'; import { connect } from 'dva'; import numeral from 'numeral'; import React, { Component } from 'react'; import { FormattedMessage } from 'umi-plugin-locale'; import styles from './Applications.less'; import { IRuleModelState } from './models/rule'; const { Option } = Select; const FormItem = Form.Item; interface IFilterCardListProps extends FormComponentProps { list: IRuleModelState; dispatch: (args: any) => void; loading: boolean; } @connect(({ list, loading }) => ({ list, loading: loading.models.list, })) class FilterCardList extends Component { componentDidMount() { const { dispatch } = this.props; dispatch({ type: 'list/fetch', payload: { count: 8, }, }); } render() { const { list: { list }, loading, form, } = this.props; const { getFieldDecorator } = form; const CardInfo = ({ activeUser, newUser }) => (

活跃用户

{activeUser}

新增用户

{newUser}

); const formItemLayout = { wrapperCol: { xs: { span: 24 }, sm: { span: 16 }, }, }; const actionsTextMap = { expandText: , collapseText: ( ), selectAllText: , }; const itemMenu = ( 1st menu item 2nd menu item 3d menu item ); return (
{getFieldDecorator('category')( 类目一 类目二 类目三 类目四 类目五 类目六 类目七 类目八 类目九 类目十 类目十一 类目十二 , )} {getFieldDecorator('author', {})( , )} {getFieldDecorator('rate', {})( , )}
( , , , , ]} > } title={item.title} />
)} />
); } } export default Form.create({ onValuesChange({ dispatch }, changedValues, allValues) { // 表单项变化时请求数据 // eslint-disable-next-line console.log(changedValues, allValues); // 模拟查询表单生效 dispatch({ type: 'list/fetch', payload: { count: 8, }, }); }, })(FilterCardList);