|
@@ -52,7 +52,7 @@ class Item extends React.Component {
|
|
|
const {handleSearch,message} = this.props
|
|
|
return <div className={style['items']}>
|
|
|
<ul>
|
|
|
- <li className={`${style.code} ${style.pubLi}`}>
|
|
|
+ <li className={`${style.code} ${style.pubLi} ${style.partLish}`}>
|
|
|
<span>门诊号 : </span>
|
|
|
<input type="text" value={this.state.code || message.recordId} readOnly
|
|
|
onInput={(e) => {
|
|
@@ -62,7 +62,7 @@ class Item extends React.Component {
|
|
|
this.handleInput(e,1)
|
|
|
}} />
|
|
|
</li>
|
|
|
- <li className={`${style.name} ${style.pubLi}`}>
|
|
|
+ <li className={`${style.name} ${style.pubLi} ${style.partLish}`}>
|
|
|
<span>姓名 : </span>
|
|
|
<input type="text" value={this.state.name || message.patientName} readOnly
|
|
|
onInput={(e) => {
|
|
@@ -72,7 +72,7 @@ class Item extends React.Component {
|
|
|
this.handleInput(e,2)
|
|
|
}} />
|
|
|
</li>
|
|
|
- <li className={`${style.sex} ${style.pubLi}`}>
|
|
|
+ <li className={`${style.sex} ${style.pubLi} ${style.partLish}`}>
|
|
|
<span>性别 : </span>
|
|
|
<input type="text" value={this.state.sex || message.patientSex} readOnly
|
|
|
onInput={(e) => {
|
|
@@ -82,7 +82,7 @@ class Item extends React.Component {
|
|
|
this.handleInput(e,3)
|
|
|
}} />
|
|
|
</li>
|
|
|
- <li className={`${style.age} ${style.pubLi}`}>
|
|
|
+ <li className={`${style.age} ${style.pubLi} ${style.partLish}`}>
|
|
|
<span>年龄 : </span>
|
|
|
<input type="text" value={this.state.age||message.patientAge} readOnly
|
|
|
onInput={(e) => {
|
|
@@ -92,7 +92,7 @@ class Item extends React.Component {
|
|
|
this.handleInput(e,4)
|
|
|
}} />
|
|
|
</li>
|
|
|
- <li className={`${style.time} ${style.pubLi}`}>
|
|
|
+ <li className={`${style.time} ${style.pubLi} ${style.partLish}`}>
|
|
|
<span>送检时间 : </span>
|
|
|
<TimeInterval getStartTime={this.getStartTime} getEndTime={this.getEndTime}></TimeInterval>
|
|
|
</li>
|