Jelajahi Sumber

Merge branch 'test' of http://192.168.2.236:10080/zhouna/AIPlatform into test

luolei 4 tahun lalu
induk
melakukan
76ef608eef

+ 2 - 2
src/css/qcListOutHospital.less

@@ -23,8 +23,8 @@ h2{
 .main-body{
     .main-body-com;
     border: none;
-    // border:10px @disColor solid;
-    border-left:10px @disColor solid;
+    border:10px @disColor solid;
+    // border-left:10px @disColor solid;
     margin: 44px 0 0;
     min-width: 1090px;
     min-height: calc(100% - 84px);

+ 2 - 2
src/css/readmission.less

@@ -23,8 +23,8 @@ h2{
 .main-body{
     .main-body-com;
     border: none;
-    // border:10px @disColor solid;
-    border-left:10px @disColor solid;
+    border:10px @disColor solid;
+    // border-left:10px @disColor solid;
     margin: 44px 0 0;
     min-width: 1090px;
     min-height: calc(100% - 84px);

+ 2 - 2
src/css/uccDetail.less

@@ -23,8 +23,8 @@ h2{
 .main-body{
     .main-body-com;
     border: none;
-    // border:10px @disColor solid;
-    border-left:10px @disColor solid;
+    border:10px @disColor solid;
+    // border-left:10px @disColor solid;
     margin: 44px 0 0;
     min-width: 1090px;
     min-height: calc(100% - 84px);

+ 1 - 1
src/html/uccDetail.html

@@ -5,7 +5,7 @@
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
-    <title>病历质控评分</title>
+    <title>时效性相关统计/缺陷详情</title>
     
 </head>
 

+ 1 - 1
src/js/qcListCopy.js

@@ -30,7 +30,7 @@ let startDateParam = getUrlArgObjectNew("startDate",srcUrl)||""
 let endDateParam = getUrlArgObjectNew("endDate",srcUrl)||""
 let from = getUrlArgObjectNew("from",srcUrl)||""
 let defectName = getUrlArgObjectNew("defectName",srcUrl)||"";
-let casesEntryId = getUrlArgObjectNew("casesEntryId",srcUrl)|| "";
+let casesEntryId = getUrlArgObjectNew("defectId",srcUrl)|| "";
 let casesId = getUrlArgObjectNew("casesId",srcUrl)|| "";
 let  ruleType = getUrlArgObjectNew("ruleType",srcUrl)||""
 let isSingleReject = getUrlArgObjectNew("isSingleReject",srcUrl)||""

+ 2 - 1
src/js/singleVeto.js

@@ -323,9 +323,10 @@ function goDetail(data){
     $(".goDetail").click(function(){
         const index = $(this).parent().attr("data-index")
         let defectName = $(this).attr("data-name")
+         let defectId = $(this).parent().attr("data-id")
         const item = data[index]
         // focusMenuItem("YH-ZKK-GKSQXZB_XQ");
-        $(parent.document).find("#contentIframe").attr("src",`./qcListCopy.html?defectName=${defectName}&startDate=${startDateParam}&endDate=${endDateParam}&from=${from}&isSingleReject=${item.isReject}&deptName=${deptName}&deptId=${deptName}`)
+        $(parent.document).find("#contentIframe").attr("src",`./qcListCopy.html?defectName=${defectName}&defectId=${defectId}&startDate=${startDateParam}&endDate=${endDateParam}&from=${from}&isSingleReject=${item.isReject}&deptName=${deptName}&deptId=${deptName}`)
     })
 }