|
@@ -185,7 +185,7 @@ class DiagnosticList extends Component {
|
|
|
return (<div className={style['history-info']}>
|
|
|
{items.map((item, index) => {
|
|
|
return<div onClick={this.handleQuoteClick.bind(this, item, index)} style={this.state.activeHistory === index ? {color: '#3B9ED0'} : ''}>
|
|
|
- <img src={this.state.activeHistory === index ? iconRadioActive : iconRadioDefault}/>{item.diagnose + '(' + item.inquiryDate + ')'}
|
|
|
+ <img src={this.state.activeHistory === index ? iconRadioActive : iconRadioDefault}/>{item.diagnose} {item.inquiryDate}{item.sign==0?'(智能模式)':'(文本模式)'}
|
|
|
</div>
|
|
|
})}
|
|
|
</div>)
|