|
@@ -9,6 +9,7 @@ import Treat from '@containers/Treat'
|
|
|
import store from '@store';
|
|
|
import { pushAllDataList } from '@utils/tools';
|
|
|
import iconRadioDefault from '@common/images/icon-radio-default.png'
|
|
|
+import iconRadioActive from '@common/images/icon-radio-active.png'
|
|
|
|
|
|
class DiagnosticList extends Component {
|
|
|
constructor(props) {
|
|
@@ -131,7 +132,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: '#abcdef'} : ''}>
|
|
|
- <img src={iconRadioDefault}/>{item.diagnose}
|
|
|
+ <img src={this.state.activeHistory === index ? iconRadioActive : iconRadioDefault}/>{item.diagnose}
|
|
|
</div>
|
|
|
})}
|
|
|
</div>)
|