See999 4 years ago
parent
commit
963432f28c
1 changed files with 5 additions and 5 deletions
  1. 5 5
      src/pages/advice/DialysisAdviceTable.vue

+ 5 - 5
src/pages/advice/DialysisAdviceTable.vue View File

@@ -80,11 +80,11 @@
80 80
 
81 81
       <table class="table dialysisTable">
82 82
         <tr>
83
-          <th width="60px">姓名</th>
83
+          <th width="40px">姓名</th>
84 84
           <th width="40px">透析号</th>
85 85
           <!-- <th width="50px">类型</th> -->
86
-          <th width="110px">开始时间</th>
87
-          <th width="140px">医嘱内容</th>
86
+          <th width="50px">开始时间</th>
87
+          <th width="60px">医嘱内容</th>
88 88
           <th width="100px">执行时间</th>
89 89
           <th width="80px">执行护士</th>
90 90
           <th width="80px">校对护士</th>
@@ -126,7 +126,7 @@
126 126
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
127 127
                   {{
128 128
                   advice.parent_id == 0
129
-                  ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
129
+                  ? parseTime(advice.start_time, "{h}:{i}")
130 130
                   : ""
131 131
                   }}
132 132
                 </td>
@@ -626,7 +626,7 @@ export default {
626 626
 }
627 627
 .dialysisTable {
628 628
   @media only screen and (max-width: 450px) {
629
-    width: 1070px;
629
+    width: 1000px;
630 630
   }
631 631
 }
632 632
 </style>