Ver código fonte

修改质控评分标题

zhangxc 5 anos atrás
pai
commit
04c11753ff

+ 2 - 0
src/css/index.less

@@ -190,6 +190,7 @@
     width: 40px;
     position: absolute;
     right: 0;
+    cursor: pointer;
   }
   .moduleMsgInfo{
     text-align: center;
@@ -237,6 +238,7 @@
     width: 40px;
     position: absolute;
     right: 0;
+    cursor: pointer;
   }
   .itemMsgContentBox{
     margin: 20px 0 0 0;

+ 1 - 1
src/css/itemManager.less

@@ -132,7 +132,7 @@ table{
     text-align: center;
     line-height: 36px;
     position: relative;
-    top: -2px;
+    top: -1px;
 }
 .editItem{
    color: #5A8EEE;

+ 27 - 4
src/css/qcList.less

@@ -93,8 +93,14 @@ table{
     position: relative;
     display: inline-block;
     margin-right: 20px;
+    float: left;
     height: 40px;
     line-height: 40px;
+    span{
+        display: inline-block;
+        line-height: 40px;
+        position: relative;
+    }
     input{
         width:120px;
         height:40px;
@@ -103,6 +109,7 @@ table{
         outline: none;
         margin-right: 10px;
         padding: 0 10px;
+        box-sizing: border-box;
     }
 }
 .filter{
@@ -115,17 +122,33 @@ table{
     text-align: center;
     line-height: 36px;
     position: relative;
-    top: -2px;
+    top: 2px;
 }
 .iconCheck{
     width: 14px;
 }
+.fl{
+    float: left;
+}
+.clearfix:after {
+    content: '';
+    height: 0;
+    line-height: 0;
+    display: block;
+    visibility: hidden;
+    clear: both;
+}
+.clearfix{
+    zoom:1
+}
+.divide{
+    margin: 0 10px;
+}
 .datapickerBox{
     position: relative;
     display: inline-block;
-    width: 150px;
+    width: 120px;
     height: 40px;
-    top: 10px;
     input{
         position: absolute;
     }
@@ -134,7 +157,7 @@ table{
     position: absolute;
     width: 15px;
     top: 15px;
-    right: 20px;
+    right: 10px;
 }
 .textCenter{
     text-align: center;

+ 2 - 2
src/html/itemManager.html

@@ -15,7 +15,7 @@
         <div class="main-body">
             <div class="filterBox">
                 <span class="filterItem typeFilter">
-                    <span>类别名称:</span>
+                    <span>模块类别:</span>
                     <span class="selectModuleType">全部 </span>
                     <ul class="moduleTypeList filterDropList"></ul>
                 </span>
@@ -35,7 +35,7 @@
                     </ul>
                 </span>
                 <span class="filterItem">
-                    <span>是否启用:</span>
+                    <span>启用状态:</span>
                     <span class="selectUsed">全部</span>
                     <ul class="usedList filterDropList">
                         <Li class="usedItem" data-name="全部" data-id="">全部</Li>

+ 9 - 5
src/html/qcList.html

@@ -15,14 +15,18 @@
         <div class="main-body">
             <div class="filterBox">
                 <span class="filterItem typeFilter">
-                    <span>输入搜索:</span>
+                    <span>病案号:</span>
                     <input class="patientNumInp" type="text" placeholder="请输入病案号">
+                </span>
+                <span class="filterItem typeFilter">
+                    <span>病人姓名:</span>
                     <input class="patientNameInp" type="text" placeholder="请输入病人姓名">
                 </span>
-                <span class="filterItem">
-                    <span>出院日期</span>
-                    <span class="datapickerBox"><input type="text" id="datepicker" autocomplete="off" /></span> -
-                    <span class="datapickerBox"><input type="text" id="datepicker2"  autocomplete="off" /></span>
+                <span class="filterItem typeFilter clearfix">
+                    <span class="fl">出院日期:</span>
+                    <span class="datapickerBox fl"><input type="text" id="datepicker" autocomplete="off" /></span>
+                    <span  class="divide fl">-</span>
+                    <span class="datapickerBox fl"><input type="text" id="datepicker2"  autocomplete="off" /></span>
                 </span>
                 
                 <span class="filter">查询</span>

+ 2 - 2
src/js/itemManager.js

@@ -108,8 +108,8 @@ function renderTab(data,activePage){
                 <td>${item.name}</td>
                 <td>${item.msg}</td>
                 <td  class="textCenter">${item.score}</td>
-                <td  class="textCenter">${item.isReject == '1' ? `<img class="switchImg" src=${switchIconOpen} />`:`<img class="switchImg" src=${switchIconClose} />`}</td>
-                <td class="textCenter">${item.isUsed == '1' ? `<img class="switchImg" src=${switchIconOpen} />`:`<img class="switchImg" src=${switchIconClose} />`}</td>
+                <td  class="textCenter">${item.isReject == '1' ? `是`:`否`}</td>
+                <td class="textCenter">${item.isUsed == '1' ? `是`:`否`}</td>
                 <td class="editItem">修改</td>
             </tr>
         `