Browse Source

生成核查任务列表

wyq 4 năm trước cách đây
mục cha
commit
1fb643f138
4 tập tin đã thay đổi với 459 bổ sung349 xóa
  1. 2 2
      src/css/checkTaskList.less
  2. 15 14
      src/html/checkTaskList.html
  3. 1 0
      src/js/api.js
  4. 441 333
      src/js/checkTaskList.js

+ 2 - 2
src/css/checkTaskList.less

@@ -186,7 +186,7 @@ h2{
     width: 160px;
     max-height: 400px;
 }
-.levelList,.checkList{
+.levelList,.checkList,.statusList{
     width: 120px;
     // height: 200px;
     li:hover{
@@ -194,7 +194,7 @@ h2{
         cursor: pointer;
     }
 }
-.selectLevel,.selectDept,.fpSelectCheck,.qcSelectCheck{
+.selectLevel,.selectDept,.fpSelectCheck,.qcSelectCheck,.selectStatus{
     display: inline-block;
     position: relative;
     width:120px;

+ 15 - 14
src/html/checkTaskList.html

@@ -18,8 +18,9 @@
             <span>病历核查状态:</span>
             <span class="selectStatus">全部</span>
             <ul class="statusList filterDropList">
-                <li class="levelItem" data-name="乙" data-id=乙>已核查</li>
-                <li class="levelItem" data-name="丙" data-id=丙>未核查</li>
+                <Li class="statusItem" data-name="全部" data-id="全部">全部</Li>
+                <li class="statusItem" data-name="已核查" data-id='1'>已核查</li>
+                <li class="statusItem" data-name="未核查" data-id='0'>未核查</li>
             </ul>
         </span>
             <span class="filterItem typeFilter deptListWrap">
@@ -29,15 +30,15 @@
         </span>
             <span class="filterItem">
             <span>病人姓名:</span>
-            <input type="text" placeholder="病人姓名">
+            <input type="text" id="name" placeholder="病人姓名">
         </span>
             <span class="filterItem">
             <span>病人住院序号:</span>
-            <input type="text" placeholder="病人住院序号">
+            <input type="text" id="behospitalCode" placeholder="病人住院序号">
         </span>
             <span class="filterItem">
             <span>医生:</span>
-            <input type="text" placeholder="医生">
+            <input type="text" id="doctorName" placeholder="医生">
         </span>
         <span class="filterItem typeFilter clearfix" >
             <span class="fl">分配日期:</span>
@@ -66,21 +67,21 @@
              <table class="qctable">
                  <thead>
                  <tr class="tabTitle">
-                     <th class="beHospitalId textCenter" code="behospital_code">病人住院序号</th>
-                     <th class="scoreTime textCenter" code="grade_time">任务月份</th>
-                     <th class="doctorName textCenter" code="beh_doctor_name">病历核查状态</th>
+                     <th class="beHospitalId textCenter" >病人住院序号</th>
+                     <th class="scoreTime textCenter" >任务月份</th>
+                     <th class="doctorName textCenter" >病历核查状态</th>
                      <th class="deptName textCenter">科室</th>
-                     <th class="patientName textCenter" code="name" style="width: 100px;">病人姓名</th>
-                     <th class="patientNo textCenter" code="file_code">病案号</th>
+                     <th class="patientName textCenter"  style="width: 100px;">病人姓名</th>
+                     <th class="patientNo textCenter" >病案号</th>
                      <th class="doctorName textCenter">主管医生</th>
-                     <th class="outHospitalDate textCenter desc" code="leave_hospital_date">出院日期</th>
+                     <th class="outHospitalDate textCenter desc" >出院日期</th>
                      <th class="inHospitalDate textCenter" code="behospital_date">分配日期</th>
                      <th class="patientSex textCenter" code="sex">核查日期</th>
                      <th class="patientage textCenter">核查员</th>
                      <th class="bedNum textCenter" code="bed_code">任务数</th>
-                     <th class="recordLevel textCenter" code="level">病历等级</th>
-                     <th class="recordScore textCenter" code="score_res">病历得分</th>
-                     <th class="recordScoreOpera textCenter" style="width: 65px;">操作</th>
+                     <th class="recordLevel textCenter" >病历等级</th>
+                     <th class="recordScore textCenter" >病历得分</th>
+                     <!-- <th class="recordScoreOpera textCenter" style="width: 65px;">操作</th> -->
                  </tr>
                  </thead>
                  <tbody class="tbody">

+ 1 - 0
src/js/api.js

@@ -182,6 +182,7 @@ const ywCheckApi = {
     getCheckUserMap:'/qc/medCheckInfo/getCheckUserMap',  //核查人员列表
     addCheck:'/check/addCheck', //生成核查任务
     getTaskList:'/check/getUserList', //核查任务列表
+  getUserList: '/qc/medCheckWork/getUserList', //获取患者病历列表
 
 };
 module.exports = {

Những thai đổi đã bị hủy bỏ vì nó quá lớn
+ 441 - 333
src/js/checkTaskList.js