See999 преди 5 години
родител
ревизия
849dfe2ba6
променени са 3 файла, в които са добавени 17 реда и са изтрити 10 реда
  1. 1 1
      src/pages/main/WaitingArea.vue
  2. 6 6
      src/pages/main/dialog/OrdersDialog.vue
  3. 10 3
      src/pages/main/dialog/new_order/AddNewOrders.vue

+ 1 - 1
src/pages/main/WaitingArea.vue Целия файл

@@ -129,7 +129,7 @@ export default {
129 129
       menuList: [
130 130
         { value: "1", label: "全部", count: 0 },
131 131
         { value: "3", label: "待开处方", count: 0 },
132
-        { value: "2", label: "待透前称量", count: 0 }
132
+        { value: "2", label: "待称重", count: 0 }
133 133
       ],
134 134
 
135 135
       select_index: 0,

+ 6 - 6
src/pages/main/dialog/OrdersDialog.vue Целия файл

@@ -51,12 +51,12 @@
51 51
 
52 52
             <table class="table">
53 53
               <tr @click="cancelAdviceSelect">
54
-                <th width="12%">开嘱医生</th>
55
-                <th width="20%">开始时间</th>
56
-                <th width="36%">医嘱内容</th>
57
-                <th width="20%">执行时间</th>
58
-                <th width="12%">执行护士</th>
59
-                <th v-if="template_id != 6" width="10%">核对人员</th>
54
+                <th width="8%">开嘱医生</th>
55
+                <th width="16%">开始时间</th>
56
+                <th width="44%">医嘱内容</th>
57
+                <th width="16%">执行时间</th>
58
+                <th width="8%">执行护士</th>
59
+                <th v-if="template_id != 6" width="8%">核对人员</th>
60 60
               </tr>
61 61
               <template v-for="(group, group_index) in advice_groups">
62 62
                 <tr

+ 10 - 3
src/pages/main/dialog/new_order/AddNewOrders.vue Целия файл

@@ -583,11 +583,11 @@ export default {
583 583
     th {
584 584
       background: $main-color;
585 585
       color: #fff;
586
-      height: 0.88rem;
587
-      line-height: 0.88rem;
586
+      height: 1.2rem;
587
+      line-height: 1.2rem;
588 588
     }
589 589
     td {
590
-      line-height: 0.4rem;
590
+      line-height: 1.2rem;
591 591
     }
592 592
   }
593 593
 }
@@ -638,3 +638,10 @@ export default {
638 638
   }
639 639
 }
640 640
 </style>
641
+<style lang="scss">
642
+.newAddTable {
643
+  .table tr td {
644
+    padding: 0;
645
+  }
646
+}
647
+</style>