Browse Source

修改样式

See999 5 years ago
parent
commit
1d3023ae52
1 changed files with 22 additions and 290 deletions
  1. 22 290
      src/pages/main/today/statOrder.vue

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

@@ -1,4 +1,3 @@
1
-<<<<<<< .mine
2 1
 <template>
3 2
   <div class="plate-box">
4 3
     <h2 class="title border">
@@ -10,12 +9,12 @@
10 9
     <!-- <div class="newDiv">
11 10
       <table class="table">
12 11
         <tr>
13
-          <th width="12%">开嘱医生</th>
14
-          <th width="18%">开始时间</th>
15
-          <th width="31%">医嘱内容</th>
16
-          <th width="18.6%">执行时间</th>
17
-          <th width="10.5%">执行护士</th>
18
-          <th v-if="template_id != 6" width="9.4%">核对护士</th>
12
+          <th width="12%">开嘱医生</th>
13
+          <th width="18%">开始时间</th>
14
+          <th width="31%">鍖诲槺鍐呭�</th>
15
+          <th width="18.6%">鎵ц�鏃堕棿</th>
16
+          <th width="10.5%">鎵ц�鎶ゅ+</th>
17
+          <th v-if="template_id != 6" width="9.4%">鏍稿�鎶ゅ+</th>
19 18
         </tr>
20 19
 
21 20
         <template v-for="(group) in advice_groups">
@@ -37,7 +36,7 @@
37 36
               <span
38 37
                 v-if="advice.prescribing_number"
39 38
               >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
40
-              <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
39
+              <span v-if="advice.single_dose">鍗曟�鐢ㄩ噺{{advice.single_dose}}{{advice.single_dose_unit}}</span>
41 40
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
42 41
               <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
43 42
               <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
@@ -57,35 +56,34 @@
57 56
     <div class="NoData" v-show="advice_groups.length == 0">
58 57
       <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
59 58
     </div>-->
60
-    <el-table :data="statOrderdate" border style="width: 100%">
61
-      <el-table-column fixed label="开嘱医生" width="100">
59
+    <el-table :data="tableDate" border style="width: 100%">
60
+      <el-table-column fixed label="开嘱医生" width="100">
62 61
         <template
63 62
           slot-scope="scope"
64 63
         >{{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}</template>
65 64
       </el-table-column>
66
-      <el-table-column label="开始时间" width="100" type="index">
65
+      <el-table-column label="开始时间" width="100" type="index">
67 66
         <template slot-scope="scope">{{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}</template>
68 67
       </el-table-column>
69
-      <el-table-column label="医嘱内容" width="100">
68
+      <el-table-column label="鍖诲槺鍐呭�" width="100">
70 69
         <template slot-scope="scope">
71 70
           <span>{{scope.row.advice_name }}</span>
72
-          <!-- <span>{{scope.row.drug_spec}}{{scope.row.drug_spec_unit}} * {{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span> -->
71
+
73 72
           <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
74 73
           <span
75 74
             v-if="scope.row.prescribing_number"
76 75
           >{{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span>
77 76
           <span
78 77
             v-if="scope.row.single_dose"
79
-          >单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
78
+          >鍗曟�鐢ㄩ噺{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
80 79
           <span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
81 80
           <span v-if="scope.row.parent_id == 0">{{scope.row.execution_frequency}}</span>
82
-          <!-- <span v-if="scope.row.parent_id == 0&&scope.row.remark.length > 0">({{scope.row.remark}})</span> -->
83 81
         </template>
84 82
       </el-table-column>
85
-      <el-table-column label="执行时间" width="100">
83
+      <el-table-column label="鎵ц�鏃堕棿" width="100">
86 84
         <template slot-scope="scope">{{parseTime(scope.row.execution_time, "{m}-{d} {h}:{i}")}}</template>
87 85
       </el-table-column>
88
-      <el-table-column label="执行护士" width="200">
86
+      <el-table-column label="鎵ц�鎶ゅ+" width="200">
89 87
         <template
90 88
           slot-scope="scope"
91 89
         >{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
@@ -101,10 +99,9 @@ export default {
101 99
   name: "statOrder",
102 100
   data() {
103 101
     return {
104
-      title: "临时医嘱 ",
102
+      title: "涓存椂鍖诲槺 ",
105 103
       template_id: 0,
106
-      tableDate: [],
107
-      statOrderdate: []
104
+      tableDate: []
108 105
     };
109 106
   },
110 107
   props: {
@@ -118,16 +115,7 @@ export default {
118 115
       }
119 116
     }
120 117
   },
121
-  created() {
122
-    this.template_id = this.$store.getters.user.template_info.template_id;
123
-    let arr = [...this.advice_groups];
124
-    let arr2 = [];
125
-    arr.map(item => {
126
-      console.log(item.advices);
127
-      arr2.push(...item.advices);
128
-    });
129
-    this.statOrderdate = arr2;
130
-  },
118
+
131 119
   methods: {
132 120
     setAdvices(advices) {
133 121
       if (advices == null) {
@@ -204,6 +192,10 @@ export default {
204 192
         }
205 193
       }
206 194
     }
195
+  },
196
+  created() {
197
+    this.template_id = this.$store.getters.user.template_info.template_id;
198
+    console.log("this是什么东西", this.advice_groups);
207 199
   }
208 200
 };
209 201
 </script>
@@ -257,263 +249,3 @@ export default {
257 249
   padding: 6px 0;
258 250
 }
259 251
 </style>
260
-=======
261
-
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
-
282
-
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
-
374
-
375
-
376
-
377
-
378
-
379
-
380
-
381
-
382
-
383
-
384
-
385
-
386
-
387
-
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
-
406
-
407
-
408
-
409
-
410
-
411
-
412
-
413
-
414
-
415
-
416
-
417
-
418
-
419
-
420
-
421
-
422
-
423
-
424
-
425
-
426
-
427
-
428
-
429
-
430
-
431
-
432
-
433
-
434
-
435
-
436
-
437
-
438
-
439
-
440
-
441
-
442
-
443
-
444
-
445
-
446
-
447
-
448
-
449
-
450
-
451
-
452
-
453
-
454
-
455
-
456
-
457
-
458
-
459
-
460
-
461
-
462
-
463
-
464
-
465
-
466
-
467
-
468
-
469
-
470
-
471
-
472
-
473
-
474
-
475
-
476
-
477
-
478
-
479
-
480
-
481
-
482
-
483
-
484
-
485
-
486
-
487
-
488
-
489
-
490
-
491
-
492
-
493
-
494
-
495
-
496
-
497
-
498
-
499
-
500
-
501
-
502
-
503
-
504
-
505
-
506
-
507
-
508
-
509
-
510
-
511
-
512
-
513
-
514
-
515
-
516
-
517
-
518
-
519
->>>>>>> .theirs