Browse Source

修改样式

See999 5 years ago
parent
commit
1effa3218e

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

@@ -71,97 +71,98 @@
71 71
 
72 72
     <div style="width:100%;overflow:hildden;overflow-x:auto;" class="DialysisAdvice">
73 73
       <div class="blueBorder"></div>
74
-      <!--
74
+
75 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 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 129
                     advice.parent_id == 0
131 130
                       ? 'advice_content'
132 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 158
           </template>
157 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 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 166
         <el-table-column fixed prop="date" label="姓名" width="100" align="center">
166 167
             <template slot-scope="scope">
167 168
                {{ scope.row.advice_name }}
@@ -177,7 +178,7 @@
177 178
         <el-table-column prop="zip" label="校对时间" width="200" align="center"></el-table-column>
178 179
         <el-table-column prop="zip" label="开嘱医生" width="200" align="center"></el-table-column>
179 180
         <el-table-column prop="zip" label="开嘱时间" width="200" align="center"></el-table-column>
180
-      </el-table>
181
+      </el-table>-->
181 182
     </div>
182 183
 
183 184
     <mt-datetime-picker
@@ -193,16 +194,16 @@
193 194
 </template>
194 195
 
195 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 201
 export default {
201
-  name: 'DialysisAdviceTable',
202
+  name: "DialysisAdviceTable",
202 203
   components: {
203 204
     SideBar
204 205
   },
205
-  data () {
206
+  data() {
206 207
     return {
207 208
       selected_date: new Date(),
208 209
       admin_user: [],
@@ -210,153 +211,153 @@ export default {
210 211
       show_sch_type_selector: false,
211 212
       schedule_type_selected: 0,
212 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 220
       show_zone_selector: false,
220 221
       zone_selected: 0,
221 222
       show_patient_type_selector: false,
222
-      zones: [{ value: 0, text: '全部分区', select: true }],
223
+      zones: [{ value: 0, text: "全部分区", select: true }],
223 224
 
224 225
       show_advice_type_selector: false,
225 226
       advice_type_selected: 0,
226 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 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 238
       patient_selected: 0,
238 239
 
239 240
       scheduleMap: {},
240 241
       tableData: []
241
-    }
242
+    };
242 243
   },
243 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 250
       if (this.zone_selected == 0) {
250 251
         for (const key in this.scheduleMap) {
251
-          scheduleMap[key] = this.scheduleMap[key]
252
+          scheduleMap[key] = this.scheduleMap[key];
252 253
         }
253 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 259
       if (this.schedule_type_selected != 0) {
259
-        var _scheduleMap = {}
260
+        var _scheduleMap = {};
260 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 264
           for (let index = 0; index < origin_schedules.length; index++) {
264
-            const schedule = origin_schedules[index]
265
+            const schedule = origin_schedules[index];
265 266
             if (schedule.schedule_type == this.schedule_type_selected) {
266
-              schedules.push(schedule)
267
+              schedules.push(schedule);
267 268
             }
268 269
           }
269 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 277
       for (var key in scheduleMap) {
277
-        let mapArr = scheduleMap[key]
278
+        let mapArr = scheduleMap[key];
278 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 284
       for (var key in scheduleMap) {
284
-        let mapArr = scheduleMap[key]
285
+        let mapArr = scheduleMap[key];
285 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 289
           if (resp_advices.length > 0) {
289
-            var newGroupObject = function () {
290
+            var newGroupObject = function() {
290 291
               return Object.assign(
291 292
                 {},
292 293
                 {
293 294
                   group_no: 0,
294 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 305
             for (let index = 0; index < resp_advices.length; index++) {
305
-              const advice = resp_advices[index]
306
+              const advice = resp_advices[index];
306 307
               if (advice.groupno == 0) {
307 308
                 // 老版本的医嘱
308 309
                 if (advice.parent_id > 0) {
309 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 312
                     if (parent_group.advices.length > 0) {
312 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 319
                 } else {
319 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 331
               } else {
331 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 336
                 if (group.group_no == 0) {
336
-                  initGroupBlock(group, advice)
337
+                  initGroupBlock(group, advice);
337 338
                 }
338 339
                 if (group.group_no == advice.groupno) {
339
-                  group.advices.push(advice)
340
+                  group.advices.push(advice);
340 341
                 }
341 342
               }
342 343
             }
343 344
             if (group.group_no > 0) {
344 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 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 362
   methods: {
362 363
     // getNumber: function (advice,schedule) {
@@ -370,115 +371,115 @@ export default {
370 371
     //   }
371 372
     //
372 373
     // },
373
-    clickfunction: function (val) {
374
+    clickfunction: function(val) {
374 375
       // console.log(val);
375 376
       this.$router.push({
376
-        path: '/details',
377
+        path: "/details",
377 378
         query: {
378 379
           patient_id: val.patient.id,
379 380
           date: this.selected_date.getTime() / 1000,
380 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 394
       if (parent_id == 0) {
394 395
         if (type == 1) {
395
-          return '长嘱'
396
+          return "长嘱";
396 397
         } else if (type == 2) {
397
-          return '临嘱'
398
+          return "临嘱";
398 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 407
       for (let i = 0; i < this.admin_user.length; i++) {
407 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 427
       // console.log(time);
427 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 434
       getSchedualDoctors({
434 435
         date: this.selected_date_str,
435 436
         patient_type: this.patient_selected,
436 437
         advice_type: 2
437 438
       }).then(rs => {
438
-        var resp = rs.data
439
+        var resp = rs.data;
439 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 446
           for (let index = 0; index < schedules.length; index++) {
446
-            const schedule = schedules[index]
447
+            const schedule = schedules[index];
447 448
             if (schedule.doctor_advice.length == 0) {
448
-              continue
449
+              continue;
449 450
             }
450 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 455
             if (zoneMap[schedule.device_number.zone.name] == null) {
455 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 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 473
         } else {
473 474
           this.$toast({
474 475
             message: resp.msg
475
-          })
476
+          });
476 477
         }
477
-      })
478
+      });
478 479
     },
479
-    adviceDesc (advice) {}
480
+    adviceDesc(advice) {}
480 481
   }
481
-}
482
+};
482 483
 </script>
483 484
 
484 485
 <style style="stylesheet/scss" lang="scss" scoped>

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

@@ -240,7 +240,7 @@ export default {
240 240
       font-size: 0.45rem;
241 241
       margin: 0 0.2rem;
242 242
       height: 0.8rem;
243
-      line-height: 0.75rem;
243
+      line-height: 0.8rem;
244 244
       padding: 0 0.4rem;
245 245
       // color: $title-color;
246 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,7 +34,7 @@
34 34
               <label>开嘱时间 {{record_date_str}}</label>
35 35
             </div>
36 36
           </div>
37
-          <!-- <table class="table">
37
+          <table class="table">
38 38
             <tr>
39 39
               <th width="26%">医嘱内容</th>
40 40
               <th width="20%">药品规格</th>
@@ -91,8 +91,8 @@
91 91
                 <td></td>
92 92
               </tr>
93 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 96
             <el-table-column fixed prop="date" label="医嘱内容" width="150">
97 97
               <template slot-scope="scope">
98 98
                    {{ scope.row.title }}
@@ -123,7 +123,7 @@
123 123
                   {{ scope.row.execution_frequency }}
124 124
               </template>
125 125
             </el-table-column>
126
-          </el-table>
126
+          </el-table>-->
127 127
         </div>
128 128
       </div>
129 129
     </div>
@@ -167,16 +167,16 @@
167 167
 </template>
168 168
 
169 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 178
 export default {
179
-  name: 'AddNewOrdersDialogContent',
179
+  name: "AddNewOrdersDialogContent",
180 180
   components: {
181 181
     SingleOptionDialog,
182 182
     OrderFormDialog,
@@ -194,147 +194,147 @@ export default {
194 194
     },
195 195
     advice_templates: {
196 196
       type: Array,
197
-      default: function () {
198
-        return []
197
+      default: function() {
198
+        return [];
199 199
       }
200 200
     },
201 201
     drug_spec_unit_options: {
202 202
       type: Array,
203
-      default: function () {
204
-        return []
203
+      default: function() {
204
+        return [];
205 205
       }
206 206
     },
207 207
     delivery_way_options: {
208 208
       type: Array,
209
-      default: function () {
210
-        return []
209
+      default: function() {
210
+        return [];
211 211
       }
212 212
     },
213 213
     execution_frequency_options: {
214 214
       type: Array,
215
-      default: function () {
216
-        return []
215
+      default: function() {
216
+        return [];
217 217
       }
218 218
     },
219 219
     single_dose_unit_options: {
220 220
       type: Array,
221
-      default: function () {
222
-        return []
221
+      default: function() {
222
+        return [];
223 223
       }
224 224
     },
225 225
     prescribing_number_unit_options: {
226 226
       type: Array,
227
-      default: function () {
228
-        return []
227
+      default: function() {
228
+        return [];
229 229
       }
230 230
     }
231 231
   },
232
-  data () {
232
+  data() {
233 233
     return {
234 234
       show_dialog_key: 0,
235 235
       loading: false,
236 236
 
237
-      record_date_str: '',
237
+      record_date_str: "",
238 238
       start_time: new Date(),
239
-      start_time_str: '',
239
+      start_time_str: "",
240 240
 
241 241
       selecting_advice_index: -1,
242 242
       selecting_subdrug_index: -1,
243 243
       advices: [],
244 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 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 252
   methods: {
253
-    click (row, column, event) {
254
-      alert('aaa')
253
+    click(row, column, event) {
254
+      alert("aaa");
255 255
       // console.log(row)
256 256
       // console.log(column)
257 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 271
     // clickAdviceAction: function (advice_index) {
272 272
     //   this.selecting_advice_index = advice_index
273 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 289
       if (this.selecting_advice_index >= 0) {
290 290
         if (this.selecting_subdrug_index < 0) {
291
-          this.show_dialog_key = 2
291
+          this.show_dialog_key = 2;
292 292
           this.$refs.order_form.showWithEdit(
293 293
             this.advices[this.selecting_advice_index]
294
-          )
294
+          );
295 295
         } else {
296
-          this.show_dialog_key = 2
296
+          this.show_dialog_key = 2;
297 297
           this.$refs.order_form.showWithEdit(
298 298
             this.advices[this.selecting_advice_index].subdrugs[
299 299
               this.selecting_subdrug_index
300 300
             ]
301
-          )
301
+          );
302 302
         }
303 303
       } else {
304
-        Toast.fail('请先选择医嘱内容')
304
+        Toast.fail("请先选择医嘱内容");
305 305
       }
306 306
     },
307
-    deleteOrderAction: function () {
307
+    deleteOrderAction: function() {
308 308
       if (this.selecting_advice_index >= 0) {
309 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 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 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 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 336
       for (let index = 0; index < this.advices.length; index++) {
337
-        const advice = this.advices[index]
337
+        const advice = this.advices[index];
338 338
         var json = {
339 339
           advice_name: advice.title,
340 340
           advice_desc: advice.advice_desc,
@@ -348,9 +348,9 @@ export default {
348 348
           execution_frequency: advice.execution_frequency,
349 349
           remark: advice.remark,
350 350
           subdrugs: []
351
-        }
351
+        };
352 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 354
           json.subdrugs.push({
355 355
             advice_name: subdrug.title,
356 356
             advice_desc: subdrug.advice_desc,
@@ -360,49 +360,49 @@ export default {
360 360
             single_dose_unit: subdrug.single_dose_unit,
361 361
             prescribing_number: String(subdrug.prescribing_number),
362 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 369
       // console.log(adviceJSONs)
370 370
 
371
-      this.loading = true
371
+      this.loading = true;
372 372
       batchCreateAdvices(this.patient_id, this.group_no, data)
373 373
         .then(rs => {
374
-          this.loading = false
375
-          var resp = rs.data
374
+          this.loading = false;
375
+          var resp = rs.data;
376 376
 
377 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 387
           } else {
388
-            Toast.fail(resp.msg)
388
+            Toast.fail(resp.msg);
389 389
           }
390 390
         })
391 391
         .catch(err => {
392
-          this.loading = false
393
-          Toast.fail(err)
394
-        })
392
+          this.loading = false;
393
+          Toast.fail(err);
394
+        });
395 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 404
       for (let index = 0; index < resp_advices.length; index++) {
405
-        const adv = resp_advices[index]
405
+        const adv = resp_advices[index];
406 406
         if (adv.parent_id == 0) {
407 407
           advices.push({
408 408
             id: adv.id,
@@ -417,14 +417,14 @@ export default {
417 417
             prescribing_number: adv.prescribing_number,
418 418
             prescribing_number_unit: adv.prescribing_number_unit,
419 419
             subdrugs: []
420
-          })
420
+          });
421 421
         }
422 422
       }
423 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 425
         if (resp_adv.parent_id > 0) {
426 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 428
             if (p_adv.id == resp_adv.parent_id) {
429 429
               var subdrug = {
430 430
                 id: resp_adv.id,
@@ -438,14 +438,14 @@ export default {
438 438
                 single_dose_unit: resp_adv.single_dose_unit,
439 439
                 prescribing_number: resp_adv.prescribing_number,
440 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 450
     // didSelectOrderTemplate: function(index) {
451 451
     //   this.show_dialog_key = 0;
@@ -506,45 +506,45 @@ export default {
506 506
     //   }
507 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 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 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 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 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 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 548
 </script>
549 549
 
550 550
 <style style="stylesheet/scss" lang="scss" scoped>

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

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

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

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

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

@@ -63,11 +63,11 @@ export default {
63 63
   //   padding-top: 46px;
64 64
   // }
65 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 71
   .nav {
72 72
     border-bottom: 1px #e5e5e5 solid;
73 73
     position: fixed;

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

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

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

@@ -1,35 +1,39 @@
1 1
 <template>
2 2
   <div>
3 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 34
       </div>
31
-    </div>-->
32
-    <div class="newTable">
35
+    </div>
36
+    <!-- <div class="newTable">
33 37
       <el-table :data="tableDate" border style="width: 100%">
34 38
         <el-table-column fixed prop="date" label="序号" width="100" align="center">
35 39
             <template slot-scope="scope">
@@ -56,13 +60,8 @@
56 60
             {{scope.row.edate}}
57 61
           </template>
58 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 63
       </el-table>
65
-    </div>
64
+    </div>-->
66 65
     <van-popup
67 66
       title="透析处方"
68 67
       v-model="showObj.showPopup"
@@ -339,18 +338,18 @@
339 338
 import {
340 339
   GetPatientDialysisSolutionList,
341 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 350
 export default {
352
-  name: 'LongTable',
353
-  data () {
351
+  name: "LongTable",
352
+  data() {
354 353
     return {
355 354
       visibility: false,
356 355
       loading: false,
@@ -371,59 +370,59 @@ export default {
371 370
       },
372 371
       dialysisSolution: {
373 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 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 409
       anticoagulant: {
411 410
         id: 0,
412
-        name: '',
411
+        name: "",
413 412
         type: 1,
414 413
         shouji: 1,
415 414
         weichi: 1,
416 415
         zongliang: 1,
417 416
         gaimingcheng: -1,
418 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 424
       propForm: {
426
-        title: '',
425
+        title: "",
427 426
         list: [],
428 427
         optionList: [],
429 428
         isMultiple: 2,
@@ -434,326 +433,326 @@ export default {
434 433
       modeOption: [],
435 434
       dialysateFormulationOptions: [],
436 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 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 445
       EditDialysisSolution(
447 446
         this.dialysisSolution.id,
448 447
         this.dialysisSolution
449 448
       ).then(response => {
450 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 452
         } else {
454
-          Toast.success('修改成功')
453
+          Toast.success("修改成功");
455 454
           for (const key in response.data.data.solution) {
456 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 464
       for (var key in item) {
466
-        this.dialysisSolution[key] = item[key]
465
+        this.dialysisSolution[key] = item[key];
467 466
       }
468 467
 
469 468
       this.timeValue =
470 469
         this.dialysisSolution.dialysis_duration_hour +
471
-        '小时' +
470
+        "小时" +
472 471
         this.dialysisSolution.dialysis_duration_minute +
473
-        '分钟'
472
+        "分钟";
474 473
 
475 474
       this.time =
476 475
         (this.dialysisSolution.dialysis_duration_hour >= 10
477 476
           ? this.dialysisSolution.dialysis_duration_hour
478
-          : '0' + this.dialysisSolution.dialysis_duration_hour) +
479
-        ':' +
477
+          : "0" + this.dialysisSolution.dialysis_duration_hour) +
478
+        ":" +
480 479
         (this.dialysisSolution.dialysis_duration_minute >= 10
481 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 485
       // document.getElementById('dialogTop').scrollTop = 200;
487
-      var dialogTop = document.querySelector('#dialogTop')
486
+      var dialogTop = document.querySelector("#dialogTop");
488 487
       if (dialogTop != null) {
489 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 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 543
       this.$nextTick(() => {
545 544
         if (
546 545
           this.$refs[this.propForm.click_ref] != undefined &&
547 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 555
       this.$nextTick(() => {
557 556
         if (
558 557
           this.$refs[this.propForm.click_ref] != undefined &&
559 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 563
       switch (val.type) {
565 564
         case 1:
566
-          this.dialysisSolution.mode_id = val.selectId
565
+          this.dialysisSolution.mode_id = val.selectId;
567 566
           this.dialysisSolution.mode_name = this.GetModeByModeId(
568 567
             this.dialysisSolution.mode_id
569
-          )
570
-          break
568
+          );
569
+          break;
571 570
 
572 571
         case 5:
573
-          this.dialysisSolution.anticoagulant = val.selectId
572
+          this.dialysisSolution.anticoagulant = val.selectId;
574 573
 
575 574
           if (
576
-            typeof this.anticoagulantsConfit[val.selectId] === 'undefined' ||
575
+            typeof this.anticoagulantsConfit[val.selectId] === "undefined" ||
577 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 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 594
       if (parseInt(timeArray[0].substring(0, 1)) == 0) {
596 595
         this.dialysisSolution.dialysis_duration_hour = timeArray[0].charAt(
597 596
           timeArray[0].length - 1
598
-        )
597
+        );
599 598
       } else {
600
-        this.dialysisSolution.dialysis_duration_hour = timeArray[0]
599
+        this.dialysisSolution.dialysis_duration_hour = timeArray[0];
601 600
       }
602 601
 
603 602
       if (parseInt(timeArray[1].substring(0, 1)) == 0) {
604 603
         this.dialysisSolution.dialysis_duration_minute = timeArray[1].charAt(
605 604
           timeArray[1].length - 1
606
-        )
605
+        );
607 606
       } else {
608
-        this.dialysisSolution.dialysis_duration_minute = timeArray[1]
607
+        this.dialysisSolution.dialysis_duration_minute = timeArray[1];
609 608
       }
610 609
       this.timeValue =
611 610
         this.dialysisSolution.dialysis_duration_hour +
612
-        '小时' +
611
+        "小时" +
613 612
         this.dialysisSolution.dialysis_duration_minute +
614
-        '分钟'
613
+        "分钟";
615 614
       this.dialysisSolution.dialysis_duration =
616 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 622
       for (let keys in treatment_mode) {
624 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 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 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 662
       for (let index = 0; index < dfl; index++) {
664 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 673
       for (let keys in anticoagulant) {
675 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 681
       if (id in this.adminUserOptions) {
683
-        return this.adminUserOptions[id].name
682
+        return this.adminUserOptions[id].name;
684 683
       } else {
685
-        return '未知'
684
+        return "未知";
686 685
       }
687 686
     },
688
-    fetchAllAdminUsers () {
687
+    fetchAllAdminUsers() {
689 688
       fetchAllAdminUsers().then(response => {
690 689
         if (response.data.state == 1) {
691
-          var ul = response.data.data.users.length
690
+          var ul = response.data.data.users.length;
692 691
           for (let index = 0; index < ul; index++) {
693 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 701
       GetPatientDialysisSolutionList(this.queryParams).then(response => {
703 702
         if (response.data.state == 1) {
704
-          var sl = response.data.data.solutions.length
703
+          var sl = response.data.data.solutions.length;
705 704
           if (sl == 0) {
706
-            this.finished = true
705
+            this.finished = true;
707 706
           } else {
708 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 710
               solution.edate = parseTime(
712 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 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 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 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 752
   components: {
754 753
     CheckBoxSubMenu
755 754
   }
756
-}
755
+};
757 756
 </script>
758 757
 
759 758
 <style style="stylesheet/scss" lang="scss"  scoped>
@@ -779,9 +778,9 @@ export default {
779 778
     li {
780 779
       @include flex;
781 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 785
     &:last-child {
787 786
       border-right: none;
@@ -794,9 +793,9 @@ export default {
794 793
   @include box-sizing;
795 794
   ul {
796 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 799
       @include display-flex;
801 800
       @include align-items-center;
802 801
       @include text-align;
@@ -807,8 +806,8 @@ export default {
807 806
         border-bottom: 2px #fff solid;
808 807
         background: #ecf5ff;
809 808
         display: inline-block;
810
-        height: 0.88rem;
811
-        line-height: 0.88rem;
809
+        height: 1.2rem;
810
+        line-height: 1.2rem;
812 811
         &:last-child {
813 812
           color: $main-color;
814 813
         }
@@ -824,6 +823,13 @@ export default {
824 823
     }
825 824
   }
826 825
 }
826
+.scrollBox {
827
+  width: 100%;
828
+  overflow: auto;
829
+  .scrollTable {
830
+    width: 768px;
831
+  }
832
+}
827 833
 </style>
828 834
 <style lang="scss">
829 835
 .newTable {

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

@@ -21,15 +21,15 @@
21 21
       <div class="tableTit">
22 22
         <ul>
23 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 26
         </ul>
27 27
       </div>
28 28
       <div class="tableDate">
29 29
         <ul v-for="(item,index) in tableDate" :key="index" :value="item.value">
30 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 33
         </ul>
34 34
       </div>
35 35
       <!--<div class="NoData" v-show="tableDate.length == 0"><img src="@/assets/login/data.jpg" alt=""></div>-->
@@ -248,9 +248,9 @@ export default {
248 248
     @include justify-content-center;
249 249
     li {
250 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 255
     &:last-child {
256 256
       border-right: none;
@@ -267,7 +267,7 @@ export default {
267 267
     @include text-align;
268 268
     @include justify-content-center;
269 269
     li {
270
-      font-size: 0.3rem;
270
+      font-size: 0.45rem;
271 271
       padding: 0.16rem 0;
272 272
       line-height: 0.5rem;
273 273
       border-right: 2px #fff solid;
@@ -277,8 +277,8 @@ export default {
277 277
         border-bottom: 2px #fff solid;
278 278
         background: #ecf5ff;
279 279
         display: inline-block;
280
-        height: 0.88rem;
281
-        line-height: 0.88rem;
280
+        height: 1.2rem;
281
+        line-height: 1.2rem;
282 282
         .iconfont {
283 283
           color: $main-color;
284 284
           font-size: 0.3rem;

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

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

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

@@ -1,100 +1,101 @@
1 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 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 31
     </div>
32
+  </div>
31 33
 </template>
32 34
 
33 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 38
 export default {
37 39
   name: "LongTable",
38
-  created(){
39
-    this.tableDate=[]
40
+  created() {
41
+    this.tableDate = [];
40 42
     let params = {
41
-      page : this.page + 1,
43
+      page: this.page + 1,
42 44
       limit: this.limit,
43 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 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 60
   data() {
61 61
     return {
62 62
       tableDate: [],
63 63
       loading: false,
64 64
       finished: false,
65
-      page:0,
66
-      limit:15,
65
+      page: 0,
66
+      limit: 15
67 67
     };
68
-
69
-  },  methods: {
68
+  },
69
+  methods: {
70 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 75
       let params = {
75
-        page : this.page + 1,
76
+        page: this.page + 1,
76 77
         limit: this.limit,
77 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 82
           this.finished = true;
82 83
           this.loading = false;
83 84
           return false;
84
-        }else{
85
-          if(response.data.data.schedules.length == 0){
85
+        } else {
86
+          if (response.data.data.schedules.length == 0) {
86 87
             this.finished = true;
87 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 93
             this.loading = false;
94 94
           }
95 95
         }
96 96
       });
97
-    }, scheduleType(scheduleType) {
97
+    },
98
+    scheduleType(scheduleType) {
98 99
       var typeName = "";
99 100
       switch (scheduleType) {
100 101
         case 1:
@@ -111,27 +112,33 @@ export default {
111 112
           break;
112 113
       }
113 114
       return typeName;
114
-    },
115
+    }
115 116
   }
116 117
 };
117 118
 </script>
118 119
 
119 120
 <style style="stylesheet/scss" lang="scss"  scoped>
121
+.schedulTable {
122
+  width: 100%;
123
+  overflow: auto;
124
+}
120 125
 .tableTit {
121 126
   background: $main-color;
122 127
   color: $text-color;
123 128
   @include box-sizing;
129
+  width: 768px;
124 130
   ul {
125 131
     @include display-flex;
126 132
     @include align-items-center;
127 133
     @include text-align;
128 134
     @include justify-content-center;
135
+
129 136
     li {
130 137
       @include flex;
131 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 143
     &:last-child {
137 144
       border-right: none;
@@ -143,10 +150,11 @@ export default {
143 150
   color: $pgh-color;
144 151
   @include box-sizing;
145 152
   ul {
153
+    width: 768px;
146 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 158
       @include display-flex;
151 159
       @include align-items-center;
152 160
       @include text-align;
@@ -157,8 +165,8 @@ export default {
157 165
         border-bottom: 2px #fff solid;
158 166
         background: #ecf5ff;
159 167
         display: inline-block;
160
-        height: 0.88rem;
161
-        line-height: 0.88rem;
168
+        height: 1.2rem;
169
+        line-height: 1.2rem;
162 170
         .iconfont {
163 171
           color: $main-color;
164 172
           font-size: 0.3rem;

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

@@ -5,8 +5,8 @@
5 5
       <p>{{title}}</p>
6 6
       <span class="line"></span>
7 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 10
         <tr>
11 11
           <th v-if="isShow('监测时间')" width="124px">时间</th>
12 12
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
@@ -21,10 +21,10 @@
21 21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
22 22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
23 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 28
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
29 29
           <th v-if="isShow('处理')" width="92px">处理</th>
30 30
           <th v-if="isShow('结果')" width="92px">结果</th>
@@ -32,7 +32,9 @@
32 32
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
33 33
           <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
34 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 39
           <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
38 40
           <td v-if="isShow('呼吸频率')">{{item.breathing_rate?item.breathing_rate:''}}</td>
@@ -44,17 +46,20 @@
44 46
           <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
45 47
           <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
46 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 53
           <td v-if="isShow('病情变化')">{{item.symptom}}</td>
50 54
           <td v-if="isShow('处理')">{{item.dispose}}</td>
51 55
           <td v-if="isShow('结果')">{{item.result}}</td>
52 56
         </tr>
53 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 63
       <span v-if="isShow('监测时间')">
59 64
         <el-table-column fixed prop="date" label="时间" width="100" align="center">
60 65
           <template slot-scope="scope">{{parseTime(scope.row.operate_time, "{y}-{m}-{d} {h}:{i}")}}</template>
@@ -170,7 +175,7 @@
170 175
           <template slot-scope="scope">{{scope.row.result}}</template>
171 176
         </el-table-column>
172 177
       </span>
173
-    </el-table>
178
+    </el-table>-->
174 179
   </div>
175 180
 </template>
176 181
 

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

@@ -6,7 +6,7 @@
6 6
       <span class="line"></span>
7 7
     </h2>
8 8
 
9
-    <!-- <div class="newDiv">
9
+    <div class="newDiv">
10 10
       <table class="table">
11 11
         <tr>
12 12
           <th width="12%">开嘱医生</th>
@@ -52,11 +52,12 @@
52 52
           </tr>
53 53
         </template>
54 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>
55 59
     </div>
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>-->
59
-    <el-table :data="tableDate" border style="width: 100%">
60
+    <!-- <el-table :data="tableDate" border style="width: 100%">
60 61
       <el-table-column fixed label="开嘱医生" width="100">
61 62
         <template
62 63
           slot-scope="scope"
@@ -88,21 +89,21 @@
88 89
           slot-scope="scope"
89 90
         >{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
90 91
       </el-table-column>
91
-    </el-table>
92
+    </el-table>-->
92 93
   </div>
93 94
 </template>
94 95
 
95 96
 <script>
96
-import { parseTime } from '@/utils'
97
+import { parseTime } from "@/utils";
97 98
 
98 99
 export default {
99
-  name: 'statOrder',
100
-  data () {
100
+  name: "statOrder",
101
+  data() {
101 102
     return {
102
-      title: '临时医嘱 ',
103
+      title: "临时医嘱 ",
103 104
       template_id: 0,
104 105
       tableDate: []
105
-    }
106
+    };
106 107
   },
107 108
   props: {
108 109
     doctor_map: {
@@ -111,94 +112,93 @@ export default {
111 112
     advice_groups: {
112 113
       type: Array,
113 114
       default: () => {
114
-        return []
115
+        return [];
115 116
       }
116 117
     }
117 118
   },
118 119
 
119 120
   methods: {
120
-    setAdvices (advices) {
121
+    setAdvices(advices) {
121 122
       if (advices == null) {
122
-        advices = []
123
+        advices = [];
123 124
       }
124
-      this.tableDate.splice(0, this.tableDate.length)
125
-      this.tableDate.push(...advices)
125
+      this.tableDate.splice(0, this.tableDate.length);
126
+      this.tableDate.push(...advices);
126 127
     },
127
-    parseTime (time, layout) {
128
+    parseTime(time, layout) {
128 129
       if (time == 0) {
129
-        return ''
130
+        return "";
130 131
       }
131
-      return parseTime(time, layout)
132
+      return parseTime(time, layout);
132 133
     },
133
-    createMedicalOrder (row) {
134
+    createMedicalOrder(row) {
134 135
       if (row.parent_id > 0) {
135
-        var spliceIndex = -1
136
+        var spliceIndex = -1;
136 137
         for (let index = this.tableDate.length - 1; ; index--) {
137 138
           if (this.tableDate[index].parent_id === row.parent_id) {
138
-            spliceIndex = index
139
-            break
139
+            spliceIndex = index;
140
+            break;
140 141
           } else if (this.tableDate[index].id === row.parent_id) {
141
-            spliceIndex = index
142
-            break
142
+            spliceIndex = index;
143
+            break;
143 144
           }
144 145
         }
145 146
         if (spliceIndex > -1) {
146
-          spliceIndex += 1
147
+          spliceIndex += 1;
147 148
           if (spliceIndex === this.tableDate.length) {
148
-            this.tableDate.push(row)
149
+            this.tableDate.push(row);
149 150
           } else {
150
-            var swapData = this.tableDate.splice(spliceIndex)
151
-            this.tableDate.push(row)
152
-            this.tableDate = this.tableDate.concat(swapData)
151
+            var swapData = this.tableDate.splice(spliceIndex);
152
+            this.tableDate.push(row);
153
+            this.tableDate = this.tableDate.concat(swapData);
153 154
           }
154 155
         }
155 156
       } else {
156
-        this.tableDate.unshift(row)
157
+        this.tableDate.unshift(row);
157 158
       }
158 159
     },
159
-    delMedicalOrder (row) {
160
+    delMedicalOrder(row) {
160 161
       if (row.parent_id > 0) {
161
-        var rslen = this.tableDate.length
162
+        var rslen = this.tableDate.length;
162 163
         for (let i = 0; i < rslen; i++) {
163 164
           if (this.tableDate[i].id == row.id) {
164
-            this.tableDate.splice(i, 1)
165
-            break
165
+            this.tableDate.splice(i, 1);
166
+            break;
166 167
           }
167 168
         }
168 169
       } else {
169
-        var resetTableData = this.tableDate
170
-        this.tableDate = []
171
-        var that = this
172
-        var rslen = resetTableData.length
170
+        var resetTableData = this.tableDate;
171
+        this.tableDate = [];
172
+        var that = this;
173
+        var rslen = resetTableData.length;
173 174
         for (let i = 0; i < rslen; i++) {
174 175
           if (
175 176
             resetTableData[i].id != row.id &&
176 177
             resetTableData[i].parent_id != row.id
177 178
           ) {
178
-            that.tableDate.push(resetTableData[i])
179
+            that.tableDate.push(resetTableData[i]);
179 180
           }
180 181
         }
181 182
       }
182 183
     },
183
-    executionMedicalOrder (row) {
184
-      var alen = this.tableDate.length
184
+    executionMedicalOrder(row) {
185
+      var alen = this.tableDate.length;
185 186
       for (let index = 0; index < alen; index++) {
186 187
         if (this.tableDate[index].id == row.id) {
187
-          this.tableDate[index].execution_state = 1
188
-          this.tableDate[index].execution_staff = row.execution_staff
189
-          this.tableDate[index].execution_time = row.execution_time
190
-          this.tableDate[index].checker = row.checker
191
-          break
188
+          this.tableDate[index].execution_state = 1;
189
+          this.tableDate[index].execution_staff = row.execution_staff;
190
+          this.tableDate[index].execution_time = row.execution_time;
191
+          this.tableDate[index].checker = row.checker;
192
+          break;
192 193
         }
193 194
       }
194 195
     }
195 196
   },
196
-  created () {
197
-    this.template_id = this.$store.getters.user.template_info.template_id
198
-    console.log('this是什么东西', this.advice_groups)
197
+  created() {
198
+    this.template_id = this.$store.getters.user.template_info.template_id;
199
+    console.log("this是什么东西", this.advice_groups);
199 200
   }
200
-}
201
-
201
+};
202 202
 </script>
203 203
 
204 204
 <style rel="stylesheet/scss" lang="scss" scoped>

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

@@ -62,110 +62,76 @@
62 62
           </li>
63 63
         </ul>
64 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 66
         <div class="blueBorder"></div>
72 67
         <table class="table">
73 68
           <tr>
74
-            <th width="10%">姓名</th>
75
-            <th width="8%">机号</th>
69
+            <th width="8%">姓名</th>
70
+            <th width="6%">机号</th>
76 71
             <th width="9%">透析号</th>
77
-            <th width="13%">排班时间</th>
72
+            <th width="10%">排班时间</th>
78 73
             <th width="10%">透析模式</th>
79 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 77
           </tr>
83 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 81
           <tr v-if="items.zone_name.length > 0">
91 82
             <td width="8%">{{ items.zone_name }}</td>
92
-            <td width="8%"></td>
83
+            <td width="6%"></td>
93 84
             <td width="9%"></td>
94
-            <td width="13%"></td>
85
+            <td width="10%"></td>
95 86
             <td width="10%"></td>
96 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 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 99
             </td>
113 100
 
114 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 103
             <td width="10%">{{ item.treatment_mode.name }}</td>
119 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 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 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 129
             </td>
160 130
           </tr>
161 131
         </table>
162 132
 
163 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 135
         </div>
170 136
       </van-list>
171 137
       <!-- <div class="monitoringTable">
@@ -224,7 +190,7 @@
224 190
             </template>
225 191
           </el-table-column>
226 192
         </el-table>
227
-      </div> -->
193
+      </div>-->
228 194
     </div>
229 195
     <side-bar :active_index="1"></side-bar>
230 196
     <mt-datetime-picker
@@ -278,7 +244,7 @@ export default {
278 244
   },
279 245
   methods: {
280 246
     clickfunction: function(val) {
281
-      console.log("val是什么 ",val)
247
+      console.log("val是什么 ", val);
282 248
       this.$router.push({
283 249
         path: "/details",
284 250
         query: {
@@ -353,7 +319,7 @@ export default {
353 319
             this.schedule_date = item.schedule_date;
354 320
             arr3.push(item.patient);
355 321
           });
356
-          console.log("arr3",arr3)
322
+          console.log("arr3", arr3);
357 323
           this.tableData = arr2;
358 324
         }
359 325
       });
@@ -579,7 +545,10 @@ export default {
579 545
   }
580 546
 }
581 547
 .table {
582
-  width: 100%;
548
+  width: 1000px;
549
+  @media only screen and (min-width: 768px) {
550
+    width: 1600px;
551
+  }
583 552
 }
584 553
 .van-list {
585 554
   padding-top: 76px;
@@ -588,8 +557,8 @@ export default {
588 557
   @media only screen and (min-width: 376px) and (max-width: 737px) {
589 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 564
 .mainBox {

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

@@ -2,8 +2,10 @@
2 2
   <div class="container">
3 3
     <div class="changePassword">
4 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 8
       <van-field v-model="password" type="password" label="新密码" placeholder="请输入新密码" />
6
-      <van-field v-model="password" type="password" label="确认密码" placeholder="请确认密码" />
7 9
       <div class="finish">完成</div>
8 10
     </div>
9 11
   </div>
@@ -40,6 +42,10 @@
40 42
     .van-field__label {
41 43
       max-width: 2.5rem;
42 44
     }
45
+    .van-button--primary {
46
+      background-color: #258ffc;
47
+      border: 1px solid #258ffc;
48
+    }
43 49
   }
44 50
   .finish {
45 51
     width: 90%;

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

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