Browse Source

Merge branch 'wzf' of http://git.shengws.com/zhangbj/xt_pad into wzf

xiaoming_global 5 years ago
parent
commit
b1cc5c6f66

+ 4 - 4
src/pages/advice/DialysisAdviceTable.vue View File

158
       </template>
158
       </template>
159
       </table>-->
159
       </table>-->
160
 
160
 
161
-      <div class="NoData" v-show="zones.length <= 1">
161
+      <!-- <div class="NoData" v-show="zones.length <= 1">
162
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
162
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
163
-      </div>
163
+      </div>-->
164
       <el-table :data="date" border style="width: 100%">
164
       <el-table :data="date" border style="width: 100%">
165
         <el-table-column fixed prop="date" label="姓名" width="100" align="center">
165
         <el-table-column fixed prop="date" label="姓名" width="100" align="center">
166
             <template slot-scope="scope">
166
             <template slot-scope="scope">
575
   }
575
   }
576
 }
576
 }
577
 .DialysisAdvice {
577
 .DialysisAdvice {
578
-  padding-top: 85px;
578
+  padding-top: 75px;
579
   // background: #fff;
579
   // background: #fff;
580
   min-height: calc(100vh - 2px);
580
   min-height: calc(100vh - 2px);
581
   // @media only screen and (max-width: 812px) {
581
   // @media only screen and (max-width: 812px) {
582
   //   padding-top: 70px !important;
582
   //   padding-top: 70px !important;
583
   // }
583
   // }
584
   @media only screen and (min-width: 768px) {
584
   @media only screen and (min-width: 768px) {
585
-    padding-top: 130px !important;
585
+    padding-top: 126px !important;
586
   }
586
   }
587
   // @media only screen and (min-width: 813px) and (max-width: 1024px) {
587
   // @media only screen and (min-width: 813px) and (max-width: 1024px) {
588
   //   padding-top: 118px !important;
588
   //   padding-top: 118px !important;

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

456
 .screening {
456
 .screening {
457
   border-bottom: 1px #e5e5e5 solid;
457
   border-bottom: 1px #e5e5e5 solid;
458
   position: fixed;
458
   position: fixed;
459
-  top: 98px;
459
+  top: 100px;
460
   @media only screen and (min-width: 768px) {
460
   @media only screen and (min-width: 768px) {
461
     top: 163px;
461
     top: 163px;
462
   }
462
   }

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

422
   color: #fff;
422
   color: #fff;
423
   border-radius: 15px;
423
   border-radius: 15px;
424
   font-size: 14px;
424
   font-size: 14px;
425
-  @media only screen and (max-width: 376px) {
425
+  @media only screen and (max-width: 415px) {
426
     font-size: 0.34rem !important;
426
     font-size: 0.34rem !important;
427
   }
427
   }
428
 }
428
 }

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

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

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

634
 .screening {
634
 .screening {
635
   border-bottom: 1px #e5e5e5 solid;
635
   border-bottom: 1px #e5e5e5 solid;
636
   position: fixed;
636
   position: fixed;
637
-  top: 98px;
637
+  top: 100px;
638
   @media only screen and (min-width: 768px) {
638
   @media only screen and (min-width: 768px) {
639
     top: 163px;
639
     top: 163px;
640
   }
640
   }

+ 81 - 42
src/pages/main/add_urgent_schedule.vue View File

21
           </van-col>
21
           </van-col>
22
         </van-row>
22
         </van-row>
23
         <van-row class="row">
23
         <van-row class="row">
24
-          <van-col :span="12">
24
+          <van-col :span="24">
25
+            <div class="field_panel">
26
+              <el-autocomplete
27
+                class="Input"
28
+                popper-class="my-autocomplete"
29
+                v-model="value"
30
+                :fetch-suggestions="querySearchAsync"
31
+                :trigger-on-focus="false"
32
+                placeholder="请输入病人名字"
33
+                @select="handleSelect"
34
+              >
35
+                <i class="el-icon-search el-input__icon" slot="suffix"></i>
36
+                <template slot-scope="{ item }">
37
+                  <div class="name">{{ item.name }}</div>
38
+                </template>
39
+              </el-autocomplete>
40
+            </div>
41
+          </van-col>
42
+        </van-row>
43
+        <van-row class="row">
44
+          <van-col :span="24">
25
             <span class="title">日期:</span>
45
             <span class="title">日期:</span>
26
             <div class="field_panel">
46
             <div class="field_panel">
27
               <van-field v-model="date" class="field"></van-field>
47
               <van-field v-model="date" class="field"></van-field>
29
           </van-col>
49
           </van-col>
30
         </van-row>
50
         </van-row>
31
         <van-row class="row">
51
         <van-row class="row">
32
-          <van-col :span="12">
52
+          <van-col :span="24">
33
             <span class="title">患者:</span>
53
             <span class="title">患者:</span>
34
             <div class="field_panel">
54
             <div class="field_panel">
35
               <van-field
55
               <van-field
41
               ></van-field>
61
               ></van-field>
42
             </div>
62
             </div>
43
           </van-col>
63
           </van-col>
44
-
45
-          <van-col :span="9">
46
-            <div class="field_panel">
47
-              <el-autocomplete
48
-                style="float: right"
49
-                popper-class="my-autocomplete"
50
-                v-model="value"
51
-                :fetch-suggestions="querySearchAsync"
52
-                :trigger-on-focus="false"
53
-                placeholder="请输入病人名字"
54
-                @select="handleSelect"
55
-              >
56
-                <i class="el-icon-search el-input__icon" slot="suffix"></i>
57
-                <template slot-scope="{ item }">
58
-                  <div class="name">{{ item.name }}</div>
59
-                </template>
60
-              </el-autocomplete>
61
-            </div>
62
-          </van-col>
63
         </van-row>
64
         </van-row>
64
         <van-row class="row">
65
         <van-row class="row">
65
-          <van-col :span="12">
66
+          <van-col :span="24">
66
             <span class="title">班次:</span>
67
             <span class="title">班次:</span>
67
             <div class="field_panel">
68
             <div class="field_panel">
68
               <van-field
69
               <van-field
75
             </div>
76
             </div>
76
           </van-col>
77
           </van-col>
77
 
78
 
78
-          <van-col :span="12">
79
+          <van-col :span="24">
79
             <span class="title">治疗模式:</span>
80
             <span class="title">治疗模式:</span>
80
             <div class="field_panel">
81
             <div class="field_panel">
81
               <van-field
82
               <van-field
87
               ></van-field>
88
               ></van-field>
88
             </div>
89
             </div>
89
           </van-col>
90
           </van-col>
90
-          <van-col :span="12">
91
+          <van-col :span="24">
91
             <span class="title">床位:</span>
92
             <span class="title">床位:</span>
92
             <div class="field_panel">
93
             <div class="field_panel">
93
               <van-field
94
               <van-field
102
         </van-row>
103
         </van-row>
103
         <van-row class="row">
104
         <van-row class="row">
104
           <van-col :span="24">
105
           <van-col :span="24">
105
-            <span class="title">&nbsp;</span>
106
+            <!-- <span class="title">&nbsp;</span>
106
             <div class="field_panel">
107
             <div class="field_panel">
107
               <van-button type="info" size="normal" @click="submitAction">立即排班</van-button>
108
               <van-button type="info" size="normal" @click="submitAction">立即排班</van-button>
108
-            </div>
109
+            </div>-->
110
+            <div class="nowScheduling" @click="submitAction">立即排班</div>
109
           </van-col>
111
           </van-col>
110
         </van-row>
112
         </van-row>
111
       </div>
113
       </div>
519
     }
521
     }
520
     .nav {
522
     .nav {
521
       text-align: center;
523
       text-align: center;
522
-      font-size: 0.36rem;
524
+      font-size: 0.45rem;
523
       margin-right: 56px;
525
       margin-right: 56px;
524
     }
526
     }
525
   }
527
   }
