Browse Source

31天再入院主诊断拆为出入院诊断

zhouna 4 years ago
parent
commit
a2c08787f8

+ 2 - 1
src/html/dept/readmissionDept.html

@@ -132,7 +132,8 @@
                 <th class="beHospitalId textCenter">病历等级</th>
                 <th class="beHospitalId textCenter">病历得分</th>
                 <th class="beHospitalId textCenter">主管医生</th>
-                <th class="beHospitalId textCenter">主诊断</th>
+                <th class="beHospitalId textCenter">入院诊断</th>
+                <th class="beHospitalId textCenter">出院诊断</th>
                 <th class="beHospitalId textCenter">入院日期</th>
                 <th class="beHospitalId textCenter">出院日期</th>
                 <th class="beHospitalId textCenter">住院天数</th>

+ 2 - 1
src/html/readmission.html

@@ -112,7 +112,8 @@
                       <th class="beHospitalId textCenter">病历等级</th>
                       <th class="beHospitalId textCenter">病历得分</th>
                       <th class="beHospitalId textCenter">科室</th>
-                      <th class="beHospitalId textCenter">主诊断</th>
+                      <th class="beHospitalId textCenter">入院诊断</th>
+                      <th class="beHospitalId textCenter">出院诊断</th>
                       <th class="beHospitalId textCenter">入院日期</th>
                       <th class="beHospitalId textCenter">出院日期</th>
                       <th class="beHospitalId textCenter">住院天数</th>

+ 3 - 1
src/js/dept/readmissionDept.js

@@ -248,7 +248,8 @@ function renderTab(data, hisId, activePage) {
           <td class="textCenter">${item.details[0].level || '-'}</td> 
           <td class="textCenter">${item.details[0].scoreRes || '-'}</td> 
           <td class="textCenter">${item.details[0].doctorName || '-'}</td> 
-          <td class="textCenter"><div class="ellipsis" title="${item.details[0].diagnose}">${item.details[0].diagnose || "-"}</div></td> 
+          <td class="textCenter"><div class="ellipsis" title="${item.details[0].diagnose}">${item.details[0].diagnose || "-"}</div></td>
+          <td class="textCenter"><div class="ellipsis" title="${item.details[0].diagnoseName}">${item.details[0].diagnoseName || "-"}</div></td>  
           <td class="textCenter">${item.details[0].behospitalDate || '-'}</td> 
           <td class="textCenter">${item.details[0].leaveHospitalDate || '-'}</td> 
           <td class="textCenter">${item.details[0].behospitalDayNum || '-'}</td> 
@@ -270,6 +271,7 @@ function renderTab(data, hisId, activePage) {
           <td class="textCenter">${item.details[1].scoreRes || '-'}</td> 
           <td class="textCenter">${item.details[1].doctorName || '-'}</td> 
           <td class="textCenter"><div class="ellipsis" title="${item.details[1].diagnose}">${item.details[1].diagnose || "-"}</div></td> 
+          <td class="textCenter"><div class="ellipsis" title="${item.details[1].diagnoseName}">${item.details[1].diagnoseName || "-"}</div></td> 
           <td class="textCenter">${item.details[1].behospitalDate || '-'}</td> 
           <td class="textCenter">${item.details[1].leaveHospitalDate || '-'}</td> 
           <td class="textCenter">${item.details[1].behospitalDayNum || '-'}</td> 

+ 1 - 1
src/js/index.js

@@ -434,7 +434,7 @@ function getAllCode(data){
     focusMenuItem("YH-KZTKS");
   }
   setCookie("codeLis",JSON.stringify(lis))
-  setCookie("trdObj",JSON.stringify(trdObj))
+  //setCookie("trdObj",JSON.stringify(trdObj))
 }
 function sureChangeWord(){
   $(document).on('click','.sureChange.active',function(){

+ 2 - 0
src/js/readmission.js

@@ -194,6 +194,7 @@ function renderTab(data,hisId,activePage){
           <td class="textCenter">${item.details[0].scoreRes || "-"}</td> 
           <td class="textCenter">${item.details[0].behDeptName || "-"}</td> 
           <td class="textCenter"><div class="ellipsis" title="${item.details[0].diagnose}">${item.details[0].diagnose || "-"}</div></td> 
+          <td class="textCenter"><div class="ellipsis" title="${item.details[0].diagnoseName}">${item.details[0].diagnoseName || "-"}</div></td> 
           <td class="textCenter">${item.details[0].behospitalDate || "-"}</td> 
           <td class="textCenter">${item.details[0].leaveHospitalDate || "-"}</td> 
           <td class="textCenter">${item.details[0].behospitalDayNum || "-"}</td> 
@@ -214,6 +215,7 @@ function renderTab(data,hisId,activePage){
           <td class="textCenter">${item.details[1].scoreRes || "-"}</td> 
           <td class="textCenter">${item.details[1].behDeptName || "-"}</td> 
           <td class="textCenter"><div class="ellipsis" title="${item.details[1].diagnose}">${item.details[1].diagnose || "-"}</div></td> 
+          <td class="textCenter"><div class="ellipsis" title="${item.details[1].diagnoseName}">${item.details[1].diagnoseName || "-"}</div></td> 
           <td class="textCenter">${item.details[1].behospitalDate || "-"}</td> 
           <td class="textCenter">${item.details[1].leaveHospitalDate || "-"}</td> 
           <td class="textCenter">${item.details[1].behospitalDayNum || "-"}</td>