lighter 1 year ago
parent
commit
b22b0ab3fe
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/views/hospitalization/case-front-sheet/FillCaseFrontSheet.vue

+ 5 - 2
src/views/hospitalization/case-front-sheet/FillCaseFrontSheet.vue

@@ -55,7 +55,7 @@
           <div style="position: absolute; top: 20px; left: 20px">
             <span
                 v-if="patient.auditState === 'NONE'"
-                class="audit-state audit-state_initial"
+                class="audit-state audit-state_none"
             >
               病案质控未申请
             </span>
@@ -2082,7 +2082,7 @@ table td {
 
 .audit-state {
   font-weight: bold;
-  font-size: 14px;
+  font-size: 16px;
 }
 .audit-state_approved {
   color: green;
@@ -2095,4 +2095,7 @@ table td {
 .audit-state_initial {
   color: #777777;
 }
+.audit-state_none {
+  color: #e8b600;
+}
 </style>