528
     background: #fff;
530
     background: #fff;
529
     min-height: calc(100vh - 2px);
531
     min-height: calc(100vh - 2px);
530
     padding-top: 55px;
532
     padding-top: 55px;
531
-    padding-left: 20px;
532
-
533
+    // padding-left: 20px;
534
+    @media only screen and (min-width: 768px) {
535
+      padding-top: 100px;
536
+    }
533
     .row {
537
     .row {
534
-      padding: 5px 0;
538
+      // padding: 5px 0;
539
+      width: 80%;
540
+      margin: 0 auto;
535
       .title {
541
       .title {
536
         color: #8f8f8f;
542
         color: #8f8f8f;
537
         margin-right: 5px;
543
         margin-right: 5px;
538
-        text-align: right;
539
-        font-size: 16px;
544
+        text-align: left;
545
+        font-size: 0.45rem;
540
         line-height: 45px;
546
         line-height: 45px;
541
-        width: 80px;
547
+        width: 3rem;
542
         float: left;
548
         float: left;
543
         // @media only screen and (max-width: 812px) {
549
         // @media only screen and (max-width: 812px) {
544
         //   font-size: 0.3rem !important;
550
         //   font-size: 0.3rem !important;
545
         // }
551
         // }
546
-        @media only screen and (max-width: 376px) {
547
-          width: 50px !important;
548
-          font-size: 0.3rem !important;
549
-        }
552
+        // @media only screen and (max-width: 376px) {
553
+        //   width: 50px !important;
554
+        //   font-size: 0.3rem !important;
555
+        // }
550
       }
556
       }
551
       .el-input__inner {
557
       .el-input__inner {
552
         @media only screen and (max-width: 812px) {
558
         @media only screen and (max-width: 812px) {
555
         }
561
         }
556
       }
562
       }
557
       .field_panel {
563
       .field_panel {
558
-        display: inline-block;
564
+        // display: inline-block;
565
+        height: 1.4rem;
559
         .field {
566
         .field {
560
           padding: 0 0;
567
           padding: 0 0;
561
-          font-size: 18px;
568
+          font-size: 0.45rem;
562
           line-height: 45px;
569
           line-height: 45px;
563
           width: 180px;
570
           width: 180px;
564
-          @media only screen and (max-width: 812px) {
565
-            width: 100px;
566
-          }
571
+          // @media only screen and (max-width: 812px) {
572
+          //   width: 100px;
573
+          // }
567
         }
574
         }
568
       }
575
       }
569
 
576
 
576
           margin-left: -10px !important;
583
           margin-left: -10px !important;
577
         }
584
         }
