Browse Source

修改样式

See999 5 years ago
parent
commit
849dfe2ba6

+ 1 - 1
src/pages/main/WaitingArea.vue View File

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

+ 6 - 6
src/pages/main/dialog/OrdersDialog.vue View File

51
 
51
 
52
             <table class="table">
52
             <table class="table">
53
               <tr @click="cancelAdviceSelect">
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
               </tr>
60
               </tr>
61
               <template v-for="(group, group_index) in advice_groups">
61
               <template v-for="(group, group_index) in advice_groups">
62
                 <tr
62
                 <tr

+ 10 - 3
src/pages/main/dialog/new_order/AddNewOrders.vue View File

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