index.jsx 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. import React from 'react';
  2. import style from './index.less';
  3. import chronicPic from "../../common/images/chronic.png";
  4. import level1 from "../../common/images/级别1.png";
  5. import tableIcon from '@common/images/table.png';
  6. import allTableIcon from '@common/images/all-table.png';
  7. import checkIcon from '@common/images/check.png';
  8. import up from '@common/images/slide-up.png';
  9. import down from '@common/images/slide-down.png';
  10. import {ComplexModal,ConfirmModal,MiniToast, Radio,CheckBtn,Footer,Notify} from '@commonComp';
  11. import infoShow from '@common/images/info-show.png';
  12. import infoMove from '@common/images/info-move.png';
  13. import ScaleTable from '@containers/ScaleTable';
  14. import {deepClone} from '@utils/tools';
  15. import className from 'classnames';
  16. import $ from 'jquery';
  17. import config from '@config/index';
  18. /***
  19. 慢病右侧推送模块规则:
  20. 慢病--显示慢病名称以及管理和评估
  21. 普通病--不显示管理和评估和量表按钮
  22. 明细--量表-计算公式-核心指标
  23. controlType:0-radio 1-checkbox 2-text 3-dropdownlist
  24. **/
  25. class ChronicInfo extends React.Component{
  26. constructor(props){
  27. super(props);
  28. this.state = {
  29. show:true,
  30. showInfo:false,
  31. showOption:false,
  32. showAssess:false, //评估弹窗
  33. infoId:null, //静态知识
  34. formulaId:null, //计算公式
  35. optionId:null, //可能结果,
  36. isAssessConfirm:false, //是否点击评估弹窗确定按钮
  37. radioVal:{}, //可能结果选择内容
  38. possible:{}, //可能结果
  39. formulaParam: {}, //量表计算公式计算入参
  40. isCalculated:false, //是否刚计算过,关闭时值与结果对应
  41. calcuValues:deepClone(props.calcuValues), //计算公式填的值
  42. hasEnterImg: false, //是否移入info
  43. currentIndex: -1, //当前index
  44. comfirnFlag:false,
  45. flag:true,
  46. ff:false,
  47. timer:null,
  48. scaleParam:{}, //加入病例需要的参数
  49. };
  50. this.$result = React.createRef();
  51. this.$content = React.createRef();
  52. this.showInfo = this.showInfo.bind(this);
  53. this.closeInfo = this.closeInfo.bind(this);
  54. this.showOption = this.showOption.bind(this);
  55. this.closeOption = this.closeOption.bind(this);
  56. this.showTable = this.showTable.bind(this);//显示量表弹窗
  57. this.closeTable = this.closeTable.bind(this);//关闭量表弹窗
  58. this.showFormula = this.showFormula.bind(this); //打开计算公式
  59. this.handleAddAssessItem = this.handleAddAssessItem.bind(this); //加入病例记录
  60. this.onPrint = this.onPrint.bind(this);
  61. this.handleForRadio = this.handleForRadio.bind(this);
  62. this.handleSaveCalcu = this.handleSaveCalcu.bind(this); //保存评估修改的计算和可能结果
  63. this.slideToggle = this.slideToggle.bind(this);
  64. this.resetComfirnFlag = this.resetComfirnFlag.bind(this);
  65. this.slideToggle = this.slideToggle.bind(this);
  66. this.comfirnTable = this.comfirnTable.bind(this);
  67. this.unscroeClose = this.unscroeClose.bind(this);
  68. }
  69. onPrint() {
  70. const {showHide} = this.props;
  71. let dom = showHide&&showHide.showTable?$("#printcontent"):$("#AssistResult");
  72. dom.jqprint({
  73. debug: false,
  74. importCSS: true,
  75. printContainer: true,
  76. operaSupport: false,
  77. });
  78. }
  79. showInfo(item){
  80. // 静态知识显示在提示信息里(4-18)
  81. const {getInfomation} = this.props;
  82. const param = {
  83. id:item.id,
  84. name: item.name,
  85. // id:40738, //目前只有“肾功能不全”有数据
  86. type:22,
  87. position: 1
  88. }
  89. getInfomation&&getInfomation(param);
  90. }
  91. closeInfo(){//关闭静态知识
  92. this.setState({
  93. infoId:null
  94. })
  95. }
  96. showOption(id){
  97. this.setState({
  98. optionId:id,
  99. formulaId:null //关闭计算公式
  100. });
  101. const {patDom} = this.props;
  102. const ht = $(patDom.current).height();
  103. setTimeout(function(){
  104. $(patDom.current).scrollTop(ht+200);
  105. })
  106. }
  107. closeOption(){
  108. // 关闭-有可能结果则保持与结果一致,没有就保持最新选择的内容
  109. let {possible,radioVal} = this.state;
  110. if(JSON.stringify(possible)=='{}'){
  111. this.setState({
  112. optionId:null
  113. })
  114. }else{
  115. this.setState({
  116. radioVal:Object.assign({},radioVal,possible),
  117. optionId:null,
  118. });
  119. }
  120. }
  121. showTable(it,v,i,j){
  122. const {scaleInfo} = this.props;
  123. // 密西根糖尿病周围神经病评分(MDNS), id:40744
  124. const item = {
  125. conceptId:it.conceptId,
  126. name:it.name
  127. };
  128. // 判断:store里已经有该量表就无需重新调接口
  129. if(scaleInfo&&scaleInfo[it.conceptId]){
  130. this.props.hideList({name:'showTable',value:true},it);
  131. }else{
  132. this.props.getScaleInfo(item);
  133. }
  134. this.setState({
  135. formulaId:null, //关闭计算公式和可能结果弹窗
  136. optionId:null,
  137. scaleParam:{
  138. v,i,j
  139. }
  140. })
  141. }
  142. // 量表明细-关闭,isClose是否是点击关闭按钮
  143. closeTable(isClose){
  144. const {scaleParam} = this.state;
  145. const {showHide} = this.props;
  146. if(!showHide.isPop){
  147. //量表结果,判断需要计算并且dom中有值才能加入病例记录
  148. // innerHTML 兼容FF26
  149. const res = this.$result.current&&(this.$result.current.innerText||this.$result.current.innerHTML);
  150. if(!isClose&&(this.$result.current&&!res)){
  151. Notify.info("请先计算量表结果!");
  152. return ;
  153. }
  154. !isClose&&this.handleAddAssessItem(scaleParam.v,scaleParam.i,scaleParam.j);
  155. this.setState({
  156. scaleParam:{}
  157. });
  158. }
  159. this.props.hideList({name:'showTable',value:false});
  160. }
  161. // 非计分量表确定-延时关闭->量表存值
  162. unscroeClose(){
  163. let {timer} = this.state;
  164. this.setState({
  165. ff:true
  166. })
  167. clearTimeout(timer)
  168. let _timer = setTimeout(()=>{
  169. this.closeTable();
  170. },200)
  171. this.setState({
  172. timer:_timer
  173. })
  174. }
  175. // 量表明细-确定
  176. comfirnTable(){
  177. const {flag} = this.state;
  178. this.setState({
  179. comfirnFlag:true,
  180. flag:!flag //触发更新
  181. })
  182. }
  183. resetComfirnFlag(){
  184. this.setState({
  185. comfirnFlag:false,
  186. ff:false
  187. })
  188. }
  189. showFormula(id){//计算公式
  190. this.setState({
  191. formulaId:id,
  192. optionId:null //关闭可能结果
  193. });
  194. const {patDom} = this.props;
  195. const ht = $(patDom.current).height();
  196. setTimeout(function(){
  197. $(patDom.current).scrollTop(ht+200);
  198. })
  199. }
  200. closeFormula(it){
  201. const {formulaId,isCalculated} =this.state;
  202. if(!isCalculated){
  203. //没有计算结果时,保存输入的值
  204. const {calcuResult,calcuValues} = this.props;
  205. const cres = calcuResult&&calcuResult[formulaId]||it.content.result;
  206. const result = cres&&cres[1]&&cres[1].text;
  207. if(result){
  208. this.setState({
  209. calcuValues:deepClone(calcuValues)
  210. });
  211. }
  212. }
  213. this.setState({
  214. formulaId:null,
  215. });
  216. }
  217. handleAddAssessItem(v,pIndex,i){
  218. const {addAssessItem,showHide,addScaleItems,scaleInfo} = this.props;
  219. if(!v){
  220. addScaleItems(scaleInfo[showHide.conceptId],showHide.conceptId);
  221. return ;
  222. }
  223. addAssessItem(v,pIndex,i);
  224. }
  225. addFormula(it,v,pIndex,i){
  226. const {chronicMagItem} = this.props;
  227. this.closeFormula(it);
  228. chronicMagItem&&this.handleAddAssessItem(v,pIndex,i);
  229. }
  230. handleInputformula(id,calcuContent,i,e) {
  231. const {calcuValues} = this.state;
  232. let obj = deepClone(calcuValues);
  233. let values = (obj&&obj[id])||deepClone(calcuContent);
  234. const txt = e.target.value;
  235. values[i].value = txt.replace(/[\u4e00-\u9fa5]|[^\d.]/g,''); //处理中文输入法的情况
  236. obj[id] = values;
  237. if(/[\u4e00-\u9fa5]|[^\d.]/g.test(txt)){
  238. e.target.value = txt.replace(/[\u4e00-\u9fa5]|[^\d.]/g,'');
  239. }
  240. this.setState({
  241. isCalculated:false,
  242. calcuValues:obj
  243. });
  244. }
  245. handleForRadio(id,calcuContent,i,fidx){//计算公式
  246. const { calcuValues } = this.state;
  247. let obj = deepClone(calcuValues);
  248. let values = (obj&&obj[id])||deepClone(calcuContent);
  249. let details = values[i].details;
  250. for(let x=0;x<details.length;x++){
  251. if(x!=fidx){
  252. details[x].state=0;
  253. }else{
  254. details[x].state=1;
  255. }
  256. }
  257. obj[id] = values;
  258. this.setState({
  259. isCalculated:false,
  260. calcuValues:obj
  261. });
  262. }
  263. handleRadio(item,parent){//可能结果
  264. let {radioVal} = this.props;
  265. this.setState({
  266. radioVal:Object.assign({},radioVal,{[parent.conceptId]:item.detailName})
  267. })
  268. }
  269. confirmOption(parent,pIndex,i){//可能结果确定
  270. const {radioVal,possible} = this.state;
  271. const {savePossibleResult,chronicMagItem} = this.props;
  272. this.setState({
  273. possible:Object.assign({},possible,radioVal),
  274. radioVal:Object.assign({},possible,radioVal),//不设置radioVal只有最近一次选中的值
  275. optionId:null,
  276. });
  277. savePossibleResult&&savePossibleResult({possible:Object.assign({},possible,radioVal),radioVal:Object.assign({},possible,radioVal)})
  278. chronicMagItem&&this.handleAddAssessItem(parent,pIndex,i);
  279. }
  280. handleSaveCalcu(obj){
  281. this.setState({
  282. possible:Object.assign({},obj.possible),
  283. radioVal:Object.assign({},obj.radioVal),//不设置radioVal只有最近一次选中的值
  284. })
  285. }
  286. calcuFormula(id,it) { //计算公式计算
  287. const { calcuFormula } = this.props;
  288. let item = deepClone(it);
  289. const values = this.state.calcuValues;
  290. const calcuValues = Object.keys(values).length&&values[id]?values[id]:item.content.details;
  291. let allHasInfo = true;
  292. for (let i = 0; i < calcuValues.length; i++) {
  293. if(calcuValues[i].controlType == 2) { //输入框类型的有没有填值
  294. if(!calcuValues[i].value) {
  295. allHasInfo = false;
  296. }
  297. } else if(calcuValues[i].controlType == 0) {
  298. let hasSelect = false;
  299. for( let z = 0; z <calcuValues[i].details.length; z++) {
  300. if(calcuValues[i].details[z].state == 1) {
  301. hasSelect= true;
  302. }
  303. }
  304. if(!hasSelect) {
  305. allHasInfo = false;
  306. }
  307. }
  308. }
  309. item.content.details = calcuValues;
  310. if(allHasInfo) { //所有都有值,则计算
  311. let param = {
  312. type: 2,
  313. data: item,
  314. disId: id
  315. };
  316. calcuFormula(param);
  317. this.setState({
  318. isCalculated:true
  319. });
  320. } else { //不是所有值都填过了
  321. Notify.info('请填写计算公式内容')
  322. }
  323. }
  324. handleMouseEnterDrug(index) {
  325. this.setState({
  326. currentIndex: index,
  327. })
  328. }
  329. handleMouseLeaveDrug() {
  330. this.setState({
  331. currentIndex: -1,
  332. })
  333. }
  334. handleMouseEnterImg() {
  335. this.setState({
  336. hasEnterImg: true
  337. })
  338. }
  339. handleMouseLeaveImg() {
  340. this.setState({
  341. hasEnterImg: false
  342. })
  343. }
  344. getCritical(v) {
  345. let hasCritical = false;
  346. if(v.details) {
  347. for (let i = 0; i < v.details.length; i++) {
  348. if(v.details[i].type == 4) {
  349. hasCritical = true
  350. }
  351. }
  352. }
  353. return hasCritical
  354. }
  355. getDetail(){
  356. const {data,formulaResult,calcuResult,chronicMagItem} = this.props;
  357. const {formulaId,optionId,possible,radioVal,calcuValues,currentIndex,hasEnterImg} = this.state;
  358. /*let names = [];*/
  359. let list = data&&data.map((v,i)=>{
  360. /*if(this.getCritical(v)&&names.includes(v.name)){ //重复项
  361. return '';
  362. }
  363. names.push(v.name);*/
  364. return <div className={style["list"]}>
  365. {v.name?<p>
  366. {this.getCritical(v) ? '':<span>患者可能有</span>}
  367. <span
  368. className={this.getCritical(v)?style['dis-name-no-line']: style['dis-name']}
  369. onMouseEnter={this.handleMouseEnterDrug.bind(this, i)}
  370. onMouseLeave = {this.handleMouseLeaveDrug.bind(this)}
  371. >
  372. {v.name}
  373. {this.getCritical(v)?'':<img className={style['info-img']}
  374. title='点击i图标可查看详细说明'
  375. style ={currentIndex === i ? {display: "inline-block"} : {display: "none"}}
  376. src={currentIndex === i ?(hasEnterImg ? infoMove : infoShow ): infoShow}
  377. onMouseEnter={this.handleMouseEnterImg.bind(this)}
  378. onMouseLeave = {this.handleMouseLeaveImg.bind(this)}
  379. onClick={this.showInfo.bind(this,v)}/>}
  380. </span>
  381. {/* <img src={infoShow} className={style["infoPic"]} onClick={this.showInfo.bind(this,v.id)}/> */}
  382. {this.getCritical(v)?'':':'}
  383. </p>:''}
  384. {v.details&&v.details.map((it,j)=>{
  385. if(it.type==1){
  386. return <p>
  387. <span className={style["listName"]}>
  388. <i onClick={this.showTable.bind(this,it.content,v,i,j)}>{'【'+it.content.name+'】'}</i>
  389. {formulaResult&&formulaResult[it.content.conceptId]?<i>{'结果:'}{formulaResult[it.content.conceptId].calcalculate&&formulaResult[it.content.conceptId].calcalculate.result.value +' '+ formulaResult[it.content.conceptId].calcalculate.result.text}</i>:''}
  390. </span>
  391. </p>
  392. }else if(it.type==2){
  393. const cres = calcuResult&&calcuResult[v.conceptId]||it.content.result;
  394. const result = cres&&cres[1]&&cres[1].text;
  395. const details = calcuValues&&calcuValues[v.conceptId]||it.content.details;
  396. return <div className={style["marTop"]}>
  397. <span className={style["limit"]}>
  398. 计算公式结果:
  399. <i className={style["blue"]} onClick={this.showFormula.bind(this,v.conceptId)}>{result?result:'请选择'}</i>
  400. <img src={level1} />
  401. </span>
  402. {formulaId&&formulaId==v.conceptId&&<MiniToast title={it.content.name}
  403. icon={allTableIcon}
  404. confirmText={chronicMagItem?'加入病历记录':'确定'}
  405. show={formulaId&&formulaId==v.conceptId?true:false}
  406. close={this.closeFormula.bind(this,it)}
  407. confirm={this.addFormula.bind(this,it,v,i,j)}
  408. footer={result?true:false}>
  409. <table>
  410. {details.map((item,idd)=>{
  411. if(item.controlType==0){//单选
  412. return <tr>
  413. <td>
  414. <span>{item.isShow == '0' ? item.name+':' : '请选择'+item.name+':'}</span>
  415. </td>
  416. <td>
  417. {Array.isArray(item.details)&&item.isShow == '0'&&item.details.map((ii,ind)=>{
  418. return ii.state == 1 && <div className={style["chooseItem"]}>
  419. {ii.detailName}
  420. </div>
  421. })}
  422. {Array.isArray(item.details)&&item.isShow != '0'&&item.details.map((ii,ind)=>{
  423. return <div className={style["chooseItem"]}>
  424. <Radio label={ii.detailName}
  425. isSelect={ii.state == 1}
  426. handleClick={this.handleForRadio.bind(this,v.conceptId,details,idd,ind)}>
  427. </Radio>
  428. </div>
  429. })}
  430. </td>
  431. </tr>
  432. }else if(item.controlType==2){//输入框
  433. return <tr>
  434. <td>
  435. <span>{item.isShow == '0' ? item.name+':':'请输入'+item.name+':'}</span>
  436. </td>
  437. <td>
  438. {item.isShow == '0' ? item.value + ' ' +item.uint : <input type="text" className={style['itemInp']} placeholder="请输入" value={item.value} onInput={this.handleInputformula.bind(this,v.conceptId,details,idd)}/>}
  439. </td>
  440. <td>
  441. {item.isShow != '0'&&<span>{item.uint}</span>}
  442. </td>
  443. </tr>
  444. }
  445. })}
  446. </table>
  447. <div className={style["forMulBtn"]} onClick={this.calcuFormula.bind(this,v.conceptId,it)}>计算</div>
  448. <table>
  449. {cres && Array.isArray(cres) &&cres.map((itemResult, resultIndex) => {
  450. return <tr>
  451. <td>
  452. <span>{itemResult.name+':'}</span>
  453. </td>
  454. <td>
  455. <span>{itemResult.text}</span>
  456. </td>
  457. </tr>
  458. })}
  459. </table>
  460. </MiniToast>}
  461. </div>
  462. }else if(it.type==3){
  463. return <div className={style["marTop"]}>
  464. <span className={style["limit"]}>
  465. 可能结果:
  466. <i onClick={this.showOption.bind(this,v.conceptId)} className={style["blue"]}>{possible[v.conceptId]?possible[v.conceptId]:'请选择'}</i>
  467. <img src={level1} />
  468. </span>
  469. <MiniToast title='结果选择'
  470. icon={checkIcon}
  471. confirmText={chronicMagItem?'加入病历记录':'确定'}
  472. show={optionId&&optionId==v.conceptId?true:false}
  473. close={this.closeOption}
  474. confirm={this.confirmOption.bind(this,v,i,j)}
  475. footer={radioVal[v.conceptId]?true:false}>
  476. <div className={style["infoOption"]}>
  477. <span>{it.content.name?it.content.name+':':''}</span>
  478. {it.content.details&&it.content.details.map((lis,ind)=>{
  479. return <div className={style["chooseItem"]}>
  480. <Radio label={lis.detailName}
  481. isSelect={radioVal[v.conceptId]==lis.detailName}
  482. handleClick={this.handleRadio.bind(this,lis,v)}>
  483. </Radio>
  484. {lis.state==1?<span className={style['recomand']}>(智能推荐)</span>:''}
  485. </div>
  486. })}
  487. </div>
  488. </MiniToast>
  489. </div>
  490. }
  491. })}
  492. </div>
  493. });
  494. return list;
  495. }
  496. componentWillReceiveProps(next){
  497. //计算公式可能结果弹窗关闭1916
  498. if(!next.data||next.data.length==0){
  499. this.setState({
  500. formulaId:null,
  501. optionId:null
  502. });
  503. }
  504. if(JSON.stringify(next.calcuValues)!=JSON.stringify(this.props.calcuValues)){
  505. this.setState({
  506. calcuValues:next.calcuValues
  507. })
  508. }
  509. if (JSON.stringify(next.wholeResults.possible) != JSON.stringify(this.props.possible)) {
  510. this.setState({
  511. radioVal: next.wholeResults.radioVal,
  512. possible: next.wholeResults.possible
  513. })
  514. }
  515. if(next.slideUp!=this.props.slideUp){
  516. if(next.slideUp){
  517. $(this.$content.current).slideUp(config.slideTime);
  518. }else{
  519. $(this.$content.current).slideDown(config.slideTime);
  520. }
  521. }
  522. }
  523. slideToggle(){
  524. const {toggleSlide,slideUp} = this.props;
  525. toggleSlide&&toggleSlide(!slideUp);
  526. }
  527. render(){
  528. const {comfirnFlag,flag,ff} = this.state;
  529. const {chronicMagItem,chronicDesease,data,showHide,slideUp} = this.props;
  530. const scaleFooter = <Footer print={true}
  531. footText={showHide.isPop||!chronicMagItem?"确定":"加入病历记录"}
  532. handlePrint={this.onPrint}
  533. handleConfirm={this.comfirnTable}/>;
  534. if(data&&data.length>0){
  535. return <div className={style["tips"]} style={{marginBottom:'15px'}}>
  536. <div className={className(style["tips-title"],style["chronic"],"clearfix")} onClick={this.slideToggle}>
  537. <div className={style["tips-name"]}>
  538. <img src={chronicPic} />
  539. <h2>{chronicMagItem&&chronicMagItem.name||chronicDesease&&chronicDesease.name||'病情提示'}<span className={style["redTips"]}>(根据病人病历情况进行的动态提示和评估)</span></h2>
  540. </div>
  541. <div className={style['toggle-btn']}>
  542. <img src={slideUp?down:up} alt="展开/收起"/>
  543. </div>
  544. </div>
  545. <div className={style["content"]} ref={this.$content}>
  546. {this.getDetail()}
  547. </div>
  548. {showHide&&showHide.showTable?<ComplexModal onclose={()=>this.closeTable(true)} footer={scaleFooter}
  549. title={showHide.name}
  550. icon={tableIcon}
  551. top={20}
  552. bottom={20}
  553. width={820}>
  554. <ScaleTable title={showHide.name}
  555. tableId={showHide.conceptId}
  556. comfirnFlag={comfirnFlag}
  557. flag={flag}
  558. flagT={ff}
  559. resetFlag={this.resetComfirnFlag}
  560. unscroeClose={this.unscroeClose}
  561. closeTable={this.closeTable}
  562. resRef={this.$result}
  563. ></ScaleTable>
  564. </ComplexModal>:''}
  565. </div>
  566. }
  567. //量表弹窗-无指标推送时量表弹窗要单独加载
  568. if(showHide&&showHide.showTable){
  569. return <ComplexModal onclose={()=>this.closeTable(true)} footer={scaleFooter}
  570. title={showHide.name}
  571. icon={tableIcon}
  572. top={20}
  573. bottom={20}
  574. width={820}>
  575. <ScaleTable title={showHide.name}
  576. tableId={showHide.conceptId}
  577. comfirnFlag={comfirnFlag}
  578. flag={flag}
  579. flagT={ff}
  580. resetFlag={this.resetComfirnFlag}
  581. unscroeClose={this.unscroeClose}
  582. closeTable={this.closeTable}
  583. resRef={this.$result}
  584. ></ScaleTable>
  585. </ComplexModal>;
  586. }
  587. }
  588. }
  589. export default ChronicInfo;