578
       }
585
       }
586
+      .nowScheduling {
587
+        width: 100%;
588
+        height: 1.3rem;
589
+        line-height: 1.3rem;
590
+        border-radius: 30px;
591
+        text-align: center;
592
+        background: #258ffc;
593
+        font-size: 0.45rem;
594
+        color: #fff;
595
+        margin-top: 0.5rem;
596
+      }
579
     }
597
     }
580
   }
598
   }
581
 }
599
 }
593
   }
611
   }
594
 }
612
 }
595
 </style>
613
 </style>
614
+<style lang="scss">
615
+.Input {
616
+  width: 100%;
617
+  .el-input__inner {
618
+    border-radius: 30px;
619
+    font-size: 0.4rem;
620
+    @media only screen and (min-width: 768px) {
621
+      height: 1.2rem;
622
+      line-height: 1.2rem;
623
+      border-radius: 50px;
624
+    }
625
+  }
626
+  .el-input__icon {
627
+    font-size: 0.45rem;
628
+    @media only screen and (min-width: 768px) {
629
+      margin-top: 2px;
630
+      margin-right: 8px;
631
+    }
632
+  }
633
+}
634
+</style>

+ 6 - 3
src/pages/main/dialysis/AdviceTable.vue View File

1550
       margin: 0 auto;
1550
       margin: 0 auto;
1551
       font-size: 0.32rem;
1551
       font-size: 0.32rem;
1552
       color: $pgh-color;
1552
       color: $pgh-color;
