|
@@ -7,8 +7,6 @@ import tipsImg from "../../common/images/tips.png";
|
|
|
import vigilantImg from "../../common/images/vigilant.png";
|
|
|
import showImg from "../../common/images/show.png";
|
|
|
import hideImg from "../../common/images/close.png";
|
|
|
-import printIcon from '@common/images/team.png';
|
|
|
-import DetailsModal from './DetailsModal';
|
|
|
import PushDiag from "./PushDiag";
|
|
|
import DiagnosticItem from "@containers/DiagnosticItem";
|
|
|
import store from "@store";
|
|
@@ -16,8 +14,7 @@ import { getWindowInnerHeight } from "@common/js/func";
|
|
|
import {addLabel} from '@store/actions/inspect';
|
|
|
import {addAssistLabel} from '@store/actions/assistCheck';
|
|
|
import {windowEventHandler} from '@utils/tools'
|
|
|
-import {ConfirmModal,ComplexModal} from '@commonComp';
|
|
|
-import AssessResult from '../AssessResult';
|
|
|
+import {ConfirmModal} from '@commonComp';
|
|
|
import ChronicInfo from '@containers/ChronicInfo';//慢病推送模块
|
|
|
|
|
|
class PushItems extends Component {
|
|
@@ -161,23 +158,16 @@ class PushItems extends Component {
|
|
|
assay,
|
|
|
check,
|
|
|
tips,
|
|
|
- showTipsDetails,
|
|
|
- tipsDetails,
|
|
|
tmpFlg,
|
|
|
} = this.props.pushMessage;
|
|
|
- const footer = <div className={style['footer']}>
|
|
|
- <span className={style['print']}><img src={printIcon} alt=""/>打印</span>
|
|
|
- <span className={style['okBtn']}>确定</span>
|
|
|
- </div>;
|
|
|
- const { tipsDiscalimer,tableList ,showList,chronicMagItem} = this.props;
|
|
|
- const { moreAssay, moreCheck ,show,showAssess} = this.state;
|
|
|
+ const { tipsDiscalimer} = this.props;
|
|
|
+ const { moreAssay, moreCheck ,show} = this.state;
|
|
|
const {
|
|
|
showMore,
|
|
|
closeMore,
|
|
|
billing,
|
|
|
changeCheck,
|
|
|
changeAssay,
|
|
|
- showAdd,
|
|
|
showTips
|
|
|
} = this;
|
|
|
let assayNum = 0;
|
|
@@ -483,15 +473,6 @@ class PushItems extends Component {
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- {tipsDiscalimer.data && <div className={style['disTips']} dangerouslySetInnerHTML={{__html: tipsDiscalimer.data.data[1]&&tipsDiscalimer.data.data[1].description}}></div>}
|
|
|
- {showTipsDetails && <DetailsModal
|
|
|
- showTipsDetails = {showTipsDetails}
|
|
|
- hideTips = {this.hideTips}
|
|
|
- tipsDetails = {tipsDetails}/>}
|
|
|
- {showAssess?<ComplexModal onclose={this.showAssessFn} footer={footer}
|
|
|
- title='管理和评估'>
|
|
|
- <AssessResult></AssessResult>
|
|
|
- </ComplexModal>:''}
|
|
|
</div>
|
|
|
);
|
|
|
}
|