瀏覽代碼

核查任务列表重新对接口

zhouna 4 年之前
父節點
當前提交
96c7947c0a
共有 3 個文件被更改,包括 276 次插入666 次删除
  1. 19 19
      src/html/checkTaskList.html
  2. 2 1
      src/js/api.js
  3. 255 646
      src/js/checkTaskList.js

+ 19 - 19
src/html/checkTaskList.html

@@ -25,26 +25,26 @@
         </span>
             <span class="filterItem typeFilter deptListWrap">
             <span>科室:</span>
-            <input type="text" class="selectDept canEditDept" value="全部">
+            <input type="text"  code="behDeptId" class="selectDept canEditDept" value="全部">
             <ul class="deptList filterDropList"></ul>
         </span>
             <span class="filterItem">
             <span>病人姓名:</span>
-            <input type="text" id="name" placeholder="病人姓名">
+            <input type="text" id="name" code="name" placeholder="病人姓名">
         </span>
             <span class="filterItem">
             <span>病人住院序号:</span>
-            <input type="text" id="behospitalCode" placeholder="病人住院序号">
+            <input type="text" id="behospitalCode" code="behospitalCode" placeholder="病人住院序号">
         </span>
             <span class="filterItem">
             <span>医生:</span>
-            <input type="text" id="doctorName" placeholder="医生">
+            <input type="text" code="doctorName" id="doctorName" placeholder="医生">
         </span>
         <span class="filterItem typeFilter clearfix" >
             <span class="fl">分配日期:</span>
-            <span class="datapickerBox fl"><input type="text" placeholder="请选择时间" id="datepicker" autocomplete="off" readonly /></span>
+            <span class="datapickerBox fl"><input type="text" code="jobDistributionTimeStart" placeholder="请选择时间" id="datepicker" autocomplete="off" readonly /></span>
             <span  class="divide fl">-</span>
-            <span class="datapickerBox fl"><input type="text" placeholder="请选择时间" id="datepicker2"  autocomplete="off" readonly/></span>
+            <span class="datapickerBox fl"><input type="text" code="jobDistributionTimeEnd" placeholder="请选择时间" id="datepicker2"  autocomplete="off" readonly/></span>
         </span>
         <span class="filterItem">
             <span>病历等级:</span>
@@ -67,20 +67,20 @@
              <table class="qctable">
                  <thead>
                  <tr class="tabTitle">
-                     <th class="beHospitalId textCenter" >病人住院序号</th>
-                     <th class="scoreTime textCenter" >任务月份</th>
-                     <th class="doctorName textCenter" >病历核查状态</th>
-                     <th class="deptName textCenter">科室</th>
-                     <th class="patientName textCenter"  style="width: 100px;">病人姓名</th>
-                     <th class="patientNo textCenter" >病案号</th>
-                     <th class="doctorName textCenter">主管医生</th>
-                     <th class="outHospitalDate textCenter desc" >出院日期</th>
+                     <th class="beHospitalId textCenter" valCode="behospitalCode">病人住院序号</th>
+                     <th class="scoreTime textCenter" valCode="month">任务月份</th>
+                     <th class="doctorName textCenter" valCode="status" >病历核查状态</th>
+                     <th class="deptName textCenter" valCode="behDeptName">科室</th>
+                     <th class="patientName textCenter" valCode="name"  style="width: 100px;">病人姓名</th>
+                     <th class="patientNo textCenter" valCode="fileCode" >病案号</th>
+                     <th class="doctorName textCenter" valCode="doctorName">主管医生</th>
+                     <th class="outHospitalDate textCenter desc" valCode="leaveHospitalDate" >出院日期</th>
                      <th class="inHospitalDate textCenter" code="jobDistributionTime">分配日期</th>
-                     <th class="patientSex textCenter" code="sex">核查日期</th>
-                     <th class="patientage textCenter">核查员</th>
-                     <th class="bedNum textCenter" code="score">任务数</th>
-                     <th class="recordLevel textCenter" >病历等级</th>
-                     <th class="recordScore textCenter" >病历得分</th>
+                     <th class="patientSex textCenter" code="checkTime">核查日期</th>
+                     <th class="patientage textCenter" valCode="checkName">核查员</th>
+                     <th class="bedNum textCenter" valCode="" code="casesEntryNum">任务数</th>
+                     <th class="recordLevel textCenter" valCode="level" >病历等级</th>
+                     <th class="recordScore textCenter" valCode="scoreRes" >病历得分</th>
                      <!-- <th class="recordScoreOpera textCenter" style="width: 65px;">操作</th> -->
                  </tr>
                  </thead>

+ 2 - 1
src/js/api.js

@@ -184,8 +184,9 @@ const ywCheckApi = {
     getTaskList:'/qc/medCheckWork/getUserList', //核查任务列表
     getTaskByUserId:'/qc/medCheckInfo/getCheckListByUserId',//质控员名下的任务列表
     allotTask:'/qc/medCheckInfo/updateDistributionCheck',//分配或取消任务
-    getUserList: '/qc/medCheckWork/getUserList', //获取患者病历列表
+    getUserList: '/qc/recCheck/checkedRecordList', //获取患者病历列表
     recordCheck:'/qc/recCheck/recordCheck',//义乌病历核查
+
 };
 module.exports = {
   api,

文件差異過大導致無法顯示
+ 255 - 646
src/js/checkTaskList.js