Browse Source

bug498,501

zhouna 3 years ago
parent
commit
0616ee7aba

+ 1 - 0
src/html/dataAnalysis/statisticsDetail.html

@@ -64,6 +64,7 @@
                     <th class="moduleName" style="width: 65px;" code="level">病历等级</th>
                     <th class="beHospitalId textCenter" code="scoreRes">病历得分</th>
                     <th class="beHospitalId textCenter" code="behospitalCode">病人住院序号</th>
+                    <th class="beHospitalId textCenter" code="fileCode">病案号</th>
                     <th class="beHospitalId textCenter" code="name">病人姓名</th>
                     <th class="beHospitalId textCenter" code="age">年龄</th>
                     <th class="beHospitalId textCenter desc" code="behospitalDate">入院日期</th>

+ 1 - 0
src/html/dept/statisticsDetailDept.html

@@ -63,6 +63,7 @@
                 <thead>
                 <th class="moduleName" style="width: 65px;" code="level">病历等级</th>
                 <th class="beHospitalId textCenter" code="scoreRes">病历得分</th>
+                <th class="beHospitalId textCenter" code="behospitalCode">病人住院序号</th>
                 <th class="beHospitalId textCenter" code="fileCode">病案号</th>
                 <th class="beHospitalId textCenter" code="name">病人姓名</th>
                 <th class="beHospitalId textCenter" code="age">年龄</th>

+ 2 - 1
src/js/dataAnalysis/statisticsDetail.js

@@ -240,7 +240,7 @@ function getFilterParam(current){
 function renderTab(data,hisId){
     let str = ``
     if(data.length===0){
-      $('.tbody').html(emptyBox(null,10))
+      $('.tbody').html(emptyBox(null,11))
       return;
     }
     for(let i = 0; i < data.length; i++){
@@ -249,6 +249,7 @@ function renderTab(data,hisId){
                 <td >${item.level || "-"}</td>
                 <td >${item.scoreRes || "-"}</td>
                 <td >${item.behospitalCode || "-"}</td>
+                <td >${item.fileCode || "-"}</td>
                 <td >${item.name || "-"}</td>
                 <td >${item.age || "-"}</td>
                 <td >${item.behospitalDate || "-"}</td>

+ 2 - 1
src/js/dept/statisticsDetailDept.js

@@ -229,7 +229,7 @@ function getFilterParam(current){
 function renderTab(data,hisId){
   let str = ``
   if(data.length===0){
-	$('.tbody').html(emptyBox(null,10))
+	$('.tbody').html(emptyBox(null,11))
 	return;
   }
   for(let i = 0; i < data.length; i++){
@@ -237,6 +237,7 @@ function renderTab(data,hisId){
 	str += `<tr  data-index=${i}>
                 <td >${item.level || "-"}</td>
                 <td >${item.scoreRes || "-"}</td>
+                <td >${item.behospitalCode || "-"}</td>
                 <td >${item.fileCode || "-"}</td>
                 <td >${item.name || "-"}</td>
                 <td >${item.age || "-"}</td>