import React from 'react'; import styles from './styles.less'; import Tag from '../tag'; import { SearchProps } from '../detailInterface'; export default function Detail(props: SearchProps) { const { value, componentAttr } = props; if (!value) return null; const { isMultiple } = componentAttr || {}; const selfAttr: any = isMultiple ? { maxTagCount: 2 } : { maxTagCount: 1 }; if (typeof value === 'object') { const tagsVal = value.filter((ls) => ls.value); const textVal = value.filter((ls) => !ls.value); return ( {tagsVal.length > 0 ? : null} {textVal.length > 0 ?
{textVal[0].text}
: null}
); } }