import React, { Component } from 'react'; import style from './index.less'; import Textarea from './Textarea'; class FollowUp extends Component { constructor(props){ super(props); this.handleInputFollowUp = this.handleInputFollowUp.bind(this); } handleInputFollowUp(followUp) { const { setFollowUp } = this.props // const followUp = e.target.innerText || e.target.innerHTML; setFollowUp && setFollowUp(followUp) } render() { const { icon, titleStyle,titleBg, filter, title, followUp, isRead, noHeader, noTitle, textStyle} = this.props return(
{noHeader? '':
{title}
}
{noTitle?'': '回访时间:'}后回访,不适随诊
) } } export default FollowUp;