1553
+      @media only screen and (min-width: 768px) {
1554
+        width: 76%;
1555
+      }
1553
       li {
1556
       li {
1554
         @include display-flex;
1557
         @include display-flex;
1555
         @include align-items-center;
1558
         @include align-items-center;
1559
 
1562
 
1560
         .iconfont {
1563
         .iconfont {
1561
           margin: 0 0.1rem;
1564
           margin: 0 0.1rem;
1562
-          @media only screen and (max-width: 812px) {
1563
-            font-size: 12px !important;
1564
-          }
1565
+          // @media only screen and (max-width: 767px) {
1566
+          //   font-size: 12px !important;
1567
+          // }
1565
         }
1568
         }
1566
         .line {
1569
         .line {
1567
           background: #a8b3ba;
1570
           background: #a8b3ba;

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

223
       margin: 0 auto;
223
       margin: 0 auto;
224
       .iconfont {
224
       .iconfont {
225
         margin: 0 0.1rem;
225
         margin: 0 0.1rem;
226
-        @media only screen and (max-width: 812px) {
227
-          font-size: 12px !important;
228
-        }
226
+        // @media only screen and (max-width: 812px) {
227
+        //   font-size: 12px !important;
228
+        // }
229
       }
229
       }
230
       .line {
230
       .line {
231
         background: #a8b3ba;
231
         background: #a8b3ba;

+ 6 - 3
src/pages/main/dialysis/RecordTable.vue View File

481
     margin: 0 auto;
481
     margin: 0 auto;
482
     font-size: 0.4rem;
482
     font-size: 0.4rem;
483
     color: $pgh-color;
483
     color: $pgh-color;
484
+    @media only screen and (min-width: 768px) {
485
+      width: 80%;
486
+    }
484
     li {
487
     li {
485
       @include display-flex;
488
       @include display-flex;
486
       @include align-items-center;
489
       @include align-items-center;
488
       padding: 0.3rem 0;
491
       padding: 0.3rem 0;
489
       .iconfont {
492
       .iconfont {
490
         margin: 0 0.1rem;
493
         margin: 0 0.1rem;
491
-        @media only screen and (max-width: 812px) {
492
-          font-size: 12px !important;
493
-        }
494
+        // @media only screen and (max-width: 812px) {
495
+        //   font-size: 12px !important;
496
+        // }
494
       }
497
       }
495
       .line {
498
       .line {
496
         background: #a8b3ba;
499
         background: #a8b3ba;

+ 1 - 1
src/pages/main/today/acceptsAssessment.vue View File

59
           <span class="content">{{this.record.sick_condition_other}}</span>
59
           <span class="content">{{this.record.sick_condition_other}}</span>
60
         </li>
60
         </li>
61
 
61
 
62
-        <li style="height: 0.6rem;" v-if="isShow('摄入量')">
62
+        <li v-if="isShow('摄入量')">
63
           <label>摄入量:</label>
63
           <label>摄入量:</label>
64
           <span class="content">{{intakes}}</span>
64
           <span class="content">{{intakes}}</span>
65
         </li>
65
         </li>

+ 95 - 113
src/pages/main/today/dialysisMonitoring.vue View File

56
     </div>-->
56
     </div>-->
57
     <el-table :data="tableDate" border style="width: 100%" ref="form">
57
     <el-table :data="tableDate" border style="width: 100%" ref="form">
58
       <span v-if="isShow('监测时间')">
58
       <span v-if="isShow('监测时间')">
59
-         <el-table-column fixed prop="date" label="时间" width="100" align="center">
60
-            <template slot-scope="scope">
61
-                {{parseTime(scope.row.operate_time, "{y}-{m}-{d} {h}:{i}")}}
62
-            </template>
59
+        <el-table-column fixed prop="date" label="时间" width="100" align="center">
60
+          <template slot-scope="scope">{{parseTime(scope.row.operate_time, "{y}-{m}-{d} {h}:{i}")}}</template>
63
         </el-table-column>
61
         </el-table-column>
64
       </span>
62
       </span>
65
-      <span  v-if="isShow('体温')">
66
-          <el-table-column prop="name" label="体温(℃)" width="100" align="center">
67
-             <template slot-scope="scope">
68
-                 {{scope.row.temperature?scope.row.temperature:''}}
69
-             </template>
70
-          </el-table-column>
63
+      <span v-if="isShow('体温')">
64
+        <el-table-column prop="name" label="体温(℃)" width="80" align="center">
65
+          <template slot-scope="scope">{{scope.row.temperature?scope.row.temperature:''}}</template>
66
+        </el-table-column>
71
       </span>
67
       </span>
72
-      <span v-if="isShow('血压')" >
73
-          <el-table-column prop="province" label="血压(mmHg)" width="100" align="center">
74
-               <template slot-scope="scope">
75
-                   {{scope.row.systolic_blood_pressure?scope.row.systolic_blood_pressure:''}}/{{scope.row.diastolic_blood_pressure?scope.row.diastolic_blood_pressure:''}}
76
-               </template>
77
-          </el-table-column>
68
+      <span v-if="isShow('血压')">
69
+        <el-table-column prop="province" label="血压(mmHg)" width="110" align="center">
70
+          <template
71
+            slot-scope="scope"
72
+          >{{scope.row.systolic_blood_pressure?scope.row.systolic_blood_pressure:''}}/{{scope.row.diastolic_blood_pressure?scope.row.diastolic_blood_pressure:''}}</template>
73
+        </el-table-column>
78
       </span>
74
       </span>
79
       <span v-if="isShow('脉搏')">
75
       <span v-if="isShow('脉搏')">
80
-            <el-table-column prop="city" label="脉搏(次/分)" width="100" align="center">
81
-                <template slot-scope="scope">
82
-                  {{scope.row.pulse_frequency?scope.row.pulse_frequency:''}}
83
-                </template>
84
-            </el-table-column>
76
+        <el-table-column prop="city" label="脉搏(次/分)" width="100" align="center">
77
+          <template slot-scope="scope">{{scope.row.pulse_frequency?scope.row.pulse_frequency:''}}</template>
78
+        </el-table-column>
85
       </span>
79
       </span>
86
       <span v-if="isShow('呼吸频率')">
80
       <span v-if="isShow('呼吸频率')">
87
-           <el-table-column prop="address" label="呼吸频率(次/分)" width="200" align="center">
88
-                 <template slot-scope="scope">
89
-                   {{scope.row.breathing_rate?scope.row.breathing_rate:''}}
90
-                 </template>
91
-           </el-table-column>
81
+        <el-table-column prop="address" label="呼吸频率(次/分)" width="140" align="center">
82
+          <template slot-scope="scope">{{scope.row.breathing_rate?scope.row.breathing_rate:''}}</template>
83
+        </el-table-column>
92
       </span>
84
       </span>
93
       <el-table-column prop="zip" label="静脉压/动脉压(mmHg)" width="100" align="center">
85
       <el-table-column prop="zip" label="静脉压/动脉压(mmHg)" width="100" align="center">
94
-           <template slot-scope="scope" >
95
-              {{scope.row.venous_pressure?scope.row.venous_pressure:''}}/{{scope.row.arterial_pressure?scope.row.arterial_pressure:''}}
96
-           </template>
86
+        <template
87
+          slot-scope="scope"
88
+        >{{scope.row.venous_pressure?scope.row.venous_pressure:''}}/{{scope.row.arterial_pressure?scope.row.arterial_pressure:''}}</template>
97
       </el-table-column>
89
       </el-table-column>
98
       <span v-if="isShow('血流量')">
90
       <span v-if="isShow('血流量')">
99
-           <el-table-column prop="zip" label="血流量(ml/min)" width="150" align="center">
100
-              <template slot-scope="scope">
101
-                {{scope.row.blood_flow_volume?scope.row.blood_flow_volume:''}}
102
-              </template>
103
-           </el-table-column>
91
+        <el-table-column prop="zip" label="血流量(ml/min)" width="150" align="center">
92
+          <template
93
+            slot-scope="scope"
94
+          >{{scope.row.blood_flow_volume?scope.row.blood_flow_volume:''}}</template>
95
+        </el-table-column>
104
       </span>
96
       </span>
105
       <span v-if="isShow('跨膜压')">
97
       <span v-if="isShow('跨膜压')">
106
-           <el-table-column prop="zip" label="跨膜压(mmHg)" width="200" align="center">
107
-                <template slot-scope="scope">
108
-                   {{scope.row.transmembrane_pressure?scope.row.transmembrane_pressure:''}}
109
-                </template>
110
-           </el-table-column>
98
+        <el-table-column prop="zip" label="跨膜压(mmHg)" width="130" align="center">
99
+          <template
100
+            slot-scope="scope"
101
+          >{{scope.row.transmembrane_pressure?scope.row.transmembrane_pressure:''}}</template>
102
+        </el-table-column>
111
       </span>
103
       </span>
112
-      <span  v-if="isShow('超滤量')">
113
-            <el-table-column prop="zip" label="超滤量(ml)" width="200" align="center">
114
-                <template slot-scope="scope">
115
-                    {{scope.row.ultrafiltration_volume?scope.row.ultrafiltration_volume:''}}
116
-                </template>
117
-            </el-table-column>
104
+      <span v-if="isShow('超滤量')">
105
+        <el-table-column prop="zip" label="超滤量(ml)" width="100" align="center">
106
+          <template
107
+            slot-scope="scope"
108
+          >{{scope.row.ultrafiltration_volume?scope.row.ultrafiltration_volume:''}}</template>
109
+        </el-table-column>
118
       </span>
110
       </span>
119
 
111
 
120
       <span v-if="isShow('钠浓度')">
112
       <span v-if="isShow('钠浓度')">
121
-            <el-table-column prop="zip" label="钠浓度(mmol/L)" width="200" align="center">
122
-                <template slot-scope="scope">
123
-                     {{scope.row.sodium_concentration?scope.row.sodium_concentration:''}}
124
-                </template>
125
-            </el-table-column>
113
+        <el-table-column prop="zip" label="钠浓度(mmol/L)" width="100" align="center">
114
+          <template
115
+            slot-scope="scope"
116
+          >{{scope.row.sodium_concentration?scope.row.sodium_concentration:''}}</template>
117
+        </el-table-column>
126
       </span>
118
       </span>
127
 
119
 
128
       <span v-if="isShow('透析液温度')">
120
       <span v-if="isShow('透析液温度')">
129
-           <el-table-column prop="zip" label="透析液温度(℃)" width="200" align="center">
130
-                 <template slot-scope="scope">
131
-                    {{scope.row.dialysate_temperature?scope.row.dialysate_temperature:''}}
132
-                 </template>
133
-             </el-table-column>
121
+        <el-table-column prop="zip" label="透析液温度(℃)" width="100" align="center">
122
+          <template
123
+            slot-scope="scope"
124
+          >{{scope.row.dialysate_temperature?scope.row.dialysate_temperature:''}}</template>
125
+        </el-table-column>
134
       </span>
126
       </span>
135
 
127
 
136
       <span v-if="isShow('置换率')">
128
       <span v-if="isShow('置换率')">
137
-          <el-table-column prop="zip" label="置换率(L/h)" width="200" align="center">
138
-             <template slot-scope="scope">
139
-                {{scope.row.replacement_rate?scope.row.replacement_rate:''}}
140
-             </template>
141
-          </el-table-column>
129
+        <el-table-column prop="zip" label="置换率(L/h)" width="200" align="center">
130
+          <template slot-scope="scope">{{scope.row.replacement_rate?scope.row.replacement_rate:''}}</template>
131
+        </el-table-column>
142
       </span>
132
       </span>
143
 
133
 
144
       <span v-if="isShow('置换量')">
134
       <span v-if="isShow('置换量')">
145
-           <el-table-column prop="zip" label="置换量(L)" width="200" align="center">
146
-                <template slot-scope="scope">
147
-                  {{scope.row.displacement_quantity?scope.row.displacement_quantity:''}}
148
-                </template>
149
-           </el-table-column>
135
+        <el-table-column prop="zip" label="置换量(L)" width="200" align="center">
136
+          <template
137
+            slot-scope="scope"
138
+          >{{scope.row.displacement_quantity?scope.row.displacement_quantity:''}}</template>
139
+        </el-table-column>
150
       </span>
140
       </span>
151
 
141
 
152
       <span v-if="isShow('电导度')">
142
       <span v-if="isShow('电导度')">
153
-         <el-table-column prop="zip" label="电导度(mS/m)" width="200" align="center">
154
-              <template slot-scope="scope">
155
-               {{scope.row.conductivity?scope.row.conductivity:''}}
156
-              </template>
157
-         </el-table-column>
143
+        <el-table-column prop="zip" label="电导度(mS/m)" width="200" align="center">
144
+          <template slot-scope="scope">{{scope.row.conductivity?scope.row.conductivity:''}}</template>
145
+        </el-table-column>
158
       </span>
146
       </span>
159
 
147
 
160
-      <span  v-if="isShow('置换液流量')">
161
-             <el-table-column prop="zip" label="置换液流量(ml/h)" width="200" align="center">
162
-                <template slot-scope="scope">
163
-                    {{scope.row.displacement_flow_quantity?scope.row.displacement_flow_quantity:''}}
164
-                </template>
165
-             </el-table-column>
148
+      <span v-if="isShow('置换液流量')">
149
+        <el-table-column prop="zip" label="置换液流量(ml/h)" width="200" align="center">
150
+          <template
151
+            slot-scope="scope"
152
+          >{{scope.row.displacement_flow_quantity?scope.row.displacement_flow_quantity:''}}</template>
153
+        </el-table-column>
166
       </span>
154
       </span>
167
 
155
 
168
       <span v-if="isShow('病情变化')">
156
       <span v-if="isShow('病情变化')">
169
-           <el-table-column prop="zip" label="病情变化" width="200" align="center">
170
-             <template slot-scope="scope">
171
-                 {{scope.row.symptom}}
172
-             </template>
173
-           </el-table-column>
157
+        <el-table-column prop="zip" label="病情变化" width="200" align="center">
158
+          <template slot-scope="scope">{{scope.row.symptom}}</template>
159
+        </el-table-column>
174
       </span>
160
       </span>
175
 
161
 
176
-       <span v-if="isShow('处理')">
177
-            <el-table-column prop="zip" label="处理" width="200" align="center">
178
-              <template slot-scope="scope">
179
-               {{scope.row.dispose}}
180
-              </template>
181
-            </el-table-column>
182
-       </span>
162
+      <span v-if="isShow('处理')">
163
+        <el-table-column prop="zip" label="处理" width="200" align="center">
164
+          <template slot-scope="scope">{{scope.row.dispose}}</template>
165
+        </el-table-column>
166
+      </span>
183
 
167
 
184
       <span v-if="isShow('结果')">
168
       <span v-if="isShow('结果')">
185
-            <el-table-column prop="zip" label="结果" width="200" align="center">
186
-                 <template slot-scope="scope">
187
-                   {{scope.row.result}}
188
-                 </template>
189
-            </el-table-column>
169
+        <el-table-column prop="zip" label="结果" width="200" align="center">
170
+          <template slot-scope="scope">{{scope.row.result}}</template>
171
+        </el-table-column>
190
       </span>
172
       </span>
191
     </el-table>
173
     </el-table>
192
   </div>
174
   </div>
193
 </template>
175
 </template>
194
 
176
 
195
 <script>
177
 <script>
196
-import { parseTime } from '@/utils'
178
+import { parseTime } from "@/utils";
197
 
179
 
198
 export default {
180
 export default {
199
-  name: 'statOrder',
200
-  data () {
181
+  name: "statOrder",
182
+  data() {
201
     return {
183
     return {
202
-      title: '透析监测 ',
184
+      title: "透析监测 ",
203
       template_id: 0,
185
       template_id: 0,
204
       tableDate: []
186
       tableDate: []
205
-    }
187
+    };
206
   },
188
   },
207
-  created () {
208
-    this.template_id = this.$store.getters.user.template_info.template_id
189
+  created() {
190
+    this.template_id = this.$store.getters.user.template_info.template_id;
209
   },
191
   },
210
   methods: {
192
   methods: {
211
-    isShow (name) {
212
-      var filedList = this.$store.getters.user.fileds
193
+    isShow(name) {
194
+      var filedList = this.$store.getters.user.fileds;
213
 
195
 
214
       for (let i = 0; i < filedList.length; i++) {
196
       for (let i = 0; i < filedList.length; i++) {
215
         if (
197
         if (
217
           filedList[i].filed_name_cn == name &&
199
           filedList[i].filed_name_cn == name &&
218
           filedList[i].is_show == 1
200
           filedList[i].is_show == 1
219
         ) {
201
         ) {
220
-          return true
202
+          return true;
221
         }
203
         }
222
       }
204
       }
223
-      return false
205
+      return false;
224
     },
206
     },
225
-    setRecords (records) {
207
+    setRecords(records) {
226
       if (records == null) {
208
       if (records == null) {
227
-        records = []
209
+        records = [];
228
       }
210
       }
229
-      this.tableDate.splice(0, this.tableDate.length)
230
-      this.tableDate.push(...records)
211
+      this.tableDate.splice(0, this.tableDate.length);
212
+      this.tableDate.push(...records);
231
     },
213
     },
232
-    parseTime (time, layout) {
233
-      return parseTime(time, layout)
214
+    parseTime(time, layout) {
215
+      return parseTime(time, layout);
234
     },
216
     },
235
-    addRecords (records) {
236
-      this.tableDate.push(...records)
217
+    addRecords(records) {
218
+      this.tableDate.push(...records);
237
     }
219
     }
238
   }
220
   }
239
-}
221
+};
240
 </script>
222
 </script>
241
 
223
 
242
 <style rel="stylesheet/scss" lang="scss" scoped>
224
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 9 - 6
src/pages/monitoring/index.vue View File

170
       </van-list>-->
170
       </van-list>-->
171
       <div class="monitoringTable">
171
       <div class="monitoringTable">
172
         <el-table :data="tableData" border style="width: 100%" class="newTable">
172
         <el-table :data="tableData" border style="width: 100%" class="newTable">
173
-          <el-table-column fixed prop="date" label="机号" width="100" align="center">
173
+          <el-table-column fixed prop="name" label="姓名" width="80" align="center">
174
+            <template slot-scope="scope">{{scope.row.patient.name}}</template>
175
+          </el-table-column>
176
+          <el-table-column prop="date" label="机号" width="60" align="center">
174
             <template slot-scope="scope">
177
             <template slot-scope="scope">
175
               {{
178
               {{
176
               scope.row.dialysis_order.device_number.number.length > 0
179
               scope.row.dialysis_order.device_number.number.length > 0
179
               }}
182
               }}
180
             </template>
183
             </template>
181
           </el-table-column>
184
           </el-table-column>
182
-          <el-table-column prop="name" label="姓名" width="100" align="center">
183
-            <template slot-scope="scope">{{scope.row.patient.name}}</template>
184
-          </el-table-column>
185
-          <el-table-column prop="province" label="透析号" width="100" align="center">
185
+          <el-table-column prop="province" label="透析号" width="80" align="center">
186
             <template slot-scope="scope">{{scope.row.patient.dialysis_no}}</template>
186
             <template slot-scope="scope">{{scope.row.patient.dialysis_no}}</template>
187
           </el-table-column>
187
           </el-table-column>
188
           <el-table-column prop="city" label="排班时间" width="100" align="center">
188
           <el-table-column prop="city" label="排班时间" width="100" align="center">
189
             <template slot-scope="scope">{{parseTime(scope.row.schedule_date,"{y}-{m}-{d}")}}</template>
189
             <template slot-scope="scope">{{parseTime(scope.row.schedule_date,"{y}-{m}-{d}")}}</template>
190
           </el-table-column>
190
           </el-table-column>
191
-          <el-table-column prop="address" label="透析模式" width="200" align="center">
191
+          <el-table-column prop="address" label="透析模式" width="100" align="center">
192
             <template slot-scope="scope">{{ scope.row.treatment_mode.name}}</template>
192
             <template slot-scope="scope">{{ scope.row.treatment_mode.name}}</template>
193
           </el-table-column>
193
           </el-table-column>
194
           <el-table-column prop="zip" label="脱水量" width="100" align="center">
194
           <el-table-column prop="zip" label="脱水量" width="100" align="center">
644
 }
644
 }
645
 
645
 
646
 .monitoringTable {
646
 .monitoringTable {
647
+  .el-table {
648
+    width: 99.9% !important;
649
+  }
647
   .newTable {
650
   .newTable {
648
     margin-top: 80px;
651
     margin-top: 80px;
649
     @media only screen and (min-width: 768px) {
652
     @media only screen and (min-width: 768px) {

+ 5 - 0
src/pages/personal/ChangePassword.vue View File

31
     .van-field__label {
31
     .van-field__label {
32
       height: 1.4rem;
32
       height: 1.4rem;
33
       line-height: 1.4rem;
33
       line-height: 1.4rem;
34
+      font-size: 0.45rem;
34
     }
35
     }
35
     .van-field__body {
36
     .van-field__body {
36
       height: 100%;
37
       height: 100%;
38
+      font-size: 0.45rem;
39
+    }
40
+    .van-field__label {
41
+      max-width: 2.5rem;
37
     }
42
     }
38
   }
43
   }
39
   .finish {
44
   .finish {

+ 18 - 10
src/pages/personal/ElectronicSignature.vue View File

378
 }
378
 }
379
 .mainContent {
379
 .mainContent {
380
   .title {
380
   .title {
381
-    font-size: 0.36rem;
381
+    font-size: 0.45rem;
382
     padding: 0.3rem 0.37rem;
382
     padding: 0.3rem 0.37rem;
383
     color: $title-color;
383
     color: $title-color;
384
     @include align-items-center;
384
     @include align-items-center;
388
     background: #fff;
388
     background: #fff;
389
     .GoBack {
389
     .GoBack {
390
       color: $main-color;
390
       color: $main-color;
391
-      font-size: 0.36rem;
391
+      font-size: 0.45rem;
392
       @include display-flex;
392
       @include display-flex;
393
       .iconfont {
393
       .iconfont {
394
         color: $main-color;
394
         color: $main-color;
395
         font-size: 0.5rem;
395
         font-size: 0.5rem;
396
+        margin-top: 1px;
397
+        @media only screen and (min-width: 768px) {
398
+          margin-top: 3px;
399
+        }
396
       }
400
       }
397
     }
401
     }
402
+    .name {
403
+      margin-right: 1.3rem;
404
+    }
398
   }
405
   }
399
   .information {
406
   .information {
400
     width: 100%;
407
     width: 100%;
401
     margin: 0 auto;
408
     margin: 0 auto;
402
     .imagename {
409
     .imagename {
403
-      width: 600px;
410
+      width: 100%;
404
       margin: 0 auto;
411
       margin: 0 auto;
405
       text-align: center;
412
       text-align: center;
406
       padding: 10px 0;
413
       padding: 10px 0;
408
     }
415
     }
409
     .name {
416
     .name {
410
       background: #fff;
417
       background: #fff;
411
-      width: 600px;
418
+      width: 100%;
412
       height: 400px;
419
       height: 400px;
413
       margin: 0 auto;
420
       margin: 0 auto;
414
       border-radius: 4px;
421
       border-radius: 4px;
415
 
422
 
416
-      @media only screen and (max-width: 812px) {
417
-        width: 500px !important;
418
-        height: 200px !important;
419
-      }
423
+      // @media only screen and (max-width: 812px) {
424
+      //   width: 500px !important;
425
+      //   height: 200px !important;
426
+      // }
420
       .item {
427
       .item {
421
         padding: 0.37rem 0.4rem;
428
         padding: 0.37rem 0.4rem;
422
         @include align-items-center;
429
         @include align-items-center;
453
 }
460
 }
454
 .fl {
461
 .fl {
455
   @media only screen and (max-width: 812px) {
462
   @media only screen and (max-width: 812px) {
456
-    width: 500px !important;
457
-    height: 200px !important;
463
+    width: 100% !important;
464
+    height: 400px !important;
458
   }
465
   }
459
 }
466
 }
460
 .mainBox {
467
 .mainBox {
461
   height: 100%;
468
   height: 100%;
462
   display: flex;
469
   display: flex;
470
+  overflow: hidden;
463
   flex-direction: column;
471
   flex-direction: column;
464
   > :first-child {
472
   > :first-child {
465
     flex: 1;
473
     flex: 1;

+ 7 - 4
src/styles/style.scss View File

90
         @media only screen and (min-width: 376px) and (max-width: 413px) {
90
         @media only screen and (min-width: 376px) and (max-width: 413px) {
91
           width: 4.2rem;
91
           width: 4.2rem;
92
         }
92
         }
93
+        @media only screen and (min-width: 768px) {
94
+          width: 6.6rem;
95
+        }
93
         .content {
96
         .content {
94
           color: $main-color;
97
           color: $main-color;
95
         }
98
         }
323
 .popover-demo-content {
326
 .popover-demo-content {
324
   ul {
327
   ul {
325
     li {
328
     li {
326
-      font-size: 0.32rem;
329
+      font-size: 0.45rem;
327
       color: $title-color;
330
       color: $title-color;
328
-      line-height: 0.7rem;
329
-      height: 0.7rem;
331
+      line-height: 1rem;
332
+      height: 1rem;
330
       .iconfont {
333
       .iconfont {
331
         float: right;
334
         float: right;
332
         color: #409eff;
335
         color: #409eff;
872
 //   background: #fff;
875
 //   background: #fff;
873
 // }
876
 // }
874
 .stateBox {
877
 .stateBox {
875
-  padding-top: 130px;
878
+  padding-top: 140px;
876
   background: #fff;
879
   background: #fff;
877
   min-height: calc(100vh - 2px);
880
   min-height: calc(100vh - 2px);
878
   padding-left: 0.45rem;
881
   padding-left: 0.45rem;