import { WeaFormItem, } from 'ecCom' import { Spin, Button, Tooltip } from 'antd' import { i18n } from '../../public/i18n'; import '../../style/common.less'; import { chunk } from 'lodash'; export default class FormItem extends React.Component { constructor(props) { super(props); this.state = { } } render() { const { groupInfo } = this.props, { } = this.state; const newData = chunk(groupInfo.items, 3); return (

{groupInfo.title}

{newData.map((item, index) => { return (
{item.map((subItem) => { return (
{subItem.fieldId} {subItem.fieldValue.length > 10 ? {subItem.fieldValue} : {subItem.fieldValue}}
); })}
); })}
) } }