|
@@ -49,11 +49,11 @@ class DrugTreat extends Component {
|
|
|
return ((it.isShow == 1 || it.selected) && <span style={it.forbidden === '2' ? {opacity: '0.3', filter:'alpha(opacity=30)'} : ''}>
|
|
|
{ii === 0 ? '' : ', '}
|
|
|
<span className={style['drug-name']}
|
|
|
- onDoubleClick={() =>{this.setDrugInfo(it);showDrugInfo();}}
|
|
|
+ // onDoubleClick={() =>{this.setDrugInfo(it);showDrugInfo();}} //药品说明双击显示(现在为点击图标显示)
|
|
|
onClick={()=>{it.forbidden === '2' ? '' : this.handleSelect(index,ii)}} style={it.selected ? {color: '#3B9ED0', borderBottom: '1px solid #3B9ED0'}:''}>
|
|
|
{it.medicitionName}
|
|
|
</span>
|
|
|
- {/* {it.showInfo && it.showInfo==='1'&& <img className={style['info-img']} src={info} onClick={() =>{this.setDrugInfo(it);showDrugInfo();}}/>} */}
|
|
|
+ {<img className={style['info-img']} src={info} onClick={() =>{this.setDrugInfo(it);showDrugInfo();}}/>}
|
|
|
{it.forbidden === '1' ? <span className={style['info-flag']} style={{border: '1px solid #F4C051', background: '#F4C051',marginLeft: '5px'}}>慎用</span>: it.forbidden === '2' ? <span className={style['info-flag']} style={{border: '1px solid #000',marginLeft: '5px'}}>禁用</span> : ''}, 使用率{it.rate}
|
|
|
|
|
|
</span>)
|