|
@@ -16,6 +16,7 @@ import {addAssistLabel} from '@store/actions/assistCheck';
|
|
import {windowEventHandler,getCurrentDate,getWindowInnerHeight} from '@utils/tools'
|
|
import {windowEventHandler,getCurrentDate,getWindowInnerHeight} from '@utils/tools'
|
|
import {ConfirmModal} from '@commonComp';
|
|
import {ConfirmModal} from '@commonComp';
|
|
import ChronicInfo from '@containers/ChronicInfo';//慢病推送模块
|
|
import ChronicInfo from '@containers/ChronicInfo';//慢病推送模块
|
|
|
|
+import RecommendInspect from './RecommendInspect';
|
|
|
|
|
|
class PushItems extends Component {
|
|
class PushItems extends Component {
|
|
constructor(props) {
|
|
constructor(props) {
|
|
@@ -170,7 +171,6 @@ class PushItems extends Component {
|
|
} else {
|
|
} else {
|
|
return (
|
|
return (
|
|
<span>
|
|
<span>
|
|
-
|
|
|
|
<input
|
|
<input
|
|
id={item.id + item.name}
|
|
id={item.id + item.name}
|
|
onChange={() => changeAssay(item)}
|
|
onChange={() => changeAssay(item)}
|
|
@@ -184,7 +184,6 @@ class PushItems extends Component {
|
|
} else {
|
|
} else {
|
|
return (
|
|
return (
|
|
<span>
|
|
<span>
|
|
-
|
|
|
|
<input
|
|
<input
|
|
id={item.id + item.name}
|
|
id={item.id + item.name}
|
|
onChange={() => changeAssay(item)}
|
|
onChange={() => changeAssay(item)}
|
|
@@ -411,6 +410,72 @@ class PushItems extends Component {
|
|
)}
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <div className={style["recommend"]}>
|
|
|
|
+ <h1>
|
|
|
|
+ <img src={recommendImg} />
|
|
|
|
+ 推荐检验检查
|
|
|
|
+ <div className={style["billing"]}
|
|
|
|
+ style={assay.length === 0 && check.length === 0 ? {color: 'gray', border: '1px solid gray', cursor:'auto'} : ''}
|
|
|
|
+ onClick={assay.length === 0 && check.length === 0 ? '' : billing}>
|
|
|
|
+ 开单
|
|
|
|
+ </div>
|
|
|
|
+ </h1>
|
|
|
|
+ <div>
|
|
|
|
+ {assay.length === 0 && check.length === 0 ? (
|
|
|
|
+ <span>无</span>
|
|
|
|
+ ) : (
|
|
|
|
+ <ul>
|
|
|
|
+ <RecommendInspect
|
|
|
|
+ title = '化验'
|
|
|
|
+ list = {assay}
|
|
|
|
+ changeFlag = {changeAssay}
|
|
|
|
+ >
|
|
|
|
+ </RecommendInspect>
|
|
|
|
+ <li className={style["lastLi"]}>
|
|
|
|
+ <div className={style["title"]}>检查:</div>
|
|
|
|
+ <div className={style["content"]}>
|
|
|
|
+ {check.length === 0
|
|
|
|
+ ? "无"
|
|
|
|
+ : moreCheck
|
|
|
|
+ ? checks
|
|
|
|
+ : checkHide}
|
|
|
|
+ {checkNum2 > 21 ? (
|
|
|
|
+ <span
|
|
|
|
+ style={
|
|
|
|
+ moreCheck
|
|
|
|
+ ? { display: "none" }
|
|
|
|
+ : { display: "inline-block" }
|
|
|
|
+ }
|
|
|
|
+ className={style["show"]}
|
|
|
|
+ onClick={() => showMore("moreCheck")}
|
|
|
|
+ >
|
|
|
|
+ 更多
|
|
|
|
+ <img src={showImg} />
|
|
|
|
+ </span>
|
|
|
|
+ ) : (
|
|
|
|
+ ""
|
|
|
|
+ )}
|
|
|
|
+ <span
|
|
|
|
+ style={
|
|
|
|
+ moreCheck
|
|
|
|
+ ? { display: "inline-block" }
|
|
|
|
+ : { display: "none" }
|
|
|
|
+ }
|
|
|
|
+ className={style["close"]}
|
|
|
|
+ onClick={() => closeMore("moreCheck")}
|
|
|
|
+ >
|
|
|
|
+ 收起
|
|
|
|
+ <img src={hideImg} />
|
|
|
|
+ </span>
|
|
|
|
+ </div>
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+ )}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
{/*{chronicPushItems&&chronicPushItems.length>0?<ChronicInfo data={chronicPushItems}></ChronicInfo>:''}*/}
|
|
{/*{chronicPushItems&&chronicPushItems.length>0?<ChronicInfo data={chronicPushItems}></ChronicInfo>:''}*/}
|
|
{<ChronicInfo></ChronicInfo>}
|
|
{<ChronicInfo></ChronicInfo>}
|
|
<div className={style["tips"]}>
|
|
<div className={style["tips"]}>
|