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
-'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
 module.exports = merge(prodEnv, {
5
 module.exports = merge(prodEnv, {
6
   NODE_ENV: '"development"',
6
   NODE_ENV: '"development"',
7
   //BASE_API: '"https://api.xt.kuyicloud.com"'
7
   //BASE_API: '"https://api.xt.kuyicloud.com"'
8
   BASE_API: '"http://localhost:9531"'
8
   BASE_API: '"http://localhost:9531"'
9
-  //BASE_API: '"http://localhost:9529"'
9
+  // BASE_API: '"http://localhost:9529"'
10
   //http://api.xt.test.sgjyun.com http://localhost:9529
10
   //http://api.xt.test.sgjyun.com http://localhost:9529
11
   // BASE_API: '"http://api.xt.test.sgjyun.com"'
11
   // BASE_API: '"http://api.xt.test.sgjyun.com"'
12
   // BASE_API: '"https://api.xt.kuyicloud.com"'
12
   // BASE_API: '"https://api.xt.kuyicloud.com"'
13
-
14
-})
13
+});

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

80
 
80
 
81
       <table class="table dialysisTable">
81
       <table class="table dialysisTable">
82
         <tr>
82
         <tr>
83
-          <th width="60px">姓名</th>
83
+          <th width="40px">姓名</th>
84
           <th width="40px">透析号</th>
84
           <th width="40px">透析号</th>
85
           <!-- <th width="50px">类型</th> -->
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
           <th width="80px">执行护士</th>
89
           <th width="80px">执行护士</th>
90
           <th width="80px">校对护士</th>
90
           <th width="80px">校对护士</th>
91
-          <th width="110px">校对时间</th>
91
+          <th width="50px">校对时间</th>
92
           <th width="60px">开嘱医生</th>
92
           <th width="60px">开嘱医生</th>
93
-          <th width="110px">开嘱时间</th>
93
+          <th width="50px">开嘱时间</th>
94
         </tr>
94
         </tr>
95
         <template v-for="(schedules, zone_name, index) in filtedScheduals">
95
         <template v-for="(schedules, zone_name, index) in filtedScheduals">
96
           <tr :key="index">
96
           <tr :key="index">
126
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
126
                 <td v-if="advice_index == 0" :rowspan="group.advices.length">
127
                   {{
127
                   {{
128
                   advice.parent_id == 0
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
                 </td>
132
                 </td>
153
                     v-if="advice.parent_id == 0 && advice.remark.length > 0"
153
                     v-if="advice.parent_id == 0 && advice.remark.length > 0"
154
                   >({{ advice.remark }})</span>
154
                   >({{ advice.remark }})</span>
155
                 </td>
155
                 </td>
156
-                <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
156
+                <td>{{ parseTime(advice.execution_time, "{h}:{i}") }}</td>
157
                 <td>{{ getName(advice.execution_staff) }}</td>
157
                 <td>{{ getName(advice.execution_staff) }}</td>
158
                 <td>{{ getName(advice.checker) }}</td>
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
                 <td>{{ getName(advice.advice_doctor) }}</td>
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
               </tr>
162
               </tr>
163
             </template>
163
             </template>
164
           </template>
164
           </template>
626
 }
626
 }
627
 .dialysisTable {
627
 .dialysisTable {
628
   @media only screen and (max-width: 450px) {
628
   @media only screen and (max-width: 450px) {
629
-    width: 1070px;
629
+    width: 800px;
630
+    //
630
   }
631
   }
631
 }
632
 }
632
 </style>
633
 </style>