xiaoming_global 5 years ago
parent
commit
e7ade97e8f

+ 202 - 201
src/pages/advice/DialysisAdviceTable.vue View File

71
 
71
 
72
     <div style="width:100%;overflow:hildden;overflow-x:auto;" class="DialysisAdvice">
72
     <div style="width:100%;overflow:hildden;overflow-x:auto;" class="DialysisAdvice">
73
       <div class="blueBorder"></div>
73
       <div class="blueBorder"></div>
74
-      <!--
74
+
75
       <table class="table">
75
       <table class="table">
76
-      <tr>
77
-        <th width="50px">姓名</th>
78
-        <th width="50px">透析号</th>
79
-        <th width="50px">期效</th>
80
-        <th width="100px">开始时间</th>
81
-        <th width="200px">医嘱内容</th>
82
-        <th width="50px">执行时间</th>
83
-        <th width="50px">执行护士</th>
84
-        <th width="50px">校对护士</th>
85
-        <th width="100px">校对时间</th>
86
-        <th width="50px">开嘱医生</th>
87
-        <th width="100px">开嘱时间</th>
88
-      </tr>
89
-      <template v-for="(schedules, zone_name, index) in filtedScheduals">
90
-        <tr :key="index">
91
-          <td>{{ zone_name }}</td>
92
-          <td></td>
93
-          <td></td>
94
-          <td></td>
95
-          <td></td>
96
-          <td></td>
97
-          <td></td>
98
-          <td></td>
99
-          <td></td>
100
-          <td></td>
101
-          <td></td>
76
+        <tr>
77
+          <th width="50px">姓名</th>
78
+          <th width="50px">透析号</th>
79
+          <th width="50px">期效</th>
80
+          <th width="100px">开始时间</th>
81
+          <th width="200px">医嘱内容</th>
82
+          <th width="50px">执行时间</th>
83
+          <th width="50px">执行护士</th>
84
+          <th width="50px">校对护士</th>
85
+          <th width="100px">校对时间</th>
86
+          <th width="50px">开嘱医生</th>
87
+          <th width="100px">开嘱时间</th>
102
         </tr>
88
         </tr>
103
-        <template v-for="schedule in schedules">
104
-          <template v-for="(group, group_index) in schedule.new_advice">
105
-            <tr v-for="(advice, advice_index) in group.advices" @click="clickfunction(schedule)">
106
-
107
-              <td
108
-                v-if="advice_index == 0"
109
-                :rowspan="group.advices.length"
110
-                style="color:#409eff;"
111
-              >{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
112
-              <td v-if="advice_index == 0" :rowspan="group.advices.length">
113
-                {{
114
-                advice.parent_id == 0 ? schedule.patient.dialysis_no : ""
115
-                }}
116
-              </td>
117
-              <td
118
-                v-if="advice_index == 0"
119
-                :rowspan="group.advices.length"
120
-              >{{ getAdaviceType(advice.advice_type, advice.parent_id) }}</td>
121
-              <td v-if="advice_index == 0" :rowspan="group.advices.length">
122
-                {{
123
-                advice.parent_id == 0
124
-                ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
125
-                : ""
126
-                }}
127
-              </td>
128
-              <td
129
-                :class="
89
+        <template v-for="(schedules, zone_name, index) in filtedScheduals">
90
+          <tr :key="index">
91
+            <td>{{ zone_name }}</td>
92
+            <td></td>
93
+            <td></td>
94
+            <td></td>
95
+            <td></td>
96
+            <td></td>
97
+            <td></td>
98
+            <td></td>
99
+            <td></td>
100
+            <td></td>
101
+            <td></td>
102
+          </tr>
103
+          <template v-for="schedule in schedules">
104
+            <template v-for="(group, group_index) in schedule.new_advice">
105
+              <tr v-for="(advice, advice_index) in group.advices" @click="clickfunction(schedule)">
106
+                <td
107
+                  v-if="advice_index == 0"
108
+                  :rowspan="group.advices.length"
109
+                  style="color:#409eff;"
110
+                >{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
111
+                <td v-if="advice_index == 0" :rowspan="group.advices.length">
112
+                  {{
113
+                  advice.parent_id == 0 ? schedule.patient.dialysis_no : ""
114
+                  }}
115
+                </td>
116
+                <td
117
+                  v-if="advice_index == 0"
118
+                  :rowspan="group.advices.length"
119
+                >{{ getAdaviceType(advice.advice_type, advice.parent_id) }}</td>
120
+                <td v-if="advice_index == 0" :rowspan="group.advices.length">
121
+                  {{
122
+                  advice.parent_id == 0
123
+                  ? parseTime(advice.start_time, "{m}-{d} {h}:{i}")
124
+                  : ""
125
+                  }}
126
+                </td>
127
+                <td
128
+                  :class="
130
                     advice.parent_id == 0
129
                     advice.parent_id == 0
131
                       ? 'advice_content'
130
                       ? 'advice_content'
132
                       : 'subadvice_content'
131
                       : 'subadvice_content'
133
                   "
132
                   "
134
-              >
135
-                <span>{{ advice.advice_name }}</span>
136
-                <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
137
-                <span v-if="advice.prescribing_number">
138
-                  {{ advice.prescribing_number
139
-                  }}{{ advice.prescribing_number_unit }}
140
-                </span>
141
-                <span v-if="advice.single_dose">
142
-                  单次用量 {{ advice.single_dose
143
-                  }}{{ advice.single_dose_unit }}
144
-                </span>
145
-                <span>{{ advice.delivery_way }}</span>
146
-                <span>{{ advice.execution_frequency }}</span>
147
-                <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{ advice.remark }})</span>
148
-              </td>
149
-              <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
150
-              <td>{{ getName(advice.execution_staff) }}</td>
151
-              <td>{{ getName(advice.checker) }}</td>
152
-              <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
153
-              <td>{{ getName(advice.advice_doctor) }}</td>
154
-              <td>{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}") }}</td>
155
-            </tr>
133
+                >
134
+                  <span>{{ advice.advice_name }}</span>
135
+                  <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
136
+                  <span v-if="advice.prescribing_number">
137
+                    {{ advice.prescribing_number
138
+                    }}{{ advice.prescribing_number_unit }}
139
+                  </span>
140
+                  <span v-if="advice.single_dose">
141
+                    单次用量 {{ advice.single_dose
142
+                    }}{{ advice.single_dose_unit }}
143
+                  </span>
144
+                  <span>{{ advice.delivery_way }}</span>
145
+                  <span>{{ advice.execution_frequency }}</span>
146
+                  <span
147
+                    v-if="advice.parent_id == 0 && advice.remark.length > 0"
148
+                  >({{ advice.remark }})</span>
149
+                </td>
150
+                <td>{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
151
+                <td>{{ getName(advice.execution_staff) }}</td>
152
+                <td>{{ getName(advice.checker) }}</td>
153
+                <td>{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
154
+                <td>{{ getName(advice.advice_doctor) }}</td>
155
+                <td>{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}") }}</td>
156
+              </tr>
157
+            </template>
156
           </template>
158
           </template>
157
         </template>
159
         </template>
158
-      </template>
159
-      </table>-->
160
+      </table>
160
 
161
 
161
-      <!-- <div class="NoData" v-show="zones.length <= 1">
162
+      <div class="NoData" v-show="zones.length <= 1">
162
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
163
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
163
-      </div>-->
164
-      <el-table :data="date" border style="width: 100%">
164
+      </div>
165
+      <!-- <el-table :data="date" border style="width: 100%">
165
         <el-table-column fixed prop="date" label="姓名" width="100" align="center">
166
         <el-table-column fixed prop="date" label="姓名" width="100" align="center">
166
             <template slot-scope="scope">
167
             <template slot-scope="scope">
167
                {{ scope.row.advice_name }}
168
                {{ scope.row.advice_name }}
177
         <el-table-column prop="zip" label="校对时间" width="200" align="center"></el-table-column>
178
         <el-table-column prop="zip" label="校对时间" width="200" align="center"></el-table-column>
178
         <el-table-column prop="zip" label="开嘱医生" width="200" align="center"></el-table-column>
179
         <el-table-column prop="zip" label="开嘱医生" width="200" align="center"></el-table-column>
179
         <el-table-column prop="zip" label="开嘱时间" width="200" align="center"></el-table-column>
180
         <el-table-column prop="zip" label="开嘱时间" width="200" align="center"></el-table-column>
180
-      </el-table>
181
+      </el-table>-->
181
     </div>
182
     </div>
182
 
183
 
183
     <mt-datetime-picker
184
     <mt-datetime-picker
193
 </template>
194
 </template>
194
 
195
 
195
 <script>
196
 <script>
196
-import SideBar from '@/pages/layout/SideBar'
197
-import { parseTime } from '@/utils'
198
-import { getSchedualDoctors } from '@/api/advice'
197
+import SideBar from "@/pages/layout/SideBar";
198
+import { parseTime } from "@/utils";
199
+import { getSchedualDoctors } from "@/api/advice";
199
 
200
 
200
 export default {
201
 export default {
201
-  name: 'DialysisAdviceTable',
202
+  name: "DialysisAdviceTable",
202
   components: {
203
   components: {
203
     SideBar
204
     SideBar
204
   },
205
   },
205
-  data () {
206
+  data() {
206
     return {
207
     return {
207
       selected_date: new Date(),
208
       selected_date: new Date(),
208
       admin_user: [],
209
       admin_user: [],
210
       show_sch_type_selector: false,
211
       show_sch_type_selector: false,
211
       schedule_type_selected: 0,
212
       schedule_type_selected: 0,
212
       schedule_types: [
213
       schedule_types: [
213
-        { value: 0, text: '全部班次' },
214
-        { value: 1, text: '上午' },
215
-        { value: 2, text: '下午' },
216
-        { value: 3, text: '晚上' }
214
+        { value: 0, text: "全部班次" },
215
+        { value: 1, text: "上午" },
216
+        { value: 2, text: "下午" },
217
+        { value: 3, text: "晚上" }
217
       ],
218
       ],
218
 
219
 
219
       show_zone_selector: false,
220
       show_zone_selector: false,
220
       zone_selected: 0,
221
       zone_selected: 0,
221
       show_patient_type_selector: false,
222
       show_patient_type_selector: false,
222
-      zones: [{ value: 0, text: '全部分区', select: true }],
223
+      zones: [{ value: 0, text: "全部分区", select: true }],
223
 
224
 
224
       show_advice_type_selector: false,
225
       show_advice_type_selector: false,
225
       advice_type_selected: 0,
226
       advice_type_selected: 0,
226
       advice_types: [
227
       advice_types: [
227
-        { value: 0, text: '全部医嘱' },
228
-        { value: 1, text: '长期医嘱' },
229
-        { value: 3, text: '临时医嘱' }
228
+        { value: 0, text: "全部医嘱" },
229
+        { value: 1, text: "长期医嘱" },
230
+        { value: 3, text: "临时医嘱" }
230
       ],
231
       ],
231
 
232
 
232
       patient_types: [
233
       patient_types: [
233
-        { value: 0, text: '全部病人' },
234
-        { value: 1, text: '我的病人' },
235
-        { value: 2, text: '未执行病人' }
234
+        { value: 0, text: "全部病人" },
235
+        { value: 1, text: "我的病人" },
236
+        { value: 2, text: "未执行病人" }
236
       ],
237
       ],
237
       patient_selected: 0,
238
       patient_selected: 0,
238
 
239
 
239
       scheduleMap: {},
240
       scheduleMap: {},
240
       tableData: []
241
       tableData: []
241
-    }
242
+    };
242
   },
243
   },
243
   computed: {
244
   computed: {
244
-    selected_date_str: function () {
245
-      return parseTime(this.selected_date, '{y}-{m}-{d}')
245
+    selected_date_str: function() {
246
+      return parseTime(this.selected_date, "{y}-{m}-{d}");
246
     },
247
     },
247
-    filtedScheduals: function () {
248
-      var scheduleMap = new Object()
248
+    filtedScheduals: function() {
249
+      var scheduleMap = new Object();
249
       if (this.zone_selected == 0) {
250
       if (this.zone_selected == 0) {
250
         for (const key in this.scheduleMap) {
251
         for (const key in this.scheduleMap) {
251
-          scheduleMap[key] = this.scheduleMap[key]
252
+          scheduleMap[key] = this.scheduleMap[key];
252
         }
253
         }
253
       } else {
254
       } else {
254
-        var zone_name = this.zones[this.zone_selected].text
255
-        scheduleMap[zone_name] = this.scheduleMap[zone_name]
255
+        var zone_name = this.zones[this.zone_selected].text;
256
+        scheduleMap[zone_name] = this.scheduleMap[zone_name];
256
       }
257
       }
257
 
258
 
258
       if (this.schedule_type_selected != 0) {
259
       if (this.schedule_type_selected != 0) {
259
-        var _scheduleMap = {}
260
+        var _scheduleMap = {};
260
         for (const key in scheduleMap) {
261
         for (const key in scheduleMap) {
261
-          var origin_schedules = scheduleMap[key]
262
-          var schedules = []
262
+          var origin_schedules = scheduleMap[key];
263
+          var schedules = [];
263
           for (let index = 0; index < origin_schedules.length; index++) {
264
           for (let index = 0; index < origin_schedules.length; index++) {
264
-            const schedule = origin_schedules[index]
265
+            const schedule = origin_schedules[index];
265
             if (schedule.schedule_type == this.schedule_type_selected) {
266
             if (schedule.schedule_type == this.schedule_type_selected) {
266
-              schedules.push(schedule)
267
+              schedules.push(schedule);
267
             }
268
             }
268
           }
269
           }
269
           if (schedules.length > 0) {
270
           if (schedules.length > 0) {
270
-            _scheduleMap[key] = schedules
271
+            _scheduleMap[key] = schedules;
271
           }
272
           }
272
         }
273
         }
273
 
274
 
274
-        scheduleMap = _scheduleMap
275
+        scheduleMap = _scheduleMap;
275
       }
276
       }
276
       for (var key in scheduleMap) {
277
       for (var key in scheduleMap) {
277
-        let mapArr = scheduleMap[key]
278
+        let mapArr = scheduleMap[key];
278
         for (let i = 0; i < mapArr.length; i++) {
279
         for (let i = 0; i < mapArr.length; i++) {
279
-          mapArr[i]['new_advice'] = []
280
+          mapArr[i]["new_advice"] = [];
280
         }
281
         }
281
       }
282
       }
282
 
283
 
283
       for (var key in scheduleMap) {
284
       for (var key in scheduleMap) {
284
-        let mapArr = scheduleMap[key]
285
+        let mapArr = scheduleMap[key];
285
         for (let i = 0; i < mapArr.length; i++) {
286
         for (let i = 0; i < mapArr.length; i++) {
286
-          var maps = mapArr[i]
287
-          var resp_advices = maps.doctor_advice
287
+          var maps = mapArr[i];
288
+          var resp_advices = maps.doctor_advice;
288
           if (resp_advices.length > 0) {
289
           if (resp_advices.length > 0) {
289
-            var newGroupObject = function () {
290
+            var newGroupObject = function() {
290
               return Object.assign(
291
               return Object.assign(
291
                 {},
292
                 {},
292
                 {
293
                 {
293
                   group_no: 0,
294
                   group_no: 0,
294
                   advices: []
295
                   advices: []
295
                 }
296
                 }
296
-              )
297
-            }
298
-            var initGroupBlock = function (group, advice) {
299
-              group.group_no = advice.groupno
300
-            }
297
+              );
298
+            };
299
+            var initGroupBlock = function(group, advice) {
300
+              group.group_no = advice.groupno;
301
+            };
301
 
302
 
302
-            var advice_groups = []
303
-            var group = newGroupObject()
303
+            var advice_groups = [];
304
+            var group = newGroupObject();
304
             for (let index = 0; index < resp_advices.length; index++) {
305
             for (let index = 0; index < resp_advices.length; index++) {
305
-              const advice = resp_advices[index]
306
+              const advice = resp_advices[index];
306
               if (advice.groupno == 0) {
307
               if (advice.groupno == 0) {
307
                 // 老版本的医嘱
308
                 // 老版本的医嘱
308
                 if (advice.parent_id > 0) {
309
                 if (advice.parent_id > 0) {
309
                   if (advice_groups.length > 0) {
310
                   if (advice_groups.length > 0) {
310
-                    var parent_group = advice_groups[advice_groups.length - 1]
311
+                    var parent_group = advice_groups[advice_groups.length - 1];
311
                     if (parent_group.advices.length > 0) {
312
                     if (parent_group.advices.length > 0) {
312
                       if (parent_group.advices[0].id == advice.parent_id) {
313
                       if (parent_group.advices[0].id == advice.parent_id) {
313
-                        parent_group.advices.push(advice)
314
+                        parent_group.advices.push(advice);
314
                       }
315
                       }
315
                     }
316
                     }
316
                   }
317
                   }
317
-                  continue
318
+                  continue;
318
                 } else {
319
                 } else {
319
                   if (group.group_no > 0) {
320
                   if (group.group_no > 0) {
320
-                    advice_groups.push(group)
321
-                    group = newGroupObject()
321
+                    advice_groups.push(group);
322
+                    group = newGroupObject();
322
                   }
323
                   }
323
 
324
 
324
-                  initGroupBlock(group, advice)
325
-                  group.advices.push(advice)
326
-                  advice_groups.push(group)
327
-                  group = newGroupObject()
328
-                  continue
325
+                  initGroupBlock(group, advice);
326
+                  group.advices.push(advice);
327
+                  advice_groups.push(group);
328
+                  group = newGroupObject();
329
+                  continue;
329
                 }
330
                 }
330
               } else {
331
               } else {
331
                 if (group.group_no > 0 && group.group_no != advice.groupno) {
332
                 if (group.group_no > 0 && group.group_no != advice.groupno) {
332
-                  advice_groups.push(group)
333
-                  group = newGroupObject()
333
+                  advice_groups.push(group);
334
+                  group = newGroupObject();
334
                 }
335
                 }
335
                 if (group.group_no == 0) {
336
                 if (group.group_no == 0) {
336
-                  initGroupBlock(group, advice)
337
+                  initGroupBlock(group, advice);
337
                 }
338
                 }
338
                 if (group.group_no == advice.groupno) {
339
                 if (group.group_no == advice.groupno) {
339
-                  group.advices.push(advice)
340
+                  group.advices.push(advice);
340
                 }
341
                 }
341
               }
342
               }
342
             }
343
             }
343
             if (group.group_no > 0) {
344
             if (group.group_no > 0) {
344
               // 上述的算法会导致最后一组没有加到advice_groups,这里要手动加上
345
               // 上述的算法会导致最后一组没有加到advice_groups,这里要手动加上
345
-              advice_groups.push(group)
346
+              advice_groups.push(group);
346
             }
347
             }
347
-            advice_groups = advice_groups
348
+            advice_groups = advice_groups;
348
           } else {
349
           } else {
349
-            advice_groups = []
350
+            advice_groups = [];
350
           }
351
           }
351
-          maps.new_advice = advice_groups
352
+          maps.new_advice = advice_groups;
352
         }
353
         }
353
       }
354
       }
354
 
355
 
355
-      return scheduleMap
356
+      return scheduleMap;
356
     }
357
     }
357
   },
358
   },
358
-  created () {
359
-    this.requestSchedualDoctors()
359
+  created() {
360
+    this.requestSchedualDoctors();
360
   },
361
   },
361
   methods: {
362
   methods: {
362
     // getNumber: function (advice,schedule) {
363
     // getNumber: function (advice,schedule) {
370
     //   }
371
     //   }
371
     //
372
     //
372
     // },
373
     // },
373
-    clickfunction: function (val) {
374
+    clickfunction: function(val) {
374
       // console.log(val);
375
       // console.log(val);
375
       this.$router.push({
376
       this.$router.push({
376
-        path: '/details',
377
+        path: "/details",
377
         query: {
378
         query: {
378
           patient_id: val.patient.id,
379
           patient_id: val.patient.id,
379
           date: this.selected_date.getTime() / 1000,
380
           date: this.selected_date.getTime() / 1000,
380
           patient_name: val.patient.name
381
           patient_name: val.patient.name
381
         }
382
         }
382
-      })
383
+      });
383
     },
384
     },
384
-    handlePaitentType: function (index) {
385
-      this.patient_selected = index
386
-      this.show_patient_type_selector = false
387
-      this.requestSchedualDoctors()
385
+    handlePaitentType: function(index) {
386
+      this.patient_selected = index;
387
+      this.show_patient_type_selector = false;
388
+      this.requestSchedualDoctors();
388
     },
389
     },
389
-    openPicker () {
390
-      this.$refs.picker.open()
390
+    openPicker() {
391
+      this.$refs.picker.open();
391
     },
392
     },
392
-    getAdaviceType (type, parent_id) {
393
+    getAdaviceType(type, parent_id) {
393
       if (parent_id == 0) {
394
       if (parent_id == 0) {
394
         if (type == 1) {
395
         if (type == 1) {
395
-          return '长嘱'
396
+          return "长嘱";
396
         } else if (type == 2) {
397
         } else if (type == 2) {
397
-          return '临嘱'
398
+          return "临嘱";
398
         } else if (type == 3) {
399
         } else if (type == 3) {
399
-          return '临嘱'
400
+          return "临嘱";
400
         }
401
         }
401
       }
402
       }
402
     },
403
     },
403
-    getName (val) {
404
-      console.log(this.admin_user)
404
+    getName(val) {
405
+      console.log(this.admin_user);
405
 
406
 
406
       for (let i = 0; i < this.admin_user.length; i++) {
407
       for (let i = 0; i < this.admin_user.length; i++) {
407
         if (this.admin_user[i].id == val) {
408
         if (this.admin_user[i].id == val) {
408
-          return this.admin_user[i].name
409
+          return this.admin_user[i].name;
409
         }
410
         }
410
       }
411
       }
411
     },
412
     },
412
-    handletimeType: function (index) {
413
-      this.schedule_type_selected = index
414
-      this.show_sch_type_selector = false
413
+    handletimeType: function(index) {
414
+      this.schedule_type_selected = index;
415
+      this.show_sch_type_selector = false;
415
     },
416
     },
416
-    handleAdviceType: function (index) {
417
-      this.advice_type_selected = index
418
-      this.show_advice_type_selector = false
419
-      this.requestSchedualDoctors()
417
+    handleAdviceType: function(index) {
418
+      this.advice_type_selected = index;
419
+      this.show_advice_type_selector = false;
420
+      this.requestSchedualDoctors();
420
     },
421
     },
421
-    handleZoneChange: function (index) {
422
-      this.zone_selected = index
423
-      this.show_zone_selector = false
422
+    handleZoneChange: function(index) {
423
+      this.zone_selected = index;
424
+      this.show_zone_selector = false;
424
     },
425
     },
425
-    parseTime: function (time, layout) {
426
+    parseTime: function(time, layout) {
426
       // console.log(time);
427
       // console.log(time);
427
       if (time == 0) {
428
       if (time == 0) {
428
-        return ''
429
+        return "";
429
       }
430
       }
430
-      return parseTime(time, layout)
431
+      return parseTime(time, layout);
431
     },
432
     },
432
-    requestSchedualDoctors () {
433
+    requestSchedualDoctors() {
433
       getSchedualDoctors({
434
       getSchedualDoctors({
434
         date: this.selected_date_str,
435
         date: this.selected_date_str,
435
         patient_type: this.patient_selected,
436
         patient_type: this.patient_selected,
436
         advice_type: 2
437
         advice_type: 2
437
       }).then(rs => {
438
       }).then(rs => {
438
-        var resp = rs.data
439
+        var resp = rs.data;
439
         if (resp.state == 1) {
440
         if (resp.state == 1) {
440
-          this.admin_user = resp.data.adminUser
441
-          var schedules = resp.data.scheduals
442
-          console.log('schedules', schedules)
443
-          var zoneMap = {}
444
-          var scheduleMap = {}
441
+          this.admin_user = resp.data.adminUser;
442
+          var schedules = resp.data.scheduals;
443
+          console.log("schedules", schedules);
444
+          var zoneMap = {};
445
+          var scheduleMap = {};
445
           for (let index = 0; index < schedules.length; index++) {
446
           for (let index = 0; index < schedules.length; index++) {
446
-            const schedule = schedules[index]
447
+            const schedule = schedules[index];
447
             if (schedule.doctor_advice.length == 0) {
448
             if (schedule.doctor_advice.length == 0) {
448
-              continue
449
+              continue;
449
             }
450
             }
450
             if (scheduleMap[schedule.device_number.zone.name] == null) {
451
             if (scheduleMap[schedule.device_number.zone.name] == null) {
451
-              scheduleMap[schedule.device_number.zone.name] = []
452
+              scheduleMap[schedule.device_number.zone.name] = [];
452
             }
453
             }
453
-            scheduleMap[schedule.device_number.zone.name].push(schedule)
454
+            scheduleMap[schedule.device_number.zone.name].push(schedule);
454
             if (zoneMap[schedule.device_number.zone.name] == null) {
455
             if (zoneMap[schedule.device_number.zone.name] == null) {
455
               zoneMap[schedule.device_number.zone.name] =
456
               zoneMap[schedule.device_number.zone.name] =
456
-                schedule.device_number.zone
457
+                schedule.device_number.zone;
457
             }
458
             }
458
           }
459
           }
459
 
460
 
460
-          var zones = []
461
-          zones.push({ value: 0, text: '全部分区' })
461
+          var zones = [];
462
+          zones.push({ value: 0, text: "全部分区" });
462
           for (var zoneName in zoneMap) {
463
           for (var zoneName in zoneMap) {
463
-            zones.push({ value: zoneMap[zoneName].id, text: zoneName })
464
+            zones.push({ value: zoneMap[zoneName].id, text: zoneName });
464
           }
465
           }
465
 
466
 
466
-          zones = zones.sort(function (a, b) {
467
-            return a.value > b.value
468
-          })
469
-          this.zones = zones
467
+          zones = zones.sort(function(a, b) {
468
+            return a.value > b.value;
469
+          });
470
+          this.zones = zones;
470
 
471
 
471
-          this.scheduleMap = scheduleMap
472
+          this.scheduleMap = scheduleMap;
472
         } else {
473
         } else {
473
           this.$toast({
474
           this.$toast({
474
             message: resp.msg
475
             message: resp.msg
475
-          })
476
+          });
476
         }
477
         }
477
-      })
478
+      });
478
     },
479
     },
479
-    adviceDesc (advice) {}
480
+    adviceDesc(advice) {}
480
   }
481
   }
481
-}
482
+};
482
 </script>
483
 </script>
483
 
484
 
484
 <style style="stylesheet/scss" lang="scss" scoped>
485
 <style style="stylesheet/scss" lang="scss" scoped>

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

240
       font-size: 0.45rem;
240
       font-size: 0.45rem;
241
       margin: 0 0.2rem;
241
       margin: 0 0.2rem;
242
       height: 0.8rem;
242
       height: 0.8rem;
243
-      line-height: 0.75rem;
243
+      line-height: 0.8rem;
244
       padding: 0 0.4rem;
244
       padding: 0 0.4rem;
245
       // color: $title-color;
245
       // color: $title-color;
246
       color: #fff;
246
       color: #fff;

File diff suppressed because it is too large
+ 423 - 425
src/pages/main/dialog/OrdersDialog.vue


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

34
               <label>开嘱时间 {{record_date_str}}</label>
34
               <label>开嘱时间 {{record_date_str}}</label>
35
             </div>
35
             </div>
36
           </div>
36
           </div>
37
-          <!-- <table class="table">
37
+          <table class="table">
38
             <tr>
38
             <tr>
39
               <th width="26%">医嘱内容</th>
39
               <th width="26%">医嘱内容</th>
40
               <th width="20%">药品规格</th>
40
               <th width="20%">药品规格</th>
91
                 <td></td>
91
                 <td></td>
92
               </tr>
92
               </tr>
93
             </template>
93
             </template>
94
-          </table>-->
95
-          <el-table :data="advices" border style="width: 100%" :row-class-name="tableRowClassName" @row-click="clickAdviceAction">
94
+          </table>
95
+          <!-- <el-table :data="advices" border style="width: 100%" :row-class-name="tableRowClassName" @row-click="clickAdviceAction">
96
             <el-table-column fixed prop="date" label="医嘱内容" width="150">
96
             <el-table-column fixed prop="date" label="医嘱内容" width="150">
97
               <template slot-scope="scope">
97
               <template slot-scope="scope">
98
                    {{ scope.row.title }}
98
                    {{ scope.row.title }}
123
                   {{ scope.row.execution_frequency }}
123
                   {{ scope.row.execution_frequency }}
124
               </template>
124
               </template>
125
             </el-table-column>
125
             </el-table-column>
126
-          </el-table>
126
+          </el-table>-->
127
         </div>
127
         </div>
128
       </div>
128
       </div>
129
     </div>
129
     </div>
167
 </template>
167
 </template>
168
 
168
 
169
 <script>
169
 <script>
170
-import SingleOptionDialog from './single_option_dialog'
171
-import OrderFormDialog from './order_form'
172
-import AdviceTemplate from './select_advice_template_dialog'
173
-import { Toast } from 'vant'
174
-import { parseTime } from '@/utils'
175
-import { batchCreateAdvices } from '@/api/advice'
176
-import { setTimeout } from 'timers'
170
+import SingleOptionDialog from "./single_option_dialog";
171
+import OrderFormDialog from "./order_form";
172
+import AdviceTemplate from "./select_advice_template_dialog";
173
+import { Toast } from "vant";
174
+import { parseTime } from "@/utils";
175
+import { batchCreateAdvices } from "@/api/advice";
176
+import { setTimeout } from "timers";
177
 
177
 
178
 export default {
178
 export default {
179
-  name: 'AddNewOrdersDialogContent',
179
+  name: "AddNewOrdersDialogContent",
180
   components: {
180
   components: {
181
     SingleOptionDialog,
181
     SingleOptionDialog,
182
     OrderFormDialog,
182
     OrderFormDialog,
194
     },
194
     },
195
     advice_templates: {
195
     advice_templates: {
196
       type: Array,
196
       type: Array,
197
-      default: function () {
198
-        return []
197
+      default: function() {
198
+        return [];
199
       }
199
       }
200
     },
200
     },
201
     drug_spec_unit_options: {
201
     drug_spec_unit_options: {
202
       type: Array,
202
       type: Array,
203
-      default: function () {
204
-        return []
203
+      default: function() {
204
+        return [];
205
       }
205
       }
206
     },
206
     },
207
     delivery_way_options: {
207
     delivery_way_options: {
208
       type: Array,
208
       type: Array,
209
-      default: function () {
210
-        return []
209
+      default: function() {
210
+        return [];
211
       }
211
       }
212
     },
212
     },
213
     execution_frequency_options: {
213
     execution_frequency_options: {
214
       type: Array,
214
       type: Array,
215
-      default: function () {
216
-        return []
215
+      default: function() {
216
+        return [];
217
       }
217
       }
218
     },
218
     },
219
     single_dose_unit_options: {
219
     single_dose_unit_options: {
220
       type: Array,
220
       type: Array,
221
-      default: function () {
222
-        return []
221
+      default: function() {
222
+        return [];
223
       }
223
       }
224
     },
224
     },
225
     prescribing_number_unit_options: {
225
     prescribing_number_unit_options: {
226
       type: Array,
226
       type: Array,
227
-      default: function () {
228
-        return []
227
+      default: function() {
228
+        return [];
229
       }
229
       }
230
     }
230
     }
231
   },
231
   },
232
-  data () {
232
+  data() {
233
     return {
233
     return {
234
       show_dialog_key: 0,
234
       show_dialog_key: 0,
235
       loading: false,
235
       loading: false,
236
 
236
 
237
-      record_date_str: '',
237
+      record_date_str: "",
238
       start_time: new Date(),
238
       start_time: new Date(),
239
-      start_time_str: '',
239
+      start_time_str: "",
240
 
240
 
241
       selecting_advice_index: -1,
241
       selecting_advice_index: -1,
242
       selecting_subdrug_index: -1,
242
       selecting_subdrug_index: -1,
243
       advices: [],
243
       advices: [],
244
       tableData: []
244
       tableData: []
245
-    }
245
+    };
246
   },
246
   },
247
-  mounted () {
248
-    this.record_date_str = parseTime(new Date(), '{y}-{m}-{d}')
247
+  mounted() {
248
+    this.record_date_str = parseTime(new Date(), "{y}-{m}-{d}");
249
     this.start_time_str =
249
     this.start_time_str =
250
-      parseTime(this.start_time, '{y}-{m}-{d} {h}:{i}') + ':00'
250
+      parseTime(this.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
251
   },
251
   },
252
   methods: {
252
   methods: {
253
-    click (row, column, event) {
254
-      alert('aaa')
253
+    click(row, column, event) {
254
+      alert("aaa");
255
       // console.log(row)
255
       // console.log(row)
256
       // console.log(column)
256
       // console.log(column)
257
       // console.log(event)
257
       // console.log(event)
258
     },
258
     },
259
-    backAction: function () {
260
-      this.$emit('back-action')
259
+    backAction: function() {
260
+      this.$emit("back-action");
261
     },
261
     },
262
-    addOrderByTemplateAction: function () {
263
-      this.show_dialog_key = 1
264
-      this.selecting_advice_index = -1
262
+    addOrderByTemplateAction: function() {
263
+      this.show_dialog_key = 1;
264
+      this.selecting_advice_index = -1;
265
     },
265
     },
266
-    addNewOrderAction: function () {
267
-      this.show_dialog_key = 2
268
-      this.$refs.order_form.showWithNew()
269
-      this.selecting_advice_index = -1
266
+    addNewOrderAction: function() {
267
+      this.show_dialog_key = 2;
268
+      this.$refs.order_form.showWithNew();
269
+      this.selecting_advice_index = -1;
270
     },
270
     },
271
     // clickAdviceAction: function (advice_index) {
271
     // clickAdviceAction: function (advice_index) {
272
     //   this.selecting_advice_index = advice_index
272
     //   this.selecting_advice_index = advice_index
273
     //   this.selecting_subdrug_index = -1
273
     //   this.selecting_subdrug_index = -1
274
     // },
274
     // },
275
 
275
 
276
-    tableRowClassName (row, rowIndex) {
277
-      row.index = rowIndex
276
+    tableRowClassName(row, rowIndex) {
277
+      row.index = rowIndex;
278
     },
278
     },
279
-    clickAdviceAction (row, event, column) {
280
-      console.log(row.index)
281
-      this.selecting_advice_index = row.index
282
-      this.selecting_subdrug_index = -1
279
+    clickAdviceAction(row, event, column) {
280
+      console.log(row.index);
281
+      this.selecting_advice_index = row.index;
282
+      this.selecting_subdrug_index = -1;
283
     },
283
     },
284
-    clickSubdrugAction: function (advice_index, subdrug_index) {
285
-      this.selecting_advice_index = advice_index
286
-      this.selecting_subdrug_index = subdrug_index
284
+    clickSubdrugAction: function(advice_index, subdrug_index) {
285
+      this.selecting_advice_index = advice_index;
286
+      this.selecting_subdrug_index = subdrug_index;
287
     },
287
     },
288
-    modifyOrderAction: function () {
288
+    modifyOrderAction: function() {
289
       if (this.selecting_advice_index >= 0) {
289
       if (this.selecting_advice_index >= 0) {
290
         if (this.selecting_subdrug_index < 0) {
290
         if (this.selecting_subdrug_index < 0) {
291
-          this.show_dialog_key = 2
291
+          this.show_dialog_key = 2;
292
           this.$refs.order_form.showWithEdit(
292
           this.$refs.order_form.showWithEdit(
293
             this.advices[this.selecting_advice_index]
293
             this.advices[this.selecting_advice_index]
294
-          )
294
+          );
295
         } else {
295
         } else {
296
-          this.show_dialog_key = 2
296
+          this.show_dialog_key = 2;
297
           this.$refs.order_form.showWithEdit(
297
           this.$refs.order_form.showWithEdit(
298
             this.advices[this.selecting_advice_index].subdrugs[
298
             this.advices[this.selecting_advice_index].subdrugs[
299
               this.selecting_subdrug_index
299
               this.selecting_subdrug_index
300
             ]
300
             ]
301
-          )
301
+          );
302
         }
302
         }
303
       } else {
303
       } else {
304
-        Toast.fail('请先选择医嘱内容')
304
+        Toast.fail("请先选择医嘱内容");
305
       }
305
       }
306
     },
306
     },
307
-    deleteOrderAction: function () {
307
+    deleteOrderAction: function() {
308
       if (this.selecting_advice_index >= 0) {
308
       if (this.selecting_advice_index >= 0) {
309
         if (this.selecting_subdrug_index < 0) {
309
         if (this.selecting_subdrug_index < 0) {
310
-          this.advices.splice(this.selecting_advice_index, 1)
311
-          this.selecting_advice_index = -1
310
+          this.advices.splice(this.selecting_advice_index, 1);
311
+          this.selecting_advice_index = -1;
312
         } else {
312
         } else {
313
-          var advice = this.advices[this.selecting_advice_index]
314
-          advice.subdrugs.splice(this.selecting_subdrug_index, 1)
315
-          this.selecting_advice_index = -1
316
-          this.selecting_subdrug_index = -1
313
+          var advice = this.advices[this.selecting_advice_index];
314
+          advice.subdrugs.splice(this.selecting_subdrug_index, 1);
315
+          this.selecting_advice_index = -1;
316
+          this.selecting_subdrug_index = -1;
317
         }
317
         }
318
       } else {
318
       } else {
319
-        Toast.fail('请先选择医嘱内容')
319
+        Toast.fail("请先选择医嘱内容");
320
       }
320
       }
321
     },
321
     },
322
-    selectStartTimeAction: function () {
323
-      this.$refs.start_time_picker.open()
322
+    selectStartTimeAction: function() {
323
+      this.$refs.start_time_picker.open();
324
     },
324
     },
325
-    comfirmAction: function () {
325
+    comfirmAction: function() {
326
       if (this.advices.length == 0) {
326
       if (this.advices.length == 0) {
327
-        Toast.fail('请创建医嘱')
328
-        return
327
+        Toast.fail("请创建医嘱");
328
+        return;
329
       }
329
       }
330
 
330
 
331
-      var data = {}
332
-      data.advice_type = 2
333
-      data.advice_date = this.record_date_str
334
-      data.start_time = this.start_time_str
335
-      var adviceJSONs = []
331
+      var data = {};
332
+      data.advice_type = 2;
333
+      data.advice_date = this.record_date_str;
334
+      data.start_time = this.start_time_str;
335
+      var adviceJSONs = [];
336
       for (let index = 0; index < this.advices.length; index++) {
336
       for (let index = 0; index < this.advices.length; index++) {
337
-        const advice = this.advices[index]
337
+        const advice = this.advices[index];
338
         var json = {
338
         var json = {
339
           advice_name: advice.title,
339
           advice_name: advice.title,
340
           advice_desc: advice.advice_desc,
340
           advice_desc: advice.advice_desc,
348
           execution_frequency: advice.execution_frequency,
348
           execution_frequency: advice.execution_frequency,
349
           remark: advice.remark,
349
           remark: advice.remark,
350
           subdrugs: []
350
           subdrugs: []
351
-        }
351
+        };
352
         for (let s_i = 0; s_i < advice.subdrugs.length; s_i++) {
352
         for (let s_i = 0; s_i < advice.subdrugs.length; s_i++) {
353
-          const subdrug = advice.subdrugs[s_i]
353
+          const subdrug = advice.subdrugs[s_i];
354
           json.subdrugs.push({
354
           json.subdrugs.push({
355
             advice_name: subdrug.title,
355
             advice_name: subdrug.title,
356
             advice_desc: subdrug.advice_desc,
356
             advice_desc: subdrug.advice_desc,
360
             single_dose_unit: subdrug.single_dose_unit,
360
             single_dose_unit: subdrug.single_dose_unit,
361
             prescribing_number: String(subdrug.prescribing_number),
361
             prescribing_number: String(subdrug.prescribing_number),
362
             prescribing_number_unit: subdrug.prescribing_number_unit
362
             prescribing_number_unit: subdrug.prescribing_number_unit
363
-          })
363
+          });
364
         }
364
         }
365
-        adviceJSONs.push(json)
365
+        adviceJSONs.push(json);
366
       }
366
       }
367
 
367
 
368
-      data.adviceNames = adviceJSONs
368
+      data.adviceNames = adviceJSONs;
369
       // console.log(adviceJSONs)
369
       // console.log(adviceJSONs)
370
 
370
 
371
-      this.loading = true
371
+      this.loading = true;
372
       batchCreateAdvices(this.patient_id, this.group_no, data)
372
       batchCreateAdvices(this.patient_id, this.group_no, data)
373
         .then(rs => {
373
         .then(rs => {
374
-          this.loading = false
375
-          var resp = rs.data
374
+          this.loading = false;
375
+          var resp = rs.data;
376
 
376
 
377
           if (resp.state == 1) {
377
           if (resp.state == 1) {
378
             // 返回数组,清空数据,隐藏弹框
378
             // 返回数组,清空数据,隐藏弹框
379
-            this.$emit('did-create-advices', resp.data.advices)
380
-            console.log('resp.data.advices', resp.data.advices)
381
-            var t = this
382
-            setTimeout(function () {
383
-              t.advices.splice(0, t.advices.length)
384
-              t.show_dialog_key = 0
385
-              t.selecting_advice_index = -1
386
-            }, 500)
379
+            this.$emit("did-create-advices", resp.data.advices);
380
+            console.log("resp.data.advices", resp.data.advices);
381
+            var t = this;
382
+            setTimeout(function() {
383
+              t.advices.splice(0, t.advices.length);
384
+              t.show_dialog_key = 0;
385
+              t.selecting_advice_index = -1;
386
+            }, 500);
387
           } else {
387
           } else {
388
-            Toast.fail(resp.msg)
388
+            Toast.fail(resp.msg);
389
           }
389
           }
390
         })
390
         })
391
         .catch(err => {
391
         .catch(err => {
392
-          this.loading = false
393
-          Toast.fail(err)
394
-        })
392
+          this.loading = false;
393
+          Toast.fail(err);
394
+        });
395
       // batchCreateAdvices()
395
       // batchCreateAdvices()
396
     },
396
     },
397
 
397
 
398
-    didSelectStartTime: function (time) {
399
-      this.start_time_str = parseTime(time, '{y}-{m}-{d} {h}:{i}') + ':00'
398
+    didSelectStartTime: function(time) {
399
+      this.start_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
400
     },
400
     },
401
-    didSelectTemplateAdvice: function (resp_advices) {
402
-      this.show_dialog_key = 0
403
-      var advices = []
401
+    didSelectTemplateAdvice: function(resp_advices) {
402
+      this.show_dialog_key = 0;
403
+      var advices = [];
404
       for (let index = 0; index < resp_advices.length; index++) {
404
       for (let index = 0; index < resp_advices.length; index++) {
405
-        const adv = resp_advices[index]
405
+        const adv = resp_advices[index];
406
         if (adv.parent_id == 0) {
406
         if (adv.parent_id == 0) {
407
           advices.push({
407
           advices.push({
408
             id: adv.id,
408
             id: adv.id,
417
             prescribing_number: adv.prescribing_number,
417
             prescribing_number: adv.prescribing_number,
418
             prescribing_number_unit: adv.prescribing_number_unit,
418
             prescribing_number_unit: adv.prescribing_number_unit,
419
             subdrugs: []
419
             subdrugs: []
420
-          })
420
+          });
421
         }
421
         }
422
       }
422
       }
423
       for (let r_a_i = 0; r_a_i < resp_advices.length; r_a_i++) {
423
       for (let r_a_i = 0; r_a_i < resp_advices.length; r_a_i++) {
424
-        const resp_adv = resp_advices[r_a_i]
424
+        const resp_adv = resp_advices[r_a_i];
425
         if (resp_adv.parent_id > 0) {
425
         if (resp_adv.parent_id > 0) {
426
           for (let p_i = 0; p_i < advices.length; p_i++) {
426
           for (let p_i = 0; p_i < advices.length; p_i++) {
427
-            const p_adv = advices[p_i]
427
+            const p_adv = advices[p_i];
428
             if (p_adv.id == resp_adv.parent_id) {
428
             if (p_adv.id == resp_adv.parent_id) {
429
               var subdrug = {
429
               var subdrug = {
430
                 id: resp_adv.id,
430
                 id: resp_adv.id,
438
                 single_dose_unit: resp_adv.single_dose_unit,
438
                 single_dose_unit: resp_adv.single_dose_unit,
439
                 prescribing_number: resp_adv.prescribing_number,
439
                 prescribing_number: resp_adv.prescribing_number,
440
                 prescribing_number_unit: resp_adv.prescribing_number_unit
440
                 prescribing_number_unit: resp_adv.prescribing_number_unit
441
-              }
442
-              p_adv.subdrugs.push(subdrug)
443
-              break
441
+              };
442
+              p_adv.subdrugs.push(subdrug);
443
+              break;
444
             }
444
             }
445
           }
445
           }
446
         }
446
         }
447
       }
447
       }
448
-      this.advices.push(...advices)
448
+      this.advices.push(...advices);
449
     },
449
     },
450
     // didSelectOrderTemplate: function(index) {
450
     // didSelectOrderTemplate: function(index) {
451
     //   this.show_dialog_key = 0;
451
     //   this.show_dialog_key = 0;
506
     //   }
506
     //   }
507
     //   this.advices.push(...advices);
507
     //   this.advices.push(...advices);
508
     // },
508
     // },
509
-    didAddNewOrder: function (order) {
510
-      this.$refs.order_form.dismiss()
511
-      this.show_dialog_key = 0
512
-      order.id = 0
513
-      order.subdrugs = []
514
-      this.advices.push(order)
509
+    didAddNewOrder: function(order) {
510
+      this.$refs.order_form.dismiss();
511
+      this.show_dialog_key = 0;
512
+      order.id = 0;
513
+      order.subdrugs = [];
514
+      this.advices.push(order);
515
     },
515
     },
516
-    didModifyOrder: function (order) {
517
-      this.$refs.order_form.dismiss()
518
-      this.show_dialog_key = 0
516
+    didModifyOrder: function(order) {
517
+      this.$refs.order_form.dismiss();
518
+      this.show_dialog_key = 0;
519
       if (this.selecting_advice_index >= 0) {
519
       if (this.selecting_advice_index >= 0) {
520
-        var advice = this.advices[this.selecting_advice_index]
520
+        var advice = this.advices[this.selecting_advice_index];
521
         if (this.selecting_subdrug_index < 0) {
521
         if (this.selecting_subdrug_index < 0) {
522
-          advice.title = order.title
523
-          advice.advice_desc = order.advice_desc
522
+          advice.title = order.title;
523
+          advice.advice_desc = order.advice_desc;
524
           // advice.drug_spec = order.drug_spec;
524
           // advice.drug_spec = order.drug_spec;
525
-          advice.drug_spec_unit = order.drug_spec_unit
526
-          advice.delivery_way = order.delivery_way
527
-          advice.execution_frequency = order.execution_frequency
528
-          advice.single_dose = order.single_dose
529
-          advice.single_dose_unit = order.single_dose_unit
530
-          advice.prescribing_number = order.prescribing_number
531
-          advice.prescribing_number_unit = order.prescribing_number_unit
532
-          advice.remark = order.remark
525
+          advice.drug_spec_unit = order.drug_spec_unit;
526
+          advice.delivery_way = order.delivery_way;
527
+          advice.execution_frequency = order.execution_frequency;
528
+          advice.single_dose = order.single_dose;
529
+          advice.single_dose_unit = order.single_dose_unit;
530
+          advice.prescribing_number = order.prescribing_number;
531
+          advice.prescribing_number_unit = order.prescribing_number_unit;
532
+          advice.remark = order.remark;
533
         } else {
533
         } else {
534
-          var subdrug = advice.subdrugs[this.selecting_subdrug_index]
535
-          subdrug.title = order.title
536
-          subdrug.advice_desc = order.advice_desc
534
+          var subdrug = advice.subdrugs[this.selecting_subdrug_index];
535
+          subdrug.title = order.title;
536
+          subdrug.advice_desc = order.advice_desc;
537
           // subdrug.drug_spec = order.drug_spec;
537
           // subdrug.drug_spec = order.drug_spec;
538
-          subdrug.drug_spec_unit = order.drug_spec_unit
539
-          subdrug.single_dose = order.single_dose
540
-          subdrug.single_dose_unit = order.single_dose_unit
541
-          subdrug.prescribing_number = order.prescribing_number
542
-          subdrug.prescribing_number_unit = order.prescribing_number_unit
538
+          subdrug.drug_spec_unit = order.drug_spec_unit;
539
+          subdrug.single_dose = order.single_dose;
540
+          subdrug.single_dose_unit = order.single_dose_unit;
541
+          subdrug.prescribing_number = order.prescribing_number;
542
+          subdrug.prescribing_number_unit = order.prescribing_number_unit;
543
         }
543
         }
544
       }
544
       }
545
     }
545
     }
546
   }
546
   }
547
-}
547
+};
548
 </script>
548
 </script>
549
 
549
 
550
 <style style="stylesheet/scss" lang="scss" scoped>
550
 <style style="stylesheet/scss" lang="scss" scoped>

+ 11 - 12
src/pages/main/dialysis/AdviceTable.vue View File

65
         </li>
65
         </li>
66
       </ul>
66
       </ul>
67
     </div>
67
     </div>
68
-    <!-- <div style="width:100%;overflow:hildden;overflow-x:auto;" class="AdviceTable">
68
+    <div style="width:100%;overflow:hildden;overflow-x:auto;" class="AdviceTable">
69
       <table class="table" style>
69
       <table class="table" style>
70
         <tr>
70
         <tr>
71
           <th width="177px">期效</th>
71
           <th width="177px">期效</th>
92
         </tr>
92
         </tr>
93
         <template v-for="(group, group_index) in advice_groups">
93
         <template v-for="(group, group_index) in advice_groups">
94
           <tr v-for="(advice, advice_index) in group.advices" :key="advice.id">
94
           <tr v-for="(advice, advice_index) in group.advices" :key="advice.id">
95
-
96
             <td v-if="advice_index == 0" :rowspan="group.advices.length">
95
             <td v-if="advice_index == 0" :rowspan="group.advices.length">
97
               <span v-if="advice.advice_type == 1">长嘱</span>
96
               <span v-if="advice.advice_type == 1">长嘱</span>
98
               <span v-if="advice.advice_type == 2">临嘱</span>
97
               <span v-if="advice.advice_type == 2">临嘱</span>
188
             </td>
187
             </td>
189
           </tr>
188
           </tr>
190
         </template>
189
         </template>
191
-
192
       </table>
190
       </table>
193
       <div class="NoData" v-show="advice_groups.length == 0">
191
       <div class="NoData" v-show="advice_groups.length == 0">
194
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
192
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
195
       </div>
193
       </div>
196
-    </div>-->
197
-    <el-table :data="tableData" border style="width: 100%">
194
+    </div>
195
+    <!-- <el-table :data="tableData" border style="width: 100%">
198
       <el-table-column fixed prop="date" label="期效" width="100" align="center">
196
       <el-table-column fixed prop="date" label="期效" width="100" align="center">
199
         <template slot-scope="scope">
197
         <template slot-scope="scope">
200
           <span v-if="scope.row.advice_type == 1">长嘱</span>
198
           <span v-if="scope.row.advice_type == 1">长嘱</span>
299
           </span>
297
           </span>
300
         </template>
298
         </template>
301
       </el-table-column>
299
       </el-table-column>
302
-    </el-table>
300
+    </el-table>-->
303
     <mt-datetime-picker
301
     <mt-datetime-picker
304
       ref="start_date_picker"
302
       ref="start_date_picker"
305
       type="date"
303
       type="date"
1529
   // @media only screen and (min-width: 376px) and (max-width: 668px) {
1527
   // @media only screen and (min-width: 376px) and (max-width: 668px) {
1530
   //   padding-top: 50px !important;
1528
   //   padding-top: 50px !important;
1531
   // }
1529
   // }
1532
-  @media only screen and (min-width: 813px) and (max-width: 1024px) {
1533
-    padding-top: 54px !important;
1534
-  }
1535
-  @media only screen and (min-width: 737px) and (max-width: 768px) {
1536
-    padding-top: 76px !important;
1530
+  // @media only screen and (min-width: 813px) and (max-width: 1024px) {
1531
+  //   padding-top: 54px !important;
1532
+  // }
1533
+  @media only screen and (min-width: 768px) {
1534
+    padding-top: 82px !important;
1537
   }
1535
   }
1538
   // @media only screen and (min-width: 415px) and (max-width: 736px) {
1536
   // @media only screen and (min-width: 415px) and (max-width: 736px) {
1539
   //   padding-top: 48px !important;
1537
   //   padding-top: 48px !important;
1551
       font-size: 0.32rem;
1549
       font-size: 0.32rem;
1552
       color: $pgh-color;
1550
       color: $pgh-color;
1553
       @media only screen and (min-width: 768px) {
1551
       @media only screen and (min-width: 768px) {
1554
-        width: 76%;
1552
+        width: 98%;
1553
+        font-size: 0.45rem;
1555
       }
1554
       }
1556
       li {
1555
       li {
1557
         @include display-flex;
1556
         @include display-flex;

+ 1 - 1
src/pages/main/dialysis/CheckTab.vue View File

109
   //   top: 76px !important;
109
   //   top: 76px !important;
110
   // }
110
   // }
111
   @media only screen and (min-width: 768px) {
111
   @media only screen and (min-width: 768px) {
112
-    top: 116px !important;
112
+    top: 124px !important;
113
   }
113
   }
114
   // @media only screen and (min-width: 813px) and (max-width: 1024px) {
114
   // @media only screen and (min-width: 813px) and (max-width: 1024px) {
115
   //   top: 117px !important;
115
   //   top: 117px !important;

+ 4 - 4
src/pages/main/dialysis/DialysisTab.vue View File

63
   //   padding-top: 46px;
63
   //   padding-top: 46px;
64
   // }
64
   // }
65
   @media only screen and (min-width: 768px) {
65
   @media only screen and (min-width: 768px) {
66
-    padding-top: 75px;
67
-  }
68
-  @media only screen and (min-width: 813px) and (max-width: 1024px) {
69
-    padding-top: 74px;
66
+    padding-top: 82px;
70
   }
67
   }
68
+  // @media only screen and (min-width: 813px) and (max-width: 1024px) {
69
+  //   padding-top: 74px;
70
+  // }
71
   .nav {
71
   .nav {
72
     border-bottom: 1px #e5e5e5 solid;
72
     border-bottom: 1px #e5e5e5 solid;
73
     position: fixed;
73
     position: fixed;

+ 4 - 4
src/pages/main/dialysis/InspectionItemTable.vue View File

264
 .table {
264
 .table {
265
   width: 100%;
265
   width: 100%;
266
   overflow: hidden;
266
   overflow: hidden;
267
-  font-size: 0.3rem;
267
+  font-size: 0.45rem;
268
   text-align: center;
268
   text-align: center;
269
   border: $border-color;
269
   border: $border-color;
270
   tr {
270
   tr {
277
       color: #fff;
277
       color: #fff;
278
       padding: 0;
278
       padding: 0;
279
       margin: 0;
279
       margin: 0;
280
-      height: 0.88rem;
281
-      line-height: 0.88rem;
280
+      height: 1.2rem;
281
+      line-height: 1.2rem;
282
       font-weight: normal;
282
       font-weight: normal;
283
     }
283
     }
284
     td {
284
     td {
311
   //   margin-top: 80px !important;
311
   //   margin-top: 80px !important;
312
   // }
312
   // }
313
   @media only screen and (min-width: 768px) {
313
   @media only screen and (min-width: 768px) {
314
-    margin-top: 126px !important;
314
+    margin-top: 140px !important;
315
   }
315
   }
316
   // @media only screen and (min-width: 813px) and (max-width: 1023px) {
316
   // @media only screen and (min-width: 813px) and (max-width: 1023px) {
317
   //   margin-top: 114px !important;
317
   //   margin-top: 114px !important;

+ 278 - 272
src/pages/main/dialysis/LongTable.vue View File

1
 <template>
1
 <template>
2
   <div>
2
   <div>
3
     <div class="blueBorder"></div>
3
     <div class="blueBorder"></div>
4
-    <!-- <div class="tableTit">
5
-      <ul>
6
-        <li
7
-          v-for="(item,index) in ['序号','透析模式','透析时长','医生','更新日期','操作']"
8
-          :key="index"
9
-          :value="item.value"
10
-        >{{item}}</li>
11
-      </ul>
12
-    </div>
13
-    <div class="tableDate">
14
-      <van-list v-model="loading" :finished="finished" @load="onLoad">
15
-        <ul>
16
-          <li v-for="(item,index) in tableDate" :key="index" :value="item.value">
17
-            <span>{{item.no}}</span>
18
-            <span>{{item.mode_name}}</span>
19
-            <span>{{item.dialysis_duration_hour}}h {{item.dialysis_duration_minute}}min</span>
20
-            <span>{{tranDoctor(item.registrars_id)}}</span>
21
-            <span>{{item.edate}}</span>
22
-            <span @click="openEdit(index, item)">
23
-              <i class="iconfont">&#xe6f7;</i>修改
24
-            </span>
25
-          </li>
26
-        </ul>
27
-      </van-list>
28
-      <div class="NoData" v-show="tableDate.length == 0">
29
-        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
4
+    <div class="scrollBox">
5
+      <div class="scrollTable">
6
+        <div class="tableTit">
7
+          <ul>
8
+            <li
9
+              v-for="(item,index) in ['序号','透析模式','透析时长','医生','更新日期','操作']"
10
+              :key="index"
11
+              :value="item.value"
12
+            >{{item}}</li>
13
+          </ul>
14
+        </div>
15
+        <div class="tableDate">
16
+          <van-list v-model="loading" :finished="finished" @load="onLoad">
17
+            <ul>
18
+              <li v-for="(item,index) in tableDate" :key="index" :value="item.value">
19
+                <span>{{item.no}}</span>
20
+                <span>{{item.mode_name}}</span>
21
+                <span>{{item.dialysis_duration_hour}}h {{item.dialysis_duration_minute}}min</span>
22
+                <span>{{tranDoctor(item.registrars_id)}}</span>
23
+                <span>{{item.edate}}</span>
24
+                <span @click="openEdit(index, item)">
25
+                  <i class="iconfont">&#xe6f7;</i>修改
26
+                </span>
27
+              </li>
28
+            </ul>
29
+          </van-list>
30
+          <div class="NoData" v-show="tableDate.length == 0">
31
+            <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
32
+          </div>
33
+        </div>
30
       </div>
34
       </div>
31
-    </div>-->
32
-    <div class="newTable">
35
+    </div>
36
+    <!-- <div class="newTable">
33
       <el-table :data="tableDate" border style="width: 100%">
37
       <el-table :data="tableDate" border style="width: 100%">
34
         <el-table-column fixed prop="date" label="序号" width="100" align="center">
38
         <el-table-column fixed prop="date" label="序号" width="100" align="center">
35
             <template slot-scope="scope">
39
             <template slot-scope="scope">
56
             {{scope.row.edate}}
60
             {{scope.row.edate}}
57
           </template>
61
           </template>
58
         </el-table-column>
62
         </el-table-column>
59
-        <!-- <el-table-column label="操作" width="100">
60
-          <template slot-scope="scope">
61
-            <el-button @click="handleClick(scope.row)" type="text" size="small">修改</el-button>
62
-          </template>
63
-        </el-table-column> -->
64
       </el-table>
63
       </el-table>
65
-    </div>
64
+    </div>-->
66
     <van-popup
65
     <van-popup
67
       title="透析处方"
66
       title="透析处方"
68
       v-model="showObj.showPopup"
67
       v-model="showObj.showPopup"
339
 import {
338
 import {
340
   GetPatientDialysisSolutionList,
339
   GetPatientDialysisSolutionList,
341
   EditDialysisSolution
340
   EditDialysisSolution
342
-} from '@/api/patient'
343
-import { parseTime } from '@/utils'
344
-import { fetchAllAdminUsers } from '@/api/doctor'
345
-import { getDataConfig } from '@/utils/data'
346
-import CheckBoxSubMenu from '../dialog/subMenu/checkBoxSubMenu'
347
-import { Toast } from 'vant'
341
+} from "@/api/patient";
342
+import { parseTime } from "@/utils";
343
+import { fetchAllAdminUsers } from "@/api/doctor";
344
+import { getDataConfig } from "@/utils/data";
345
+import CheckBoxSubMenu from "../dialog/subMenu/checkBoxSubMenu";
346
+import { Toast } from "vant";
348
 
347
 
349
-let allno = 1
348
+let allno = 1;
350
 
349
 
351
 export default {
350
 export default {
352
-  name: 'LongTable',
353
-  data () {
351
+  name: "LongTable",
352
+  data() {
354
     return {
353
     return {
355
       visibility: false,
354
       visibility: false,
356
       loading: false,
355
       loading: false,
371
       },
370
       },
372
       dialysisSolution: {
371
       dialysisSolution: {
373
         id: 0,
372
         id: 0,
374
-        mode: '',
375
-        mode_id: '',
376
-        mode_name: '',
377
-        dialysis_duration: '',
378
-        dialysis_duration_hour: '',
379
-        dialysis_duration_minute: '',
380
-        hemodialysis_machine: '',
381
-        perfusion_apparatus: '',
382
-        perfusion_apparatus_name: '',
383
-        blood_flow_volume: '',
384
-        dewater: '',
373
+        mode: "",
374
+        mode_id: "",
375
+        mode_name: "",
376
+        dialysis_duration: "",
377
+        dialysis_duration_hour: "",
378
+        dialysis_duration_minute: "",
379
+        hemodialysis_machine: "",
380
+        perfusion_apparatus: "",
381
+        perfusion_apparatus_name: "",
382
+        blood_flow_volume: "",
383
+        dewater: "",
385
         displace_liqui: 0,
384
         displace_liqui: 0,
386
-        replacement_way: '',
387
-        replacement_way_name: '',
388
-        anticoagulant: '',
389
-        anticoagulant_name: '',
390
-        anticoagulant_shouji: '',
391
-        anticoagulant_weichi: '',
392
-        anticoagulant_zongliang: '',
393
-        anticoagulant_gaimingcheng: '',
394
-        anticoagulant_gaijiliang: '',
395
-        target_ultrafiltration: '',
396
-        dialysate_formulation: '',
397
-        replacement_total: '',
398
-        kalium: '',
399
-        sodium: '',
400
-        calcium: '',
401
-        bicarbonate: '',
402
-        glucose: '',
403
-        dry_weight: '',
404
-        dialysate_flow: '',
405
-        dialysate_temperature: '',
406
-        conductivity: '',
407
-        doctor: '',
408
-        remark: ''
385
+        replacement_way: "",
386
+        replacement_way_name: "",
387
+        anticoagulant: "",
388
+        anticoagulant_name: "",
389
+        anticoagulant_shouji: "",
390
+        anticoagulant_weichi: "",
391
+        anticoagulant_zongliang: "",
392
+        anticoagulant_gaimingcheng: "",
393
+        anticoagulant_gaijiliang: "",
394
+        target_ultrafiltration: "",
395
+        dialysate_formulation: "",
396
+        replacement_total: "",
397
+        kalium: "",
398
+        sodium: "",
399
+        calcium: "",
400
+        bicarbonate: "",
401
+        glucose: "",
402
+        dry_weight: "",
403
+        dialysate_flow: "",
404
+        dialysate_temperature: "",
405
+        conductivity: "",
406
+        doctor: "",
407
+        remark: ""
409
       },
408
       },
410
       anticoagulant: {
409
       anticoagulant: {
411
         id: 0,
410
         id: 0,
412
-        name: '',
411
+        name: "",
413
         type: 1,
412
         type: 1,
414
         shouji: 1,
413
         shouji: 1,
415
         weichi: 1,
414
         weichi: 1,
416
         zongliang: 1,
415
         zongliang: 1,
417
         gaimingcheng: -1,
416
         gaimingcheng: -1,
418
         gaijiliang: -1,
417
         gaijiliang: -1,
419
-        shouji_unit: 'mg',
420
-        weichi_unit: 'mg/h',
421
-        zongliang_unit: 'mg',
422
-        gaimingcheng_unit: '',
423
-        gaijiliang_unit: ''
418
+        shouji_unit: "mg",
419
+        weichi_unit: "mg/h",
420
+        zongliang_unit: "mg",
421
+        gaimingcheng_unit: "",
422
+        gaijiliang_unit: ""
424
       },
423
       },
425
       propForm: {
424
       propForm: {
426
-        title: '',
425
+        title: "",
427
         list: [],
426
         list: [],
428
         optionList: [],
427
         optionList: [],
429
         isMultiple: 2,
428
         isMultiple: 2,
434
       modeOption: [],
433
       modeOption: [],
435
       dialysateFormulationOptions: [],
434
       dialysateFormulationOptions: [],
436
       anticoagulantsConfit: {},
435
       anticoagulantsConfit: {},
437
-      timeValue: '',
438
-      time: '03:00',
439
-      record_date: ''
440
-    }
436
+      timeValue: "",
437
+      time: "03:00",
438
+      record_date: ""
439
+    };
441
   },
440
   },
442
   methods: {
441
   methods: {
443
-    commitInfo: function () {
444
-      Toast.loading({ forbidClick: true, duration: 0 })
445
-      this.dialysisSolution.mode = this.dialysisSolution.mode_id
442
+    commitInfo: function() {
443
+      Toast.loading({ forbidClick: true, duration: 0 });
444
+      this.dialysisSolution.mode = this.dialysisSolution.mode_id;
446
       EditDialysisSolution(
445
       EditDialysisSolution(
447
         this.dialysisSolution.id,
446
         this.dialysisSolution.id,
448
         this.dialysisSolution
447
         this.dialysisSolution
449
       ).then(response => {
448
       ).then(response => {
450
         if (response.data.state == 0) {
449
         if (response.data.state == 0) {
451
-          Toast.fail(response.data.msg)
452
-          return false
450
+          Toast.fail(response.data.msg);
451
+          return false;
453
         } else {
452
         } else {
454
-          Toast.success('修改成功')
453
+          Toast.success("修改成功");
455
           for (const key in response.data.data.solution) {
454
           for (const key in response.data.data.solution) {
456
             this.tableDate[this.currentIndex][key] =
455
             this.tableDate[this.currentIndex][key] =
457
-              response.data.data.solution[key]
456
+              response.data.data.solution[key];
458
           }
457
           }
459
-          this.popupDidHide()
458
+          this.popupDidHide();
460
         }
459
         }
461
-      })
460
+      });
462
     },
461
     },
463
-    openEdit (index, item) {
464
-      this.currentIndex = index
462
+    openEdit(index, item) {
463
+      this.currentIndex = index;
465
       for (var key in item) {
464
       for (var key in item) {
466
-        this.dialysisSolution[key] = item[key]
465
+        this.dialysisSolution[key] = item[key];
467
       }
466
       }
468
 
467
 
469
       this.timeValue =
468
       this.timeValue =
470
         this.dialysisSolution.dialysis_duration_hour +
469
         this.dialysisSolution.dialysis_duration_hour +
471
-        '小时' +
470
+        "小时" +
472
         this.dialysisSolution.dialysis_duration_minute +
471
         this.dialysisSolution.dialysis_duration_minute +
473
-        '分钟'
472
+        "分钟";
474
 
473
 
475
       this.time =
474
       this.time =
476
         (this.dialysisSolution.dialysis_duration_hour >= 10
475
         (this.dialysisSolution.dialysis_duration_hour >= 10
477
           ? this.dialysisSolution.dialysis_duration_hour
476
           ? this.dialysisSolution.dialysis_duration_hour
478
-          : '0' + this.dialysisSolution.dialysis_duration_hour) +
479
-        ':' +
477
+          : "0" + this.dialysisSolution.dialysis_duration_hour) +
478
+        ":" +
480
         (this.dialysisSolution.dialysis_duration_minute >= 10
479
         (this.dialysisSolution.dialysis_duration_minute >= 10
481
           ? this.dialysisSolution.dialysis_duration_minute
480
           ? this.dialysisSolution.dialysis_duration_minute
482
-          : '0' + this.dialysisSolution.dialysis_duration_minute)
481
+          : "0" + this.dialysisSolution.dialysis_duration_minute);
483
 
482
 
484
-      this.showObj.showPopup = true
483
+      this.showObj.showPopup = true;
485
 
484
 
486
       // document.getElementById('dialogTop').scrollTop = 200;
485
       // document.getElementById('dialogTop').scrollTop = 200;
487
-      var dialogTop = document.querySelector('#dialogTop')
486
+      var dialogTop = document.querySelector("#dialogTop");
488
       if (dialogTop != null) {
487
       if (dialogTop != null) {
489
         this.$nextTick(() => {
488
         this.$nextTick(() => {
490
-          dialogTop.scrollTop = 0
491
-        })
489
+          dialogTop.scrollTop = 0;
490
+        });
492
       }
491
       }
493
     },
492
     },
494
-    popupDidHide () {
495
-      this.showObj.showPopup = false
496
-      this.visibility = false
497
-      this.showObj.showForm = true
493
+    popupDidHide() {
494
+      this.showObj.showPopup = false;
495
+      this.visibility = false;
496
+      this.showObj.showForm = true;
498
     },
497
     },
499
-    openPicker: function () {
500
-      this.$refs.picker.open()
498
+    openPicker: function() {
499
+      this.$refs.picker.open();
501
     },
500
     },
502
-    showSubMenu: function (val) {
501
+    showSubMenu: function(val) {
503
       switch (val) {
502
       switch (val) {
504
-        case 'mode':
505
-          this.propForm.type = 1
506
-          this.showObj.showForm = false
507
-          this.propForm.title = '透析模式'
508
-          this.visibility = true
509
-          this.propForm.list = []
510
-          this.propForm.optionList = this.modeOption
511
-          this.propForm.isMultiple = 1
512
-          this.propForm.selectId = this.dialysisSolution.mode_id
513
-          this.propForm.click_ref = 'mode'
514
-
515
-          break
516
-
517
-        case 'anticoagulant':
518
-          this.propForm.type = 5
519
-          this.showObj.showForm = false
520
-          this.propForm.title = '抗疑剂'
521
-          this.visibility = true
522
-          this.propForm.list = []
523
-          this.propForm.optionList = this.anticoagulantsConfit
524
-          this.propForm.isMultiple = 1
525
-          this.propForm.selectId = this.dialysisSolution.anticoagulant
526
-          this.propForm.click_ref = 'anticoagulant'
527
-          break
528
-        case 'dialysate_formulation':
529
-          this.propForm.type = 6
530
-          this.showObj.showForm = false
531
-          this.propForm.title = '透析液配方'
532
-          this.visibility = true
533
-          this.propForm.list = []
534
-          this.propForm.optionList = this.dialysateFormulationOptions
535
-          this.propForm.isMultiple = 1
536
-          this.propForm.selectId = this.dialysisSolution.dialysate_formulation
537
-          this.propForm.click_ref = 'dialysate_formulation'
538
-          break
503
+        case "mode":
504
+          this.propForm.type = 1;
505
+          this.showObj.showForm = false;
506
+          this.propForm.title = "透析模式";
507
+          this.visibility = true;
508
+          this.propForm.list = [];
509
+          this.propForm.optionList = this.modeOption;
510
+          this.propForm.isMultiple = 1;
511
+          this.propForm.selectId = this.dialysisSolution.mode_id;
512
+          this.propForm.click_ref = "mode";
513
+
514
+          break;
515
+
516
+        case "anticoagulant":
517
+          this.propForm.type = 5;
518
+          this.showObj.showForm = false;
519
+          this.propForm.title = "抗疑剂";
520
+          this.visibility = true;
521
+          this.propForm.list = [];
522
+          this.propForm.optionList = this.anticoagulantsConfit;
523
+          this.propForm.isMultiple = 1;
524
+          this.propForm.selectId = this.dialysisSolution.anticoagulant;
525
+          this.propForm.click_ref = "anticoagulant";
526
+          break;
527
+        case "dialysate_formulation":
528
+          this.propForm.type = 6;
529
+          this.showObj.showForm = false;
530
+          this.propForm.title = "透析液配方";
531
+          this.visibility = true;
532
+          this.propForm.list = [];
533
+          this.propForm.optionList = this.dialysateFormulationOptions;
534
+          this.propForm.isMultiple = 1;
535
+          this.propForm.selectId = this.dialysisSolution.dialysate_formulation;
536
+          this.propForm.click_ref = "dialysate_formulation";
537
+          break;
539
       }
538
       }
540
     },
539
     },
541
-    menuCancle: function () {
542
-      this.visibility = false
543
-      this.showObj.showForm = true
540
+    menuCancle: function() {
541
+      this.visibility = false;
542
+      this.showObj.showForm = true;
544
       this.$nextTick(() => {
543
       this.$nextTick(() => {
545
         if (
544
         if (
546
           this.$refs[this.propForm.click_ref] != undefined &&
545
           this.$refs[this.propForm.click_ref] != undefined &&
547
           this.$refs[this.propForm.click_ref] != null
546
           this.$refs[this.propForm.click_ref] != null
548
         ) {
547
         ) {
549
-          this.$refs[this.propForm.click_ref].scrollIntoView()
548
+          this.$refs[this.propForm.click_ref].scrollIntoView();
550
         }
549
         }
551
-      })
550
+      });
552
     },
551
     },
553
-    menuComfirm: function (val) {
554
-      this.visibility = false
555
-      this.showObj.showForm = true
552
+    menuComfirm: function(val) {
553
+      this.visibility = false;
554
+      this.showObj.showForm = true;
556
       this.$nextTick(() => {
555
       this.$nextTick(() => {
557
         if (
556
         if (
558
           this.$refs[this.propForm.click_ref] != undefined &&
557
           this.$refs[this.propForm.click_ref] != undefined &&
559
           this.$refs[this.propForm.click_ref] != null
558
           this.$refs[this.propForm.click_ref] != null
560
         ) {
559
         ) {
561
-          this.$refs[this.propForm.click_ref].scrollIntoView()
560
+          this.$refs[this.propForm.click_ref].scrollIntoView();
562
         }
561
         }
563
-      })
562
+      });
564
       switch (val.type) {
563
       switch (val.type) {
565
         case 1:
564
         case 1:
566
-          this.dialysisSolution.mode_id = val.selectId
565
+          this.dialysisSolution.mode_id = val.selectId;
567
           this.dialysisSolution.mode_name = this.GetModeByModeId(
566
           this.dialysisSolution.mode_name = this.GetModeByModeId(
568
             this.dialysisSolution.mode_id
567
             this.dialysisSolution.mode_id
569
-          )
570
-          break
568
+          );
569
+          break;
571
 
570
 
572
         case 5:
571
         case 5:
573
-          this.dialysisSolution.anticoagulant = val.selectId
572
+          this.dialysisSolution.anticoagulant = val.selectId;
574
 
573
 
575
           if (
574
           if (
576
-            typeof this.anticoagulantsConfit[val.selectId] === 'undefined' ||
575
+            typeof this.anticoagulantsConfit[val.selectId] === "undefined" ||
577
             this.anticoagulantsConfit[val.selectId] == null
576
             this.anticoagulantsConfit[val.selectId] == null
578
           ) {
577
           ) {
579
-            return
578
+            return;
580
           }
579
           }
581
-          this.anticoagulant = this.anticoagulantsConfit[val.selectId]
580
+          this.anticoagulant = this.anticoagulantsConfit[val.selectId];
582
 
581
 
583
-          break
582
+          break;
584
 
583
 
585
         case 6:
584
         case 6:
586
-          this.dialysisSolution.dialysate_formulation = val.selectId
585
+          this.dialysisSolution.dialysate_formulation = val.selectId;
587
 
586
 
588
-          break
587
+          break;
589
       }
588
       }
590
     },
589
     },
591
-    handleTimeConfirm: function (val) {
592
-      val = val.replace('小时')
593
-      val = val.replace('分钟')
594
-      let timeArray = val.split(':')
590
+    handleTimeConfirm: function(val) {
591
+      val = val.replace("小时");
592
+      val = val.replace("分钟");
593
+      let timeArray = val.split(":");
595
       if (parseInt(timeArray[0].substring(0, 1)) == 0) {
594
       if (parseInt(timeArray[0].substring(0, 1)) == 0) {
596
         this.dialysisSolution.dialysis_duration_hour = timeArray[0].charAt(
595
         this.dialysisSolution.dialysis_duration_hour = timeArray[0].charAt(
597
           timeArray[0].length - 1
596
           timeArray[0].length - 1
598
-        )
597
+        );
599
       } else {
598
       } else {
600
-        this.dialysisSolution.dialysis_duration_hour = timeArray[0]
599
+        this.dialysisSolution.dialysis_duration_hour = timeArray[0];
601
       }
600
       }
602
 
601
 
603
       if (parseInt(timeArray[1].substring(0, 1)) == 0) {
602
       if (parseInt(timeArray[1].substring(0, 1)) == 0) {
604
         this.dialysisSolution.dialysis_duration_minute = timeArray[1].charAt(
603
         this.dialysisSolution.dialysis_duration_minute = timeArray[1].charAt(
605
           timeArray[1].length - 1
604
           timeArray[1].length - 1
606
-        )
605
+        );
607
       } else {
606
       } else {
608
-        this.dialysisSolution.dialysis_duration_minute = timeArray[1]
607
+        this.dialysisSolution.dialysis_duration_minute = timeArray[1];
609
       }
608
       }
610
       this.timeValue =
609
       this.timeValue =
611
         this.dialysisSolution.dialysis_duration_hour +
610
         this.dialysisSolution.dialysis_duration_hour +
612
-        '小时' +
611
+        "小时" +
613
         this.dialysisSolution.dialysis_duration_minute +
612
         this.dialysisSolution.dialysis_duration_minute +
614
-        '分钟'
613
+        "分钟";
615
       this.dialysisSolution.dialysis_duration =
614
       this.dialysisSolution.dialysis_duration =
616
         this.dialysisSolution.dialysis_duration_hour +
615
         this.dialysisSolution.dialysis_duration_hour +
617
-        '.' +
618
-        this.dialysisSolution.dialysis_duration_minute
616
+        "." +
617
+        this.dialysisSolution.dialysis_duration_minute;
619
     },
618
     },
620
-    GetModeByModeId: function (val) {
621
-      let treatment_mode_name = ''
622
-      let treatment_mode = this.modeOption
619
+    GetModeByModeId: function(val) {
620
+      let treatment_mode_name = "";
621
+      let treatment_mode = this.modeOption;
623
       for (let keys in treatment_mode) {
622
       for (let keys in treatment_mode) {
624
         if (treatment_mode[keys].id == val) {
623
         if (treatment_mode[keys].id == val) {
625
-          treatment_mode_name = treatment_mode[keys].name
624
+          treatment_mode_name = treatment_mode[keys].name;
626
         }
625
         }
627
       }
626
       }
628
 
627
 
629
-      return treatment_mode_name
628
+      return treatment_mode_name;
630
     },
629
     },
631
-    inputFocus: function (event) {
632
-      var input = event.target
633
-      setTimeout(function () {
634
-        input.scrollIntoView()
635
-      }, 0)
630
+    inputFocus: function(event) {
631
+      var input = event.target;
632
+      setTimeout(function() {
633
+        input.scrollIntoView();
634
+      }, 0);
636
 
635
 
637
       if (input.setSelectionRange) {
636
       if (input.setSelectionRange) {
638
-        setTimeout(function () {
639
-          input.setSelectionRange(0, input.value.length)
640
-        }, 0)
637
+        setTimeout(function() {
638
+          input.setSelectionRange(0, input.value.length);
639
+        }, 0);
641
       } else if (input.createTextRange) {
640
       } else if (input.createTextRange) {
642
-        var rng = input.createTextRange()
643
-        rng.move('character', input.value.length)
644
-        rng.select()
641
+        var rng = input.createTextRange();
642
+        rng.move("character", input.value.length);
643
+        rng.select();
645
       }
644
       }
646
     },
645
     },
647
-    lastInputBlur: function (event) {
648
-      var input = event.target
649
-      setTimeout(function () {
650
-        input.style.marginBottom = ''
651
-      }, 0)
646
+    lastInputBlur: function(event) {
647
+      var input = event.target;
648
+      setTimeout(function() {
649
+        input.style.marginBottom = "";
650
+      }, 0);
652
     },
651
     },
653
-    lastInputFocus: function (event) {
654
-      var input = event.target
655
-      setTimeout(function () {
656
-        input.style.marginBottom = '2rem'
657
-        input.parentNode.scrollIntoView()
658
-      }, 0)
652
+    lastInputFocus: function(event) {
653
+      var input = event.target;
654
+      setTimeout(function() {
655
+        input.style.marginBottom = "2rem";
656
+        input.parentNode.scrollIntoView();
657
+      }, 0);
659
     },
658
     },
660
-    GetDialysateFormulationById: function (val) {
661
-      let name = ''
662
-      let dfl = this.dialysateFormulationOptions.length
659
+    GetDialysateFormulationById: function(val) {
660
+      let name = "";
661
+      let dfl = this.dialysateFormulationOptions.length;
663
       for (let index = 0; index < dfl; index++) {
662
       for (let index = 0; index < dfl; index++) {
664
         if (this.dialysateFormulationOptions[index].id == val) {
663
         if (this.dialysateFormulationOptions[index].id == val) {
665
-          name = this.dialysateFormulationOptions[index].name
666
-          break
664
+          name = this.dialysateFormulationOptions[index].name;
665
+          break;
667
         }
666
         }
668
       }
667
       }
669
-      return name
668
+      return name;
670
     },
669
     },
671
-    GetAnticoagulantById: function (val) {
672
-      let anticoagulan_name = ''
673
-      let anticoagulant = this.anticoagulantsConfit
670
+    GetAnticoagulantById: function(val) {
671
+      let anticoagulan_name = "";
672
+      let anticoagulant = this.anticoagulantsConfit;
674
       for (let keys in anticoagulant) {
673
       for (let keys in anticoagulant) {
675
         if (anticoagulant[keys].id == val) {
674
         if (anticoagulant[keys].id == val) {
676
-          anticoagulan_name = anticoagulant[keys].name
675
+          anticoagulan_name = anticoagulant[keys].name;
677
         }
676
         }
678
       }
677
       }
679
-      return anticoagulan_name
678
+      return anticoagulan_name;
680
     },
679
     },
681
-    tranDoctor (id) {
680
+    tranDoctor(id) {
682
       if (id in this.adminUserOptions) {
681
       if (id in this.adminUserOptions) {
683
-        return this.adminUserOptions[id].name
682
+        return this.adminUserOptions[id].name;
684
       } else {
683
       } else {
685
-        return '未知'
684
+        return "未知";
686
       }
685
       }
687
     },
686
     },
688
-    fetchAllAdminUsers () {
687
+    fetchAllAdminUsers() {
689
       fetchAllAdminUsers().then(response => {
688
       fetchAllAdminUsers().then(response => {
690
         if (response.data.state == 1) {
689
         if (response.data.state == 1) {
691
-          var ul = response.data.data.users.length
690
+          var ul = response.data.data.users.length;
692
           for (let index = 0; index < ul; index++) {
691
           for (let index = 0; index < ul; index++) {
693
             this.adminUserOptions[response.data.data.users[index].id] =
692
             this.adminUserOptions[response.data.data.users[index].id] =
694
-              response.data.data.users[index]
693
+              response.data.data.users[index];
695
           }
694
           }
696
         }
695
         }
697
-      })
696
+      });
698
     },
697
     },
699
-    onLoad () {
698
+    onLoad() {
700
       // 异步更新数据
699
       // 异步更新数据
701
-      this.queryParams.page++
700
+      this.queryParams.page++;
702
       GetPatientDialysisSolutionList(this.queryParams).then(response => {
701
       GetPatientDialysisSolutionList(this.queryParams).then(response => {
703
         if (response.data.state == 1) {
702
         if (response.data.state == 1) {
704
-          var sl = response.data.data.solutions.length
703
+          var sl = response.data.data.solutions.length;
705
           if (sl == 0) {
704
           if (sl == 0) {
706
-            this.finished = true
705
+            this.finished = true;
707
           } else {
706
           } else {
708
             for (let index = 0; index < sl; index++) {
707
             for (let index = 0; index < sl; index++) {
709
-              var solution = response.data.data.solutions[index]
710
-              solution.no = allno
708
+              var solution = response.data.data.solutions[index];
709
+              solution.no = allno;
711
               solution.edate = parseTime(
710
               solution.edate = parseTime(
712
                 solution.updated_time,
711
                 solution.updated_time,
713
-                '{y}-{m}-{d} {h}:{i}'
714
-              )
715
-              allno++
716
-              this.tableDate.push(solution)
712
+                "{y}-{m}-{d} {h}:{i}"
713
+              );
714
+              allno++;
715
+              this.tableDate.push(solution);
717
             }
716
             }
718
           }
717
           }
719
-          this.loading = false
718
+          this.loading = false;
720
         }
719
         }
721
-      })
720
+      });
722
     }
721
     }
723
   },
722
   },
724
-  created () {
725
-    allno = 1
726
-    this.fetchAllAdminUsers()
727
-    this.queryParams.id = this.$route.query.patient_id
728
-    this.onLoad()
723
+  created() {
724
+    allno = 1;
725
+    this.fetchAllAdminUsers();
726
+    this.queryParams.id = this.$route.query.patient_id;
727
+    this.onLoad();
729
 
728
 
730
-    this.modeOption = this.$store.getters.treatment_mode
729
+    this.modeOption = this.$store.getters.treatment_mode;
731
     this.dialysateFormulationOptions = getDataConfig(
730
     this.dialysateFormulationOptions = getDataConfig(
732
-      'hemodialysis',
733
-      'dialysate_formulation'
734
-    )
735
-    this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit
736
-
737
-    var date = this.$route.query && this.$route.query.date
738
-    date *= 1000
739
-    var newDate = new Date(date)
740
-
741
-    var y = newDate.getFullYear()
742
-    var m = newDate.getMonth() + 1
743
-    var d = newDate.getDate()
731
+      "hemodialysis",
732
+      "dialysate_formulation"
733
+    );
734
+    this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
735
+
736
+    var date = this.$route.query && this.$route.query.date;
737
+    date *= 1000;
738
+    var newDate = new Date(date);
739
+
740
+    var y = newDate.getFullYear();
741
+    var m = newDate.getMonth() + 1;
742
+    var d = newDate.getDate();
744
     if (isNaN(y) || isNaN(m) || isNaN(d)) {
743
     if (isNaN(y) || isNaN(m) || isNaN(d)) {
745
-      newDate = new Date()
746
-      y = newDate.getFullYear()
747
-      m = newDate.getMonth() + 1
748
-      d = newDate.getDate()
744
+      newDate = new Date();
745
+      y = newDate.getFullYear();
746
+      m = newDate.getMonth() + 1;
747
+      d = newDate.getDate();
749
     }
748
     }
750
     this.record_date =
749
     this.record_date =
751
-      y + '-' + (m < 10 ? '0' + m : m) + '-' + (d < 10 ? '0' + d : d)
750
+      y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
752
   },
751
   },
753
   components: {
752
   components: {
754
     CheckBoxSubMenu
753
     CheckBoxSubMenu
755
   }
754
   }
756
-}
755
+};
757
 </script>
756
 </script>
758
 
757
 
759
 <style style="stylesheet/scss" lang="scss"  scoped>
758
 <style style="stylesheet/scss" lang="scss"  scoped>
779
     li {
778
     li {
780
       @include flex;
779
       @include flex;
781
       border-right: 2px #fff solid;
780
       border-right: 2px #fff solid;
782
-      font-size: 0.3rem;
783
-      height: 0.88rem;
784
-      line-height: 0.88rem;
781
+      font-size: 0.45rem;
782
+      height: 1.2rem;
783
+      line-height: 1.2rem;
785
     }
784
     }
786
     &:last-child {
785
     &:last-child {
787
       border-right: none;
786
       border-right: none;
794
   @include box-sizing;
793
   @include box-sizing;
795
   ul {
794
   ul {
796
     li {
795
     li {
797
-      font-size: 0.3rem;
798
-      height: 0.88rem;
799
-      line-height: 0.88rem;
796
+      font-size: 0.45rem;
797
+      height: 1.2rem;
798
+      line-height: 1.2rem;
800
       @include display-flex;
799
       @include display-flex;
801
       @include align-items-center;
800
       @include align-items-center;
802
       @include text-align;
801
       @include text-align;
807
         border-bottom: 2px #fff solid;
806
         border-bottom: 2px #fff solid;
808
         background: #ecf5ff;
807
         background: #ecf5ff;
809
         display: inline-block;
808
         display: inline-block;
810
-        height: 0.88rem;
811
-        line-height: 0.88rem;
809
+        height: 1.2rem;
810
+        line-height: 1.2rem;
812
         &:last-child {
811
         &:last-child {
813
           color: $main-color;
812
           color: $main-color;
814
         }
813
         }
824
     }
823
     }
825
   }
824
   }
826
 }
825
 }
826
+.scrollBox {
827
+  width: 100%;
828
+  overflow: auto;
829
+  .scrollTable {
830
+    width: 768px;
831
+  }
832
+}
827
 </style>
833
 </style>
828
 <style lang="scss">
834
 <style lang="scss">
829
 .newTable {
835
 .newTable {

+ 10 - 10
src/pages/main/dialysis/MissionTable.vue View File

21
       <div class="tableTit">
21
       <div class="tableTit">
22
         <ul>
22
         <ul>
23
           <li style="width:10%;">序号</li>
23
           <li style="width:10%;">序号</li>
24
-          <li style="width:15%;">日期</li>
25
-          <li style="width:75%;">宣教内容</li>
24
+          <li style="width:25%;">日期</li>
25
+          <li style="width:65%;">宣教内容</li>
26
         </ul>
26
         </ul>
27
       </div>
27
       </div>
28
       <div class="tableDate">
28
       <div class="tableDate">
29
         <ul v-for="(item,index) in tableDate" :key="index" :value="item.value">
29
         <ul v-for="(item,index) in tableDate" :key="index" :value="item.value">
30
           <li style="width:10%;">{{index+1}}</li>
30
           <li style="width:10%;">{{index+1}}</li>
31
-          <li style="width:15%;">{{parseTime(item.assessment_date, "{y}-{m}-{d}")}}</li>
32
-          <li style="width:75%;">{{item.mission}}</li>
31
+          <li style="width:25%;">{{parseTime(item.assessment_date, "{y}-{m}-{d}")}}</li>
32
+          <li style="width:65%;">{{item.mission}}</li>
33
         </ul>
33
         </ul>
34
       </div>
34
       </div>
35
       <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
35
       <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
248
     @include justify-content-center;
248
     @include justify-content-center;
249
     li {
249
     li {
250
       border-right: 2px #fff solid;
250
       border-right: 2px #fff solid;
251
-      font-size: 0.3rem;
252
-      height: 0.88rem;
253
-      line-height: 0.88rem;
251
+      font-size: 0.45rem;
252
+      height: 1.2rem;
253
+      line-height: 1.2rem;
254
     }
254
     }
255
     &:last-child {
255
     &:last-child {
256
       border-right: none;
256
       border-right: none;
267
     @include text-align;
267
     @include text-align;
268
     @include justify-content-center;
268
     @include justify-content-center;
269
     li {
269
     li {
270
-      font-size: 0.3rem;
270
+      font-size: 0.45rem;
271
       padding: 0.16rem 0;
271
       padding: 0.16rem 0;
272
       line-height: 0.5rem;
272
       line-height: 0.5rem;
273
       border-right: 2px #fff solid;
273
       border-right: 2px #fff solid;
277
         border-bottom: 2px #fff solid;
277
         border-bottom: 2px #fff solid;
278
         background: #ecf5ff;
278
         background: #ecf5ff;
279
         display: inline-block;
279
         display: inline-block;
280
-        height: 0.88rem;
281
-        line-height: 0.88rem;
280
+        height: 1.2rem;
281
+        line-height: 1.2rem;
282
         .iconfont {
282
         .iconfont {
283
           color: $main-color;
283
           color: $main-color;
284
           font-size: 0.3rem;
284
           font-size: 0.3rem;

+ 4 - 5
src/pages/main/dialysis/RecordTable.vue View File

44
         </ul>
44
         </ul>
45
       </div>
45
       </div>
46
       <div class="blueBorder"></div>
46
       <div class="blueBorder"></div>
47
-      <!-- <div style="width:100%;overflow:hildden;overflow-x:auto;" class="RecordTable">
47
+      <div style="width:100%;overflow:hildden;overflow-x:auto;" class="RecordTable">
48
         <table class="table" style>
48
         <table class="table" style>
49
           <tr>
49
           <tr>
50
             <th width="124px">透析日期</th>
50
             <th width="124px">透析日期</th>
87
         <div class="NoData" v-show="tableDate.length == 0">
87
         <div class="NoData" v-show="tableDate.length == 0">
88
           <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
88
           <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
89
         </div>
89
         </div>
90
-
91
-      </div>-->
92
-      <el-table :data="tableDate" border style="width: 100%">
90
+      </div>
91
+      <!-- <el-table :data="tableDate" border style="width: 100%">
93
         <el-table-column fixed prop="date" label="透析日期" width="100" align="center">
92
         <el-table-column fixed prop="date" label="透析日期" width="100" align="center">
94
           <template slot-scope="scope">{{parseTime(scope.row.dialysis_date, "{y}-{m}-{d}")}}</template>
93
           <template slot-scope="scope">{{parseTime(scope.row.dialysis_date, "{y}-{m}-{d}")}}</template>
95
         </el-table-column>
94
         </el-table-column>
146
         <el-table-column prop="city" label="治疗医生" width="120" align="center">
145
         <el-table-column prop="city" label="治疗医生" width="120" align="center">
147
           <template slot-scope="scope">{{getName(scope.row.treatment_summary.zl_doctor)}}</template>
146
           <template slot-scope="scope">{{getName(scope.row.treatment_summary.zl_doctor)}}</template>
148
         </el-table-column>
147
         </el-table-column>
149
-      </el-table>
148
+      </el-table>-->
150
     </van-list>
149
     </van-list>
151
 
150
 
152
     <mt-datetime-picker
151
     <mt-datetime-picker

+ 77 - 69
src/pages/main/dialysis/SchedulTable.vue View File

1
 <template>
1
 <template>
2
-    <div>
3
-      <van-list
4
-        width="100%"
5
-        v-model="loading"
6
-        :finished="finished"
7
-        @load="onLoad"
8
-      >
9
-        <div class="blueBorder"></div>
10
-        <div class="tableTit " >
11
-                <ul>
12
-                    <li v-for="(item,index) in ['日期','班次','分区','机号','治疗模式']" :key="index" :value="item.value" >{{item}}</li>
13
-                </ul>
2
+  <div>
3
+    <van-list width="100%" v-model="loading" :finished="finished" @load="onLoad">
4
+      <div class="blueBorder"></div>
5
+      <div class="schedulTable">
6
+        <div class="tableTit">
7
+          <ul>
8
+            <li
9
+              v-for="(item,index) in ['日期','班次','分区','机号','治疗模式']"
10
+              :key="index"
11
+              :value="item.value"
12
+            >{{item}}</li>
13
+          </ul>
14
         </div>
14
         </div>
15
-            <div class="tableDate" >
16
-                <ul>
17
-                    <li v-for="(item,index) in tableDate" :key="index" :value="item.value" >
18
-                    <span>{{parseTime(item.schedule_date, "{y}-{m}-{d}")}}</span>
19
-                    <span>{{scheduleType(item.schedule_type)}}</span>
20
-                    <span>{{item.zone.name}}</span>
21
-                    <span>{{item.bed.number}}</span>
22
-                    <span>{{item.mode.name}}</span>
23
-                    </li>
24
-                </ul>
25
-            </div>
26
-      </van-list>
27
-        <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
28
-      <div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
29
-
15
+        <div class="tableDate">
16
+          <ul>
17
+            <li v-for="(item,index) in tableDate" :key="index" :value="item.value">
18
+              <span>{{parseTime(item.schedule_date, "{y}-{m}-{d}")}}</span>
19
+              <span>{{scheduleType(item.schedule_type)}}</span>
20
+              <span>{{item.zone.name}}</span>
21
+              <span>{{item.bed.number}}</span>
22
+              <span>{{item.mode.name}}</span>
23
+            </li>
24
+          </ul>
25
+        </div>
26
+      </div>
27
+    </van-list>
28
+    <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
29
+    <div class="NoData" v-show="tableDate.length == 0">
30
+      <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
30
     </div>
31
     </div>
32
+  </div>
31
 </template>
33
 </template>
32
 
34
 
33
 <script>
35
 <script>
34
-  import {parseTime} from "@/utils"
35
-  import {getSchedualList} from '@/api/patient';
36
+import { parseTime } from "@/utils";
37
+import { getSchedualList } from "@/api/patient";
36
 export default {
38
 export default {
37
   name: "LongTable",
39
   name: "LongTable",
38
-  created(){
39
-    this.tableDate=[]
40
+  created() {
41
+    this.tableDate = [];
40
     let params = {
42
     let params = {
41
-      page : this.page + 1,
43
+      page: this.page + 1,
42
       limit: this.limit,
44
       limit: this.limit,
43
       patient_id: this.$route.query.patient_id
45
       patient_id: this.$route.query.patient_id
44
-    }
45
-    getSchedualList(params).then(response =>{
46
-      if(response.data.state == 0){
46
+    };
47
+    getSchedualList(params).then(response => {
48
+      if (response.data.state == 0) {
47
         return false;
49
         return false;
48
-      }else{
49
-        if(response.data.data.schedules.length == 0){
50
-
51
-        }else{
52
-          for(let i = 0; i < response.data.data.schedules.length;i++){
53
-            this.tableDate.push(response.data.data.schedules[i])
50
+      } else {
51
+        if (response.data.data.schedules.length == 0) {
52
+        } else {
53
+          for (let i = 0; i < response.data.data.schedules.length; i++) {
54
+            this.tableDate.push(response.data.data.schedules[i]);
54
           }
55
           }
55
         }
56
         }
56
       }
57
       }
57
     });
58
     });
58
-
59
   },
59
   },
60
   data() {
60
   data() {
61
     return {
61
     return {
62
       tableDate: [],
62
       tableDate: [],
63
       loading: false,
63
       loading: false,
64
       finished: false,
64
       finished: false,
65
-      page:0,
66
-      limit:15,
65
+      page: 0,
66
+      limit: 15
67
     };
67
     };
68
-
69
-  },  methods: {
68
+  },
69
+  methods: {
70
     parseTime(time, layout) {
70
     parseTime(time, layout) {
71
-      return parseTime(time, layout)
72
-    },onLoad() {
73
-      this.page = this.page + 1
71
+      return parseTime(time, layout);
72
+    },
73
+    onLoad() {
74
+      this.page = this.page + 1;
74
       let params = {
75
       let params = {
75
-        page : this.page + 1,
76
+        page: this.page + 1,
76
         limit: this.limit,
77
         limit: this.limit,
77
         patient_id: this.$route.query.patient_id
78
         patient_id: this.$route.query.patient_id
78
-      }
79
-      getAllEducationList(params).then(response =>{
80
-        if(response.data.state == 0){
79
+      };
80
+      getAllEducationList(params).then(response => {
81
+        if (response.data.state == 0) {
81
           this.finished = true;
82
           this.finished = true;
82
           this.loading = false;
83
           this.loading = false;
83
           return false;
84
           return false;
84
-        }else{
85
-          if(response.data.data.schedules.length == 0){
85
+        } else {
86
+          if (response.data.data.schedules.length == 0) {
86
             this.finished = true;
87
             this.finished = true;
87
             this.loading = false;
88
             this.loading = false;
88
-
89
-          }else{
90
-            for(let i = 0; i < response.data.data.schedules.length;i++){
91
-              this.tableDate.push(response.data.data.schedules[i])
89
+          } else {
90
+            for (let i = 0; i < response.data.data.schedules.length; i++) {
91
+              this.tableDate.push(response.data.data.schedules[i]);
92
             }
92
             }
93
             this.loading = false;
93
             this.loading = false;
94
           }
94
           }
95
         }
95
         }
96
       });
96
       });
97
-    }, scheduleType(scheduleType) {
97
+    },
98
+    scheduleType(scheduleType) {
98
       var typeName = "";
99
       var typeName = "";
99
       switch (scheduleType) {
100
       switch (scheduleType) {
100
         case 1:
101
         case 1:
111
           break;
112
           break;
112
       }
113
       }
113
       return typeName;
114
       return typeName;
114
-    },
115
+    }
115
   }
116
   }
116
 };
117
 };
117
 </script>
118
 </script>
118
 
119
 
119
 <style style="stylesheet/scss" lang="scss"  scoped>
120
 <style style="stylesheet/scss" lang="scss"  scoped>
121
+.schedulTable {
122
+  width: 100%;
123
+  overflow: auto;
124
+}
120
 .tableTit {
125
 .tableTit {
121
   background: $main-color;
126
   background: $main-color;
122
   color: $text-color;
127
   color: $text-color;
123
   @include box-sizing;
128
   @include box-sizing;
129
+  width: 768px;
124
   ul {
130
   ul {
125
     @include display-flex;
131
     @include display-flex;
126
     @include align-items-center;
132
     @include align-items-center;
127
     @include text-align;
133
     @include text-align;
128
     @include justify-content-center;
134
     @include justify-content-center;
135
+
129
     li {
136
     li {
130
       @include flex;
137
       @include flex;
131
       border-right: 2px #fff solid;
138
       border-right: 2px #fff solid;
132
-      font-size: 0.3rem;
133
-      height: 0.88rem;
134
-      line-height: 0.88rem;
139
+      font-size: 0.45rem;
140
+      height: 1.2rem;
141
+      line-height: 1.2rem;
135
     }
142
     }
136
     &:last-child {
143
     &:last-child {
137
       border-right: none;
144
       border-right: none;
143
   color: $pgh-color;
150
   color: $pgh-color;
144
   @include box-sizing;
151
   @include box-sizing;
145
   ul {
152
   ul {
153
+    width: 768px;
146
     li {
154
     li {
147
-      font-size: 0.3rem;
148
-      height: 0.88rem;
149
-      line-height: 0.88rem;
155
+      font-size: 0.45rem;
156
+      height: 1.2rem;
157
+      line-height: 1.2rem;
150
       @include display-flex;
158
       @include display-flex;
151
       @include align-items-center;
159
       @include align-items-center;
152
       @include text-align;
160
       @include text-align;
157
         border-bottom: 2px #fff solid;
165
         border-bottom: 2px #fff solid;
158
         background: #ecf5ff;
166
         background: #ecf5ff;
159
         display: inline-block;
167
         display: inline-block;
160
-        height: 0.88rem;
161
-        line-height: 0.88rem;
168
+        height: 1.2rem;
169
+        line-height: 1.2rem;
162
         .iconfont {
170
         .iconfont {
163
           color: $main-color;
171
           color: $main-color;
164
           font-size: 0.3rem;
172
           font-size: 0.3rem;

+ 18 - 13
src/pages/main/today/dialysisMonitoring.vue View File

5
       <p>{{title}}</p>
5
       <p>{{title}}</p>
6
       <span class="line"></span>
6
       <span class="line"></span>
7
     </h2>
7
     </h2>
8
-    <!-- <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
9
-      <table  class="table" style="">
8
+    <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
9
+      <table class="table" style>
10
         <tr>
10
         <tr>
11
           <th v-if="isShow('监测时间')" width="124px">时间</th>
11
           <th v-if="isShow('监测时间')" width="124px">时间</th>
12
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
12
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
23
           <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
23
           <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
24
-          <th v-if="isShow('置换量')"  width="92px">置换量(L)</th>
24
+          <th v-if="isShow('置换量')" width="92px">置换量(L)</th>
25
 
25
 
26
-          <th v-if="isShow('电导度')"  width="92px">电导度(mS/m)</th>
27
-          <th v-if="isShow('置换液流量')"  width="92px">置换液流量(ml/h)</th>
26
+          <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
27
+          <th v-if="isShow('置换液流量')" width="92px">置换液流量(ml/h)</th>
28
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
28
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
29
           <th v-if="isShow('处理')" width="92px">处理</th>
29
           <th v-if="isShow('处理')" width="92px">处理</th>
30
           <th v-if="isShow('结果')" width="92px">结果</th>
30
           <th v-if="isShow('结果')" width="92px">结果</th>
32
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
32
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
33
           <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
33
           <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
34
           <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
34
           <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
35
-          <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
35
+          <td
36
+            v-if="isShow('血压')"
37
+          >{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
36
 
38
 
37
           <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
39
           <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
38
           <td v-if="isShow('呼吸频率')">{{item.breathing_rate?item.breathing_rate:''}}</td>
40
           <td v-if="isShow('呼吸频率')">{{item.breathing_rate?item.breathing_rate:''}}</td>
44
           <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
46
           <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
45
           <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
47
           <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
46
           <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:''}}</td>
48
           <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:''}}</td>
47
-          <th v-if="isShow('电导度')" >{{item.conductivity?item.conductivity:''}}</th>
48
-          <th v-if="isShow('置换液流量')" >{{item.displacement_flow_quantity?item.displacement_flow_quantity:''}}</th>
49
+          <th v-if="isShow('电导度')">{{item.conductivity?item.conductivity:''}}</th>
50
+          <th
51
+            v-if="isShow('置换液流量')"
52
+          >{{item.displacement_flow_quantity?item.displacement_flow_quantity:''}}</th>
49
           <td v-if="isShow('病情变化')">{{item.symptom}}</td>
53
           <td v-if="isShow('病情变化')">{{item.symptom}}</td>
50
           <td v-if="isShow('处理')">{{item.dispose}}</td>
54
           <td v-if="isShow('处理')">{{item.dispose}}</td>
51
           <td v-if="isShow('结果')">{{item.result}}</td>
55
           <td v-if="isShow('结果')">{{item.result}}</td>
52
         </tr>
56
         </tr>
53
       </table>
57
       </table>
54
-      <div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
55
-
56
-    </div>-->
57
-    <el-table :data="tableDate" border style="width: 100%" ref="form">
58
+      <div class="NoData" v-show="tableDate.length == 0">
59
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
60
+      </div>
61
+    </div>
62
+    <!-- <el-table :data="tableDate" border style="width: 100%" ref="form">
58
       <span v-if="isShow('监测时间')">
63
       <span v-if="isShow('监测时间')">
59
         <el-table-column fixed prop="date" label="时间" width="100" align="center">
64
         <el-table-column fixed prop="date" label="时间" width="100" align="center">
60
           <template slot-scope="scope">{{parseTime(scope.row.operate_time, "{y}-{m}-{d} {h}:{i}")}}</template>
65
           <template slot-scope="scope">{{parseTime(scope.row.operate_time, "{y}-{m}-{d} {h}:{i}")}}</template>
170
           <template slot-scope="scope">{{scope.row.result}}</template>
175
           <template slot-scope="scope">{{scope.row.result}}</template>
171
         </el-table-column>
176
         </el-table-column>
172
       </span>
177
       </span>
173
-    </el-table>
178
+    </el-table>-->
174
   </div>
179
   </div>
175
 </template>
180
 </template>
176
 
181
 

+ 168 - 121
src/pages/main/today/statOrder.vue View File

5
       <p>{{title}}</p>
5
       <p>{{title}}</p>
6
       <span class="line"></span>
6
       <span class="line"></span>
7
     </h2>
7
     </h2>
8
-    <!-- <table class="table">
9
-      <tr>
10
-        <th width="12%">开嘱医生</th>
11
-        <th width="18%">开始时间</th>
12
-        <th width="31%">医嘱内容</th>
13
-        <th width="18.6%">执行时间</th>
14
-        <th width="10.5%">执行护士</th>
15
-        <th v-if="template_id != 6" width="9.4%">核对护士</th>
16
-      </tr>
17
-      <template v-for="(group) in advice_groups">
18
-        <tr v-for="(advice, i) in group.advices" :key="advice.id">
19
-            <td v-if="i == 0" :rowspan="group.advices.length">{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
20
-
21
-            <td v-if="i == 0" :rowspan="group.advices.length">{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
8
+
9
+    <div class="newDiv">
10
+      <table class="table">
11
+        <tr>
12
+          <th width="12%">开嘱医生</th>
13
+          <th width="18%">开始时间</th>
14
+          <th width="31%">医嘱内容</th>
15
+          <th width="18.6%">执行时间</th>
16
+          <th width="10.5%">执行护士</th>
17
+          <th v-if="template_id != 6" width="9.4%">核对护士</th>
18
+        </tr>
19
+
20
+        <template v-for="(group) in advice_groups">
21
+          <tr v-for="(advice, i) in group.advices" :key="advice.id">
22
+            <td
23
+              v-if="i == 0"
24
+              :rowspan="group.advices.length"
25
+            >{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
26
+
27
+            <td
28
+              v-if="i == 0"
29
+              :rowspan="group.advices.length"
30
+            >{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
22
 
31
 
23
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
32
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
24
               <span>{{advice.advice_name }}</span>
33
               <span>{{advice.advice_name }}</span>
25
-
34
+              <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
26
               <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
35
               <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
27
-              <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28
-              <span v-if="advice.single_dose && template_id == 6" >{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29
-              <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
36
+              <span
37
+                v-if="advice.prescribing_number"
38
+              >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
39
+              <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
30
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
40
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
31
               <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
41
               <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
32
               <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
42
               <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
36
 
46
 
37
             <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
47
             <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
38
 
48
 
39
-            <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
40
-        </tr>
41
-      </template>
42
-    </table> -->
43
-     <el-table :data="tableDate" border style="width: 100%">
44
-      <el-table-column fixed  label="开嘱医生" width="100">
45
-        <template slot-scope="scope">
46
-           {{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}
47
-        </template>
48
-      </el-table-column>
49
-      <el-table-column label="开始时间" width="100" type="index">
50
-        <template slot-scope="scope">{{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}</template>
51
-      </el-table-column>
52
-      <el-table-column label="医嘱内容" width="100">
53
-        <template slot-scope="scope">
54
-          <span>{{scope.row.advice_name }}</span>
55
-
56
-          <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
57
-          <span
58
-            v-if="scope.row.prescribing_number"
59
-          >{{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span>
60
-          <span
61
-            v-if="scope.row.single_dose"
62
-          >单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
63
-          <span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
64
-          <span v-if="scope.row.parent_id == 0">{{scope.row.execution_frequency}}</span>
49
+            <td
50
+              v-if="template_id != 6"
51
+            >{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
52
+          </tr>
65
         </template>
53
         </template>
66
-      </el-table-column>
67
-      <el-table-column label="执行时间" width="100">
68
-        <template slot-scope="scope">{{parseTime(scope.row.execution_time, "{m}-{d} {h}:{i}")}}</template>
69
-      </el-table-column>
70
-      <el-table-column label="执行护士" width="200">
71
-        <template
72
-          slot-scope="scope"
73
-        >{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
74
-      </el-table-column>
75
-    </el-table>
76
-    <div class="NoData" v-show="advice_groups.length == 0">
77
-      <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt>
54
+      </table>
55
+
56
+      <div class="NoData" v-show="advice_groups.length == 0">
57
+        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
58
+      </div>
78
     </div>
59
     </div>
79
   </div>
60
   </div>
80
 </template>
61
 </template>
81
 
62
 
82
 <script>
63
 <script>
83
-import { parseTime } from '@/utils'
64
+import { parseTime } from "@/utils";
84
 
65
 
85
 export default {
66
 export default {
86
-  name: 'statOrder',
87
-  data () {
67
+  name: "statOrder",
68
+  data() {
88
     return {
69
     return {
89
-      title: '临时医嘱 ',
70
+      title: "临时医嘱 ",
90
       template_id: 0,
71
       template_id: 0,
91
       tableDate: []
72
       tableDate: []
92
-    }
73
+    };
93
   },
74
   },
94
   props: {
75
   props: {
95
     doctor_map: {
76
     doctor_map: {
98
     advice_groups: {
79
     advice_groups: {
99
       type: Array,
80
       type: Array,
100
       default: () => {
81
       default: () => {
101
-        return []
82
+        return [];
102
       }
83
       }
103
     }
84
     }
104
   },
85
   },
86
+<<<<<<< .mine
105
   created () {
87
   created () {
106
     this.template_id = this.$store.getters.user.template_info.template_id
88
     this.template_id = this.$store.getters.user.template_info.template_id
107
     console.log("a")
89
     console.log("a")
186
 }
168
 }
187
 </script>
169
 </script>
188
 import { parseTime } from '@/utils'
170
 import { parseTime } from '@/utils'
171
+=======
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
189
 
220
 
190
-export default {
191
-  name: 'statOrder',
192
-  data () {
193
-    return {
194
-      title: '临时医嘱 ',
195
-      template_id: 0,
196
-      tableDate: []
197
-    }
198
-  },
199
-  props: {
200
-    doctor_map: {
201
-      type: Object
202
-    },
203
-    advice_groups: {
204
-      type: Array,
205
-      default: () => {
206
-        return []
207
-      }
208
-    }
209
-  },
221
+
222
+
223
+
224
+
225
+
226
+
227
+
228
+
229
+
230
+
231
+
232
+
233
+
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+>>>>>>> .theirs
210
 
257
 
211
   methods: {
258
   methods: {
212
-    setAdvices (advices) {
259
+    setAdvices(advices) {
213
       if (advices == null) {
260
       if (advices == null) {
214
-        advices = []
261
+        advices = [];
215
       }
262
       }
216
-      this.tableDate.splice(0, this.tableDate.length)
217
-      this.tableDate.push(...advices)
263
+      this.tableDate.splice(0, this.tableDate.length);
264
+      this.tableDate.push(...advices);
218
     },
265
     },
219
-    parseTime (time, layout) {
266
+    parseTime(time, layout) {
220
       if (time == 0) {
267
       if (time == 0) {
221
-        return ''
268
+        return "";
222
       }
269
       }
223
-      return parseTime(time, layout)
270
+      return parseTime(time, layout);
224
     },
271
     },
225
-    createMedicalOrder (row) {
272
+    createMedicalOrder(row) {
226
       if (row.parent_id > 0) {
273
       if (row.parent_id > 0) {
227
-        var spliceIndex = -1
274
+        var spliceIndex = -1;
228
         for (let index = this.tableDate.length - 1; ; index--) {
275
         for (let index = this.tableDate.length - 1; ; index--) {
229
           if (this.tableDate[index].parent_id === row.parent_id) {
276
           if (this.tableDate[index].parent_id === row.parent_id) {
230
-            spliceIndex = index
231
-            break
277
+            spliceIndex = index;
278
+            break;
232
           } else if (this.tableDate[index].id === row.parent_id) {
279
           } else if (this.tableDate[index].id === row.parent_id) {
233
-            spliceIndex = index
234
-            break
280
+            spliceIndex = index;
281
+            break;
235
           }
282
           }
236
         }
283
         }
237
         if (spliceIndex > -1) {
284
         if (spliceIndex > -1) {
238
-          spliceIndex += 1
285
+          spliceIndex += 1;
239
           if (spliceIndex === this.tableDate.length) {
286
           if (spliceIndex === this.tableDate.length) {
240
-            this.tableDate.push(row)
287
+            this.tableDate.push(row);
241
           } else {
288
           } else {
242
-            var swapData = this.tableDate.splice(spliceIndex)
243
-            this.tableDate.push(row)
244
-            this.tableDate = this.tableDate.concat(swapData)
289
+            var swapData = this.tableDate.splice(spliceIndex);
290
+            this.tableDate.push(row);
291
+            this.tableDate = this.tableDate.concat(swapData);
245
           }
292
           }
246
         }
293
         }
247
       } else {
294
       } else {
248
-        this.tableDate.unshift(row)
295
+        this.tableDate.unshift(row);
249
       }
296
       }
250
     },
297
     },
251
-    delMedicalOrder (row) {
298
+    delMedicalOrder(row) {
252
       if (row.parent_id > 0) {
299
       if (row.parent_id > 0) {
253
-        var rslen = this.tableDate.length
300
+        var rslen = this.tableDate.length;
254
         for (let i = 0; i < rslen; i++) {
301
         for (let i = 0; i < rslen; i++) {
255
           if (this.tableDate[i].id == row.id) {
302
           if (this.tableDate[i].id == row.id) {
256
-            this.tableDate.splice(i, 1)
257
-            break
303
+            this.tableDate.splice(i, 1);
304
+            break;
258
           }
305
           }
259
         }
306
         }
260
       } else {
307
       } else {
261
-        var resetTableData = this.tableDate
262
-        this.tableDate = []
263
-        var that = this
264
-        var rslen = resetTableData.length
308
+        var resetTableData = this.tableDate;
309
+        this.tableDate = [];
310
+        var that = this;
311
+        var rslen = resetTableData.length;
265
         for (let i = 0; i < rslen; i++) {
312
         for (let i = 0; i < rslen; i++) {
266
           if (
313
           if (
267
             resetTableData[i].id != row.id &&
314
             resetTableData[i].id != row.id &&
268
             resetTableData[i].parent_id != row.id
315
             resetTableData[i].parent_id != row.id
269
           ) {
316
           ) {
270
-            that.tableDate.push(resetTableData[i])
317
+            that.tableDate.push(resetTableData[i]);
271
           }
318
           }
272
         }
319
         }
273
       }
320
       }
274
     },
321
     },
275
-    executionMedicalOrder (row) {
276
-      var alen = this.tableDate.length
322
+    executionMedicalOrder(row) {
323
+      var alen = this.tableDate.length;
277
       for (let index = 0; index < alen; index++) {
324
       for (let index = 0; index < alen; index++) {
278
         if (this.tableDate[index].id == row.id) {
325
         if (this.tableDate[index].id == row.id) {
279
-          this.tableDate[index].execution_state = 1
280
-          this.tableDate[index].execution_staff = row.execution_staff
281
-          this.tableDate[index].execution_time = row.execution_time
282
-          this.tableDate[index].checker = row.checker
283
-          break
326
+          this.tableDate[index].execution_state = 1;
327
+          this.tableDate[index].execution_staff = row.execution_staff;
328
+          this.tableDate[index].execution_time = row.execution_time;
329
+          this.tableDate[index].checker = row.checker;
330
+          break;
284
         }
331
         }
285
       }
332
       }
286
     }
333
     }
287
   },
334
   },
288
-  created () {
289
-    this.template_id = this.$store.getters.user.template_info.template_id
335
+  created() {
336
+    this.template_id = this.$store.getters.user.template_info.template_id;
337
+    console.log("this是什么东西", this.advice_groups);
290
   }
338
   }
291
-
292
-}
339
+};
293
 </script>
340
 </script>
294
 
341
 
295
 <style rel="stylesheet/scss" lang="scss" scoped>
342
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 45 - 76
src/pages/monitoring/index.vue View File

62
           </li>
62
           </li>
63
         </ul>
63
         </ul>
64
       </div>
64
       </div>
65
-      <van-list
66
-        v-model="loading"
67
-        :finished="finished"
68
-        finished-text="  "
69
-        @load="onLoad"
70
-      >
65
+      <van-list v-model="loading" :finished="finished" finished-text="  " @load="onLoad">
71
         <div class="blueBorder"></div>
66
         <div class="blueBorder"></div>
72
         <table class="table">
67
         <table class="table">
73
           <tr>
68
           <tr>
74
-            <th width="10%">姓名</th>
75
-            <th width="8%">机号</th>
69
+            <th width="8%">姓名</th>
70
+            <th width="6%">机号</th>
76
             <th width="9%">透析号</th>
71
             <th width="9%">透析号</th>
77
-            <th width="13%">排班时间</th>
72
+            <th width="10%">排班时间</th>
78
             <th width="10%">透析模式</th>
73
             <th width="10%">透析模式</th>
79
             <th width="9%">脱水量</th>
74
             <th width="9%">脱水量</th>
80
-            <th width="14%">体重(透前/透后)</th>
81
-            <th width="27%">监控预警(血压/心率)</th>
75
+            <th width="10%">体重(透前/透后)</th>
76
+            <th width="28%">监控预警(血压/心率)</th>
82
           </tr>
77
           </tr>
83
         </table>
78
         </table>
84
 
79
 
85
-        <table
86
-          class="table"
87
-          v-for="(items, index) in dialysis_scheduals"
88
-          :key="index"
89
-        >
80
+        <table class="table" v-for="(items, index) in dialysis_scheduals" :key="index">
90
           <tr v-if="items.zone_name.length > 0">
81
           <tr v-if="items.zone_name.length > 0">
91
             <td width="8%">{{ items.zone_name }}</td>
82
             <td width="8%">{{ items.zone_name }}</td>
92
-            <td width="8%"></td>
83
+            <td width="6%"></td>
93
             <td width="9%"></td>
84
             <td width="9%"></td>
94
-            <td width="13%"></td>
85
+            <td width="10%"></td>
95
             <td width="10%"></td>
86
             <td width="10%"></td>
96
             <td width="9%"></td>
87
             <td width="9%"></td>
97
-            <td width="14%"></td>
98
-            <td width="27%"></td>
88
+            <td width="10%"></td>
89
+            <td width="28%"></td>
99
           </tr>
90
           </tr>
100
-          <tr
101
-            v-for="(item, index) in items.scheduals"
102
-            :key="index"
103
-            @click="clickfunction(item)"
104
-          >
105
-            <td width="10%" style="color:#409eff;">{{ item.patient.name }}</td>
106
-            <td width="8%">
91
+          <tr v-for="(item, index) in items.scheduals" :key="index" @click="clickfunction(item)">
92
+            <td width="8%" style="color:#409eff;">{{ item.patient.name }}</td>
93
+            <td width="6%">
107
               {{
94
               {{
108
-                item.dialysis_order.device_number.number.length > 0
109
-                  ? item.dialysis_order.device_number.number
110
-                  : item.device_number.number
95
+              item.dialysis_order.device_number.number.length > 0
96
+              ? item.dialysis_order.device_number.number
97
+              : item.device_number.number
111
               }}
98
               }}
112
             </td>
99
             </td>
113
 
100
 
114
             <td width="9%">{{ item.patient.dialysis_no }}</td>
101
             <td width="9%">{{ item.patient.dialysis_no }}</td>
115
-            <td width="13%">
116
-              {{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}
117
-            </td>
102
+            <td width="10%">{{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}</td>
118
             <td width="10%">{{ item.treatment_mode.name }}</td>
103
             <td width="10%">{{ item.treatment_mode.name }}</td>
119
             <td width="9%">
104
             <td width="9%">
120
               {{
105
               {{
121
-                item.prescription.dewater_amount
122
-                  ? item.prescription.dewater_amount
123
-                  : ""
106
+              item.prescription.dewater_amount
107
+              ? item.prescription.dewater_amount
108
+              : ""
124
               }}
109
               }}
125
             </td>
110
             </td>
126
-            <td width="14%">
111
+            <td width="10%">
127
               {{
112
               {{
128
-                item.assessment_before_dislysis.weight_before
129
-                  ? item.assessment_before_dislysis.weight_before
130
-                  : ""
113
+              item.assessment_before_dislysis.weight_before
114
+              ? item.assessment_before_dislysis.weight_before
115
+              : ""
131
               }}/{{
116
               }}/{{
132
-                item.assessment_after_dislysis.weight_after
133
-                  ? item.assessment_after_dislysis.weight_after
134
-                  : ""
117
+              item.assessment_after_dislysis.weight_after
118
+              ? item.assessment_after_dislysis.weight_after
119
+              : ""
135
               }}
120
               }}
136
             </td>
121
             </td>
137
-            <td width="27%">
138
-              <span
139
-                v-if="monitorBloodPressureStatus(item.monitoring_record) == 1"
140
-                >低压</span
141
-              >
142
-              <span
143
-                v-if="monitorBloodPressureStatus(item.monitoring_record) == 2"
144
-                >正常</span
145
-              >
146
-              <span
147
-                v-if="monitorBloodPressureStatus(item.monitoring_record) == 3"
148
-                >高压</span
149
-              >
150
-              <span v-if="monitorRateStatus(item.monitoring_record) == 1"
151
-                >心率过缓</span
152
-              >
153
-              <span v-if="monitorRateStatus(item.monitoring_record) == 2"
154
-                >正常</span
155
-              >
156
-              <span v-if="monitorRateStatus(item.monitoring_record) == 3"
157
-                >心率过高</span
158
-              >
122
+            <td width="28%">
123
+              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 1">低压</span>
124
+              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 2">正常</span>
125
+              <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 3">高压</span>
126
+              <span v-if="monitorRateStatus(item.monitoring_record) == 1">心率过缓</span>
127
+              <span v-if="monitorRateStatus(item.monitoring_record) == 2">正常</span>
128
+              <span v-if="monitorRateStatus(item.monitoring_record) == 3">心率过高</span>
159
             </td>
129
             </td>
160
           </tr>
130
           </tr>
161
         </table>
131
         </table>
162
 
132
 
163
         <div class="NoData" v-show="dialysis_scheduals.length == 0">
133
         <div class="NoData" v-show="dialysis_scheduals.length == 0">
164
-          <img
165
-            style="margin-top: 50px; margin-bottom: 50px"
166
-            src="@/assets/login/data.jpg"
167
-            alt
168
-          />
134
+          <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
169
         </div>
135
         </div>
170
       </van-list>
136
       </van-list>
171
       <!-- <div class="monitoringTable">
137
       <!-- <div class="monitoringTable">
224
             </template>
190
             </template>
225
           </el-table-column>
191
           </el-table-column>
226
         </el-table>
192
         </el-table>
227
-      </div> -->
193
+      </div>-->
228
     </div>
194
     </div>
229
     <side-bar :active_index="1"></side-bar>
195
     <side-bar :active_index="1"></side-bar>
230
     <mt-datetime-picker
196
     <mt-datetime-picker
278
   },
244
   },
279
   methods: {
245
   methods: {
280
     clickfunction: function(val) {
246
     clickfunction: function(val) {
281
-      console.log("val是什么 ",val)
247
+      console.log("val是什么 ", val);
282
       this.$router.push({
248
       this.$router.push({
283
         path: "/details",
249
         path: "/details",
284
         query: {
250
         query: {
353
             this.schedule_date = item.schedule_date;
319
             this.schedule_date = item.schedule_date;
354
             arr3.push(item.patient);
320
             arr3.push(item.patient);
355
           });
321
           });
356
-          console.log("arr3",arr3)
322
+          console.log("arr3", arr3);
357
           this.tableData = arr2;
323
           this.tableData = arr2;
358
         }
324
         }
359
       });
325
       });
579
   }
545
   }
580
 }
546
 }
581
 .table {
547
 .table {
582
-  width: 100%;
548
+  width: 1000px;
549
+  @media only screen and (min-width: 768px) {
550
+    width: 1600px;
551
+  }
583
 }
552
 }
584
 .van-list {
553
 .van-list {
585
   padding-top: 76px;
554
   padding-top: 76px;
588
   @media only screen and (min-width: 376px) and (max-width: 737px) {
557
   @media only screen and (min-width: 376px) and (max-width: 737px) {
589
     padding-top: 80px !important;
558
     padding-top: 80px !important;
590
   }
559
   }
591
-  @media only screen and (min-width: 813px) and (max-width: 1024px) {
592
-    padding-top: 116px !important;
560
+  @media only screen and (min-width: 768px) {
561
+    padding-top: 120px !important;
593
   }
562
   }
594
 }
563
 }
595
 .mainBox {
564
 .mainBox {

+ 7 - 1
src/pages/personal/ChangePassword.vue View File

2
   <div class="container">
2
   <div class="container">
3
     <div class="changePassword">
3
     <div class="changePassword">
4
       <van-field v-model="username" clearable label="旧密码" placeholder="请输入旧密码" />
4
       <van-field v-model="username" clearable label="旧密码" placeholder="请输入旧密码" />
5
+      <van-field v-model="sms" center clearable label="验证码" placeholder="请输入短信验证码">
6
+        <van-button slot="button" size="small" type="primary">发送验证码</van-button>
7
+      </van-field>
5
       <van-field v-model="password" type="password" label="新密码" placeholder="请输入新密码" />
8
       <van-field v-model="password" type="password" label="新密码" placeholder="请输入新密码" />
6
-      <van-field v-model="password" type="password" label="确认密码" placeholder="请确认密码" />
7
       <div class="finish">完成</div>
9
       <div class="finish">完成</div>
8
     </div>
10
     </div>
9
   </div>
11
   </div>
40
     .van-field__label {
42
     .van-field__label {
41
       max-width: 2.5rem;
43
       max-width: 2.5rem;
42
     }
44
     }
45
+    .van-button--primary {
46
+      background-color: #258ffc;
47
+      border: 1px solid #258ffc;
48
+    }
43
   }
49
   }
44
   .finish {
50
   .finish {
45
     width: 90%;
51
     width: 90%;

+ 5 - 5
src/styles/style.scss View File

554
 
554
 
555
 // 表单样式
555
 // 表单样式
556
 .table {
556
 .table {
557
-  width: 2000px;
557
+  width: 2400px;
558
   overflow: auto;
558
   overflow: auto;
559
-  font-size: 0.34rem;
559
+  font-size: 0.45rem;
560
   text-align: center;
560
   text-align: center;
561
   border: $border-color;
561
   border: $border-color;
562
   padding-bottom: 0.02rem;
562
   padding-bottom: 0.02rem;
571
       color: #fff;
571
       color: #fff;
572
       padding: 0;
572
       padding: 0;
573
       margin: 0;
573
       margin: 0;
574
-      height: 0.88rem;
574
+      height: 1.2rem;
575
       font-weight: normal;
575
       font-weight: normal;
576
     }
576
     }
577
     td {
577
     td {
578
       background: #ecf5ff;
578
       background: #ecf5ff;
579
       border: none;
579
       border: none;
580
-      padding: 0.18rem 0;
580
+      padding: 0.26rem 0;
581
 
581
 
582
       .xg {
582
       .xg {
583
         color: $main-color;
583
         color: $main-color;
823
   .back {
823
   .back {
824
     // color: $main-color;
824
     // color: $main-color;
825
     color: #fff;
825
     color: #fff;
826
-    margin-right: 0.4rem;
826
+    margin-right: 0.3rem;
827
     .iconfont {
827
     .iconfont {
828
       // color: $main-color;
828
       // color: $main-color;
829
       color: #fff;
829
       color: #fff;