Browse Source

Merge branch 'master' of http://git.shengws.com/csx/Pad_New

XMLWAN 4 years ago
parent
commit
edc85e3fe4
2 changed files with 17 additions and 17 deletions
  1. 5 6
      config/dev.env.js
  2. 12 11
      src/pages/advice/DialysisAdviceTable.vue

+ 5 - 6
config/dev.env.js View File

@@ -1,14 +1,13 @@
1
-'use strict'
2
-const merge = require('webpack-merge')
3
-const prodEnv = require('./prod.env')
1
+"use strict";
2
+const merge = require("webpack-merge");
3
+const prodEnv = require("./prod.env");
4 4
 
5 5
 module.exports = merge(prodEnv, {
6 6
   NODE_ENV: '"development"',
7 7
   //BASE_API: '"https://api.xt.kuyicloud.com"'
8 8
   BASE_API: '"http://localhost:9531"'
9
-  //BASE_API: '"http://localhost:9529"'
9
+  // BASE_API: '"http://localhost:9529"'
10 10
   //http://api.xt.test.sgjyun.com http://localhost:9529
11 11
   // BASE_API: '"http://api.xt.test.sgjyun.com"'
12 12
   // BASE_API: '"https://api.xt.kuyicloud.com"'
13
-
14
-})
13
+});

+ 12 - 11
src/pages/advice/DialysisAdviceTable.vue View File

@@ -80,17 +80,17 @@
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>
88
-          <th width="100px">执行时间</th>
86
+          <th width="50px">开始时间</th>
87
+          <th width="60px">医嘱内容</th>
88
+          <th width="50px">执行时间</th>
89 89
           <th width="80px">执行护士</th>
90 90
           <th width="80px">校对护士</th>
91
-          <th width="110px">校对时间</th>
91
+          <th width="50px">校对时间</th>
92 92
           <th width="60px">开嘱医生</th>
93
-          <th width="110px">开嘱时间</th>
93
+          <th width="50px">开嘱时间</th>
94 94
         </tr>
95 95
         <template v-for="(schedules, zone_name, index) in filtedScheduals">
96 96
           <tr :key="index">
@@ -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>
@@ -153,12 +153,12 @@
153 153
                     v-if="advice.parent_id == 0 && advice.remark.length > 0"
154 154
                   >({{ advice.remark }})</span>
155 155
                 </td>
156
-                <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
156
+                <td>{{ parseTime(advice.execution_time, "{h}:{i}") }}</td>
157 157
                 <td>{{ getName(advice.execution_staff) }}</td>
158 158
                 <td>{{ getName(advice.checker) }}</td>
159
-                <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
159
+                <td>{{ parseTime(advice.check_time, "{h}:{i}") }}</td>
160 160
                 <td>{{ getName(advice.advice_doctor) }}</td>
161
-                <td>{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}") }}</td>
161
+                <td>{{ parseTime(advice.created_time, "{h}:{i}") }}</td>
162 162
               </tr>
163 163
             </template>
164 164
           </template>
@@ -626,7 +626,8 @@ export default {
626 626
 }
627 627
 .dialysisTable {
628 628
   @media only screen and (max-width: 450px) {
629
-    width: 1070px;
629
+    width: 800px;
630
+    //
630 631
   }
631 632
 }
632 633
 </style>