|
@@ -3,9 +3,8 @@ import style from './index.less';
|
|
|
import del_icon from './img/delete.png'
|
|
|
import diagUp from './img/diagUp.png'
|
|
|
import diagDown from './img/diagDown.png'
|
|
|
-import printIcon from '@common/images/team.png';
|
|
|
import manageIcon from '@common/images/manage.png';
|
|
|
-import {ConfirmModal, Message,ComplexModal} from '@commonComp';
|
|
|
+import {ConfirmModal, Message,ComplexModal,Footer} from '@commonComp';
|
|
|
import Notify from '@commonComp/Notify';
|
|
|
import Treat from '@containers/Treat'
|
|
|
import store from '@store';
|
|
@@ -15,7 +14,6 @@ import iconRadioDefault from '@common/images/icon-radio-default.png'
|
|
|
import iconRadioActive from '@common/images/icon-radio-active.png'
|
|
|
import AssessResult from '@containers/AssessResult';
|
|
|
import tableIcon from '@common/images/table.png';
|
|
|
-import { delFollowUp } from '../../store/actions/treat';
|
|
|
import { CONFIRM_TYPE } from "@store/types/typeConfig";
|
|
|
import $ from "jquery";
|
|
|
|
|
@@ -240,10 +238,10 @@ class DiagnosticList extends Component {
|
|
|
const chronicList = JSON.parse(localStorage.getItem('chronic')||null);
|
|
|
const chronicLine = chronicMagItem&&chronicMagItem.name; //当前是否走的慢病流程
|
|
|
let isChronic = false; //是否要显示管理评估
|
|
|
- const footer = <div className={style['footer']}>
|
|
|
- <span className={style['print']} onClick={this.onPrint}><img src={printIcon} alt=""/>打印</span>
|
|
|
- <span className={style['okBtn']} onClick={()=>this.handleSaveAssess()}>确定</span>
|
|
|
- </div>;
|
|
|
+ const footer = <Footer print={true}
|
|
|
+ footText="确定"
|
|
|
+ handlePrint={this.onPrint}
|
|
|
+ handleConfirm={this.handleSaveAssess}/>;
|
|
|
return(
|
|
|
<div className={style['diaglist-wrap']}>
|
|
|
{list && (list.length > 0) && list.map((item, index) => {
|