Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

XMLWAN 4 years ago
parent
commit
f595f1a98a

+ 14 - 6
src/xt_pages/dialysis/PatientBox.vue View File

28
             <span class="num"
28
             <span class="num"
29
               >{{ genderText(schedule) }} | {{ getAge(schedule) }} 岁</span
29
               >{{ genderText(schedule) }} | {{ getAge(schedule) }} 岁</span
30
             >
30
             >
31
+            <div style="margin-left:10px;font-size:12px;color:#34495e;margin-right: 5px;" v-if="schedule.assessment_before_dislysis && patientStateVal == 1">签到时间:{{ getTime(schedule.assessment_before_dislysis.created_time) }}</div>
31
           </div>
32
           </div>
32
           <div style="margin-top:5px;text-align:left;height:24px;">
33
           <div style="margin-top:5px;text-align:left;height:24px;">
33
             <span class="tip1" v-if="schedule.prescription == null || schedule.prescription.creater == 0" @click.stop="open(schedule)">
34
             <span class="tip1" v-if="schedule.prescription == null || schedule.prescription.creater == 0" @click.stop="open(schedule)">
36
             <span class="tip2" v-if="schedule.treatment_summary == null || schedule.treatment_summary.dialysis_summary == ''" @click.stop="open1(schedule)">
37
             <span class="tip2" v-if="schedule.treatment_summary == null || schedule.treatment_summary.dialysis_summary == ''" @click.stop="open1(schedule)">
37
               开小结
38
               开小结
38
             </span>
39
             </span>
40
+            <span class="online" v-show="computeState(schedule) != 4">
41
+              <span :class="stateColor(schedule)">{{ stateText(schedule) }}</span>
42
+            </span>
39
           </div>
43
           </div>
40
         </div>
44
         </div>
41
         </div>
45
         </div>
42
         <div>
46
         <div>
43
-          <div style="height:24px;margin-right: 10px;">
47
+          <!-- <div style="height:24px;margin-right: 10px;">
44
             <div class="online" v-show="computeState(schedule) != 4">
48
             <div class="online" v-show="computeState(schedule) != 4">
45
               <p :class="stateColor(schedule)">{{ stateText(schedule) }}</p>
49
               <p :class="stateColor(schedule)">{{ stateText(schedule) }}</p>
46
             </div>
50
             </div>
47
-          </div>
48
-          <div style="margin-top:13px;font-size:12px;color:#34495e;margin-right: 5px;" v-if="schedule.assessment_before_dislysis && patientStateVal == 1">签到时间:{{ getTime(schedule.assessment_before_dislysis.created_time) }}</div>
51
+          </div> -->
52
+          <!-- <div style="margin-top:13px;font-size:12px;color:#34495e;margin-right: 5px;" v-if="schedule.assessment_before_dislysis && patientStateVal == 1">签到时间:{{ getTime(schedule.assessment_before_dislysis.created_time) }}</div> -->
49
         </div>
53
         </div>
50
       </div>
54
       </div>
51
       <div class="dislysisInfo">
55
       <div class="dislysisInfo">
52
         <p>体重(前/后kg):{{ schedule.assessment_before_dislysis ? schedule.assessment_before_dislysis.weight_before : '' }}/{{ schedule.assessment_after_dislysis ? schedule.assessment_after_dislysis.weight_after : '' }}</p>
56
         <p>体重(前/后kg):{{ schedule.assessment_before_dislysis ? schedule.assessment_before_dislysis.weight_before : '' }}/{{ schedule.assessment_after_dislysis ? schedule.assessment_after_dislysis.weight_after : '' }}</p>
53
         <p>目标超滤量:{{ schedule.prescription ? schedule.prescription.target_ultrafiltration : '' }}</p>
57
         <p>目标超滤量:{{ schedule.prescription ? schedule.prescription.target_ultrafiltration : '' }}</p>
54
-        <p>透析器/灌流器:{{ schedule.prescription ? schedule.prescription.dialyzer_perfusion_apparatus : '' }}</p>
58
+        <p :title="schedule.prescription ? schedule.prescription.dialyzer_perfusion_apparatus : ''">透析器/灌流器:{{ schedule.prescription ? schedule.prescription.dialyzer_perfusion_apparatus : '' }}</p>
55
       </div>
59
       </div>
56
       <div class="function" :class="functionColor(schedule)" :id="modeColor(schedule.mode_id)">
60
       <div class="function" :class="functionColor(schedule)" :id="modeColor(schedule.mode_id)">
57
         <ul>
61
         <ul>
680
     .tx {
684
     .tx {
681
       @include display-flex;
685
       @include display-flex;
682
       // @include align-items-center;
686
       // @include align-items-center;
683
-      width: 60%;
687
+      width: 90%;
684
       img {
688
       img {
685
         width: 45px;
689
         width: 45px;
686
         height: 45px;
690
         height: 45px;
749
       text-align: center;
753
       text-align: center;
750
       width: 30%;
754
       width: 30%;
751
       // border-left: 1px #e5e5e5 solid;
755
       // border-left: 1px #e5e5e5 solid;
752
-      p {
756
+      span {
753
         background: #c6cdd2;
757
         background: #c6cdd2;
754
         color: #fff;
758
         color: #fff;
755
         width: 65px;
759
         width: 65px;
759
         margin: 0 auto;
763
         margin: 0 auto;
760
         font-size: 12px;
764
         font-size: 12px;
761
         margin-top:4px;
765
         margin-top:4px;
766
+        display: inline-block;
762
       }
767
       }
763
       .blue {
768
       .blue {
764
         background: $main-color;
769
         background: $main-color;
787
     padding-left: 80px;
792
     padding-left: 80px;
788
     >p{
793
     >p{
789
       margin-bottom: 5px;
794
       margin-bottom: 5px;
795
+      overflow:hidden;
796
+      text-overflow:ellipsis;
797
+      white-space:nowrap;
790
     }
798
     }
791
   }
799
   }
792
 }
800
 }

+ 324 - 69
src/xt_pages/dialysis/batch_print/batch_print_order_thirteen.vue View File

16
           <div v-for="(record, index) in records" :key="record.id" class="print_page_main_content">
16
           <div v-for="(record, index) in records" :key="record.id" class="print_page_main_content">
17
               <div id="dialysis-print-box-1">
17
               <div id="dialysis-print-box-1">
18
                 <div id="dialysis-print-box-1-1" class="dialysis-print-order print-template-two print_page_main_content">
18
                 <div id="dialysis-print-box-1-1" class="dialysis-print-order print-template-two print_page_main_content">
19
-                <div style="width:100%;text-align:center;">
19
+                <!-- <div style="width:100%;text-align:center;">
20
                     <div
20
                     <div
21
                     class="order-yy-name"
21
                     class="order-yy-name"
22
                     style="letter-spacing: 0;font-weight:600;font-size:22px;display:inline-block;"
22
                     style="letter-spacing: 0;font-weight:600;font-size:22px;display:inline-block;"
23
                     >
23
                     >
24
                     {{ orgname }}
24
                     {{ orgname }}
25
                     </div>
25
                     </div>
26
-                </div>
26
+                </div> -->
27
                 <div style="display:inline-block;width:100%;text-align:center;">
27
                 <div style="display:inline-block;width:100%;text-align:center;">
28
                     <div
28
                     <div
29
                     class="order-title"
29
                     class="order-title"
30
                     style="letter-spacing: 0;font-weight:600;font-size:22px;display:inline-block;"
30
                     style="letter-spacing: 0;font-weight:600;font-size:22px;display:inline-block;"
31
                     >
31
                     >
32
-                    血液净化治疗记录单
32
+                    {{ orgname }}  血液净化治疗记录单
33
                     </div>
33
                     </div>
34
                 </div>
34
                 </div>
35
                 <div class="row" style="display:flex;justify-content: space-between;">
35
                 <div class="row" style="display:flex;justify-content: space-between;">
36
-                    <div class="inline_block" style="margin-right:30px;">
36
+                    <div class="inline_block" style="margin-right:5px;">
37
                         日期 <div class="inline_block under_line" style="width:50px">{{ getTime(record.schedule_date, "{y}") }}</div>年
37
                         日期 <div class="inline_block under_line" style="width:50px">{{ getTime(record.schedule_date, "{y}") }}</div>年
38
                         <div class="inline_block under_line" style="width:50px">{{ getTime(record.schedule_date, "{m}") }}</div>月
38
                         <div class="inline_block under_line" style="width:50px">{{ getTime(record.schedule_date, "{m}") }}</div>月
39
                         <div class="inline_block under_line" style="width:50px">{{ getTime(record.schedule_date, "{d}") }}</div>日
39
                         <div class="inline_block under_line" style="width:50px">{{ getTime(record.schedule_date, "{d}") }}</div>日
40
                     </div>
40
                     </div>
41
-                    <div class="inline_block" style="margin-right:30px;">
42
-                        机器编号 
43
-                        <div class="inline_block under_line" style="width:80px;">
44
-                          {{ record.device_zone.name && record.device_number.number ? getNewNumber(record.device_zone.name,record.device_number.number) : '' }}
45
-                        <!-- {{ record.device_zone.name && record.device_number.number ? record.device_zone.name + record.device_number.number : '' }} -->
46
-                        </div>
47
-                    </div>
48
-                    <div class="inline_block" style="margin-right:30px;">
49
-                        病案号 <div class="inline_block under_line" style="width:80px">{{ record.patient.dialysis_no }}</div>
50
-                    </div>
51
-                </div>
52
-                <div style="border-bottom: 2px solid #000;width:100%;"></div>
53
-                <div class="row">
54
-                    <div class="inline_block" style="margin-right:30px;">
41
+                    <div class="inline_block" style="margin-right:5px;">
55
                         姓名 
42
                         姓名 
56
                         <div class="inline_block under_line" style="width:100px;text-align: center;">
43
                         <div class="inline_block under_line" style="width:100px;text-align: center;">
57
                             {{ record.patient.name ? record.patient.name : "" }}
44
                             {{ record.patient.name ? record.patient.name : "" }}
58
                         </div>
45
                         </div>
59
                     </div>
46
                     </div>
60
-                    <div class="inline_block" style="margin-right:30px;">
47
+                    <div class="inline_block" style="margin-right:5px;">
61
                         性别&nbsp;&nbsp;&nbsp;&nbsp;
48
                         性别&nbsp;&nbsp;&nbsp;&nbsp;
62
                         <label-box :isChecked="record.patient.gender == 1" showValue="男" ></label-box>&nbsp;
49
                         <label-box :isChecked="record.patient.gender == 1" showValue="男" ></label-box>&nbsp;
63
                         <label-box :isChecked="record.patient.gender == 2" showValue="女" ></label-box>
50
                         <label-box :isChecked="record.patient.gender == 2" showValue="女" ></label-box>
64
                     </div>
51
                     </div>
65
-                    <div class="inline_block" style="margin-right:30px;">
52
+                    <div class="inline_block" style="margin-right:5px;">
66
                         年龄:
53
                         年龄:
67
                         <div class="under_line" style="width: 50px;text-align: center">
54
                         <div class="under_line" style="width: 50px;text-align: center">
68
                             {{ getNewAge(record.patient.id_card_no) }}
55
                             {{ getNewAge(record.patient.id_card_no) }}
69
                         </div>
56
                         </div>
70
57
71
                     </div>
58
                     </div>
59
+                    <div class="inline_block" style="margin-right:5px;">
60
+                        机器编号 
61
+                        <div class="inline_block under_line" style="width:80px;">
62
+                          {{ record.device_zone.name && record.device_number.number ? getNewNumber(record.device_zone.name,record.device_number.number) : '' }}
63
+                        <!-- {{ record.device_zone.name && record.device_number.number ? record.device_zone.name + record.device_number.number : '' }} -->
64
+                        </div>
65
+                    </div>
66
+                    <div class="inline_block">
67
+                        病案号 <div class="inline_block under_line" style="width:80px">{{ record.patient.dialysis_no }}</div>
68
+                    </div>
72
                 </div>
69
                 </div>
70
+                <div style="border-bottom: 2px solid #000;width:100%;"></div>
73
                 <div class="row">
71
                 <div class="row">
74
                     <div class="inline_block" style="margin-right:30px;">
72
                     <div class="inline_block" style="margin-right:30px;">
75
                         血液净化方式 
73
                         血液净化方式 
76
-                        <div class="inline_block under_line" style="width:300px;text-align: center;">
77
-                            <label-box :isChecked="record.prescription.mode_id == 1 ? true : false" showValue="HD"></label-box>&nbsp;&nbsp;&nbsp;&nbsp;
78
-                            <label-box :isChecked="record.prescription.mode_id == 2 ? true : false" showValue="HDF"></label-box>&nbsp;&nbsp;&nbsp;&nbsp;
79
-                            <!-- <label-box :isChecked="prescription.mode_id == 5 ? true : false" showValue="HF"></label-box>
80
-                            <label-box :isChecked="prescription.mode_id == 4 ? true : false" showValue="HP"></label-box> -->
81
-                            <label-box :isChecked="record.prescription.mode_id == 3 ? true : false" showValue="HD+HP"></label-box>
74
+                        <div
75
+                          class="under_line"
76
+                          style="width: 100px;text-align: center;font-weight:600;"
77
+                          v-if="!record.prescription"
78
+                        ></div>
79
+                        <div
80
+                          v-if="record.prescription"
81
+                          style="display: inline-block;"
82
+                        >
83
+                          <div
84
+                            class="under_line"
85
+                            style="width: 100px;text-align: center;font-weight:600;"
86
+                            v-if="!record.prescription.mode_id"
87
+                          ></div>
88
+                          <div
89
+                            class="under_line"
90
+                            style="width: 100px;text-align: center;font-weight:600;"
91
+                            v-if="record.prescription.mode_id == 1"
92
+                          >
93
+                            HD
94
+                          </div>
95
+                          <div
96
+                            class="under_line"
97
+                            style="width: 100px;text-align: center;font-weight:600;"
98
+                            v-if="record.prescription.mode_id == 2"
99
+                          >
100
+                            HDF
101
+                          </div>
102
+                          <div
103
+                            class="under_line"
104
+                            style="width: 100px;text-align: center;font-weight:600;"
105
+                            v-if="record.prescription.mode_id == 3"
106
+                          >
107
+                            HD+HP
108
+                          </div>
109
+                          <div
110
+                            class="under_line"
111
+                            style="width: 100px;text-align: center;font-weight:600;"
112
+                            v-if="record.prescription.mode_id == 4"
113
+                          >
114
+                            HP
115
+                          </div>
116
+                          <div
117
+                            class="under_line"
118
+                            style="width: 100px;text-align: center;font-weight:600;"
119
+                            v-if="record.prescription.mode_id == 5"
120
+                          >
121
+                            HF
122
+                          </div>
123
+                          <div
124
+                            class="under_line"
125
+                            style="width: 100px;text-align: center;font-weight:600;"
126
+                            v-if="record.prescription.mode_id == 6"
127
+                          >
128
+                            SCUF
129
+                          </div>
130
+                          <div
131
+                            class="under_line"
132
+                            style="width: 100px;text-align: center;font-weight:600;"
133
+                            v-if="record.prescription.mode_id == 7"
134
+                          >
135
+                            IUF
136
+                          </div>
137
+                          <div
138
+                            class="under_line"
139
+                            style="width: 100px;text-align: center;font-weight:600;"
140
+                            v-if="record.prescription.mode_id == 8"
141
+                          >
142
+                            HFHD
143
+                          </div>
144
+                          <div
145
+                            class="under_line"
146
+                            style="width: 100px;text-align: center;font-weight:600;"
147
+                            v-if="record.prescription.mode_id == 9"
148
+                          >
149
+                            HFHD+HP
150
+                          </div>
151
+                          <div
152
+                            class="under_line"
153
+                            style="width: 100px;text-align: center;font-weight:600;"
154
+                            v-if="record.prescription.mode_id == 10"
155
+                          >
156
+                            PHF
157
+                          </div>
158
+                          <div
159
+                            class="under_line"
160
+                            style="width: 100px;text-align: center;font-weight:600;"
161
+                            v-if="record.prescription.mode_id == 11"
162
+                          >
163
+                            HFR
164
+                          </div>
165
+                          <div
166
+                            class="under_line"
167
+                            style="width: 100px;text-align: center;font-weight:600;"
168
+                            v-if="record.prescription.mode_id == 12"
169
+                          >
170
+                            HDF+HP
171
+                          </div>
172
+                          <div
173
+                            class="under_line"
174
+                            style="width: 100px;text-align: center;font-weight:600;"
175
+                            v-if="record.prescription.mode_id == 13"
176
+                          >
177
+                            CRRT
178
+                          </div>
179
+                          <div
180
+                            class="under_line"
181
+                            style="width: 100px;text-align: center;font-weight:600;"
182
+                            v-if="record.prescription.mode_id == 14"
183
+                          >
184
+                            腹水回输
185
+                          </div>
186
+                          <div
187
+                            class="under_line"
188
+                            style="width: 100px;text-align: center;font-weight:600;"
189
+                            v-if="record.prescription.mode_id == 19"
190
+                          >
191
+                            IUF+HD
192
+                          </div>
82
                         </div>
193
                         </div>
83
                     </div>
194
                     </div>
84
                     <div class="inline_block" style="margin-right:30px;">
195
                     <div class="inline_block" style="margin-right:30px;">
87
                             {{ record.prescription.dialyzer_perfusion_apparatus ? record.prescription.dialyzer_perfusion_apparatus : ''}}
198
                             {{ record.prescription.dialyzer_perfusion_apparatus ? record.prescription.dialyzer_perfusion_apparatus : ''}}
88
                         </div>
199
                         </div>
89
                     </div>
200
                     </div>
201
+                    <div class="inline_block" style="margin-right:30px;">
202
+                        透析液配方 
203
+                        <div class="inline_block under_line" style="width:150px;text-align: center;">
204
+                            {{ record.prescription.dialysate_formulation ? dialysateFormulationName(record.prescription.dialysate_formulation) : ''}}
205
+                        </div>
206
+                    </div>
90
                 </div>
207
                 </div>
91
                 <div class="row">
208
                 <div class="row">
92
                     血管通路 
209
                     血管通路 
118
                     &nbsp;
235
                     &nbsp;
119
                     </div>
236
                     </div>
120
                 </div>
237
                 </div>
238
+                <div class="row">
239
+                  <div class="inline_block" style="margin-right:30px;">
240
+                      导管 
241
+                      <div class="inline_block under_line" style="width:200px;text-align: left;">
242
+                          {{ record.assessment_before_dislysis.catheter ? record.assessment_before_dislysis.catheter : ''}}
243
+                      </div>
244
+                  </div>
245
+                  <div class="inline_block" style="margin-right:30px;">
246
+                      内瘘 
247
+                      <div class="inline_block under_line" style="width:200px;text-align: left;">
248
+                          {{ record.assessment_before_dislysis.internal_fistula ? record.assessment_before_dislysis.internal_fistula : ''}}
249
+                      </div>
250
+                  </div>
251
+                </div>
121
                 <div class="row">
252
                 <div class="row">
122
                     抗凝药物 
253
                     抗凝药物 
123
                     <div class="inline_block under_line" style="width:92%;text-align: left;">
254
                     <div class="inline_block under_line" style="width:92%;text-align: left;">
211
                 </div>
342
                 </div>
212
                 <div class="row">
343
                 <div class="row">
213
                     透前评估 
344
                     透前评估 
214
-                    <div class="inline_block under_line" style="width:92%;text-align: left;">
215
-                    <div class="inline_block" style="margin-right:30px;">
216
-                        体温
217
-                        <div class="inline_block" style="width:50px;text-align:center">
218
-                        {{ record.assessment_before_dislysis.temperature ? record.assessment_before_dislysis.temperature : "" }}
219
-                        </div>℃
220
-                    </div>
221
-                    <div class="inline_block" style="margin-right:30px;">
222
-                        血压
223
-                        <div class="inline_block" style="width:100px;text-align:center">
224
-                        {{ record.assessment_before_dislysis.systolic_blood_pressure ? record.assessment_before_dislysis.systolic_blood_pressure : "" }}/
225
-                        {{ record.assessment_before_dislysis.diastolic_blood_pressure ? record.assessment_before_dislysis.diastolic_blood_pressure : "" }}
226
-                        </div>mmHg
227
-                    </div>
228
-                    <div class="inline_block" style="margin-right:30px;">
229
-                        脉搏
230
-                        <div class="inline_block" style="width:50px;text-align:center">
231
-                        {{ record.assessment_before_dislysis.pulse_frequency ? record.assessment_before_dislysis.pulse_frequency : "" }}
232
-                        </div>次/分
233
-                    </div>
345
+                    <div class="inline_block under_line" style="width:50%;text-align: left;">
346
+                      <div class="inline_block" style="margin-right:30px;">
347
+                          体温
348
+                          <div class="inline_block" style="width:50px;text-align:center">
349
+                          {{ record.assessment_before_dislysis.temperature ? record.assessment_before_dislysis.temperature : "" }}
350
+                          </div>℃
351
+                      </div>
352
+                      <div class="inline_block" style="margin-right:30px;">
353
+                          血压
354
+                          <div class="inline_block" style="width:100px;text-align:center">
355
+                          {{ record.assessment_before_dislysis.systolic_blood_pressure ? record.assessment_before_dislysis.systolic_blood_pressure : "" }}/
356
+                          {{ record.assessment_before_dislysis.diastolic_blood_pressure ? record.assessment_before_dislysis.diastolic_blood_pressure : "" }}
357
+                          </div>mmHg
358
+                      </div>
359
+                      <div class="inline_block" style="margin-right:30px;">
360
+                          脉搏
361
+                          <div class="inline_block" style="width:50px;text-align:center">
362
+                          {{ record.assessment_before_dislysis.pulse_frequency ? record.assessment_before_dislysis.pulse_frequency : "" }}
363
+                          </div>次/分
364
+                      </div>
365
+                      入室方式
366
+                      <div class="inline_block under_line" style="width:80px;text-align: center;margin-right:30px;">&nbsp;
367
+                        <span v-if='record.receive_assessment.way == 1'>步行</span>
368
+                        <span v-if='record.receive_assessment.way == 2'>扶行</span>
369
+                        <span v-if='record.receive_assessment.way == 3'>轮椅</span>
370
+                        <span v-if='record.receive_assessment.way == 4'>平车</span>
371
+                      </div>
372
+                      透析频次(次/周)
373
+                      <div class="inline_block under_line" style="width:80px;text-align: center;">
374
+                        {{ record.assessment_before_dislysis.dialysis_count ? record.assessment_before_dislysis.dialysis_count : "" }}
375
+                      </div>
234
             
376
             
235
                     </div>
377
                     </div>
236
                 </div>
378
                 </div>
379
+                <div class="row">
380
+                  透析前症状
381
+                  <div class="inline_block under_line" style="width:150px;text-align: center;margin-right:30px;">
382
+                    {{ record.assessment_before_dislysis.symptom_before_dialysis ? record.assessment_before_dislysis.symptom_before_dialysis : "" }}
383
+                  </div>
384
+                  水肿
385
+                  <div class="inline_block under_line" style="width:150px;text-align: center;margin-right:30px;">
386
+                    {{ record.assessment_before_dislysis.edema ? record.assessment_before_dislysis.edema : "" }}
387
+                  </div>
388
+                  出血
389
+                  <div class="inline_block under_line" style="width:150px;text-align: center;margin-right:30px;">
390
+                    {{ record.assessment_before_dislysis.is_hemorrhage == 1 && record.assessment_before_dislysis.hemorrhage ? record.assessment_before_dislysis.hemorrhage : "" }}
391
+                  </div>
392
+                  跌倒风险预防措施
393
+                  <div class="inline_block under_line" style="width:100px;text-align: center;">
394
+                    {{ record.receive_assessment.precaution ? record.receive_assessment.precaution : '' }}
395
+                  </div>
396
+                </div>
397
+                <div class="row">
398
+                  上机医生
399
+                  <div class="inline_block under_line" style="width:150px;text-align: center;margin-right:30px;">
400
+                    <span v-if="setAdminUserES(record.prescription, 'prescription_doctor') == ''">{{getAdminUser(record.prescription, 'prescription_doctor')}}</span>
401
+                    <span v-else>
402
+                      <img class="es-img" style="height:30px;" :src="setAdminUserES(record.prescription, 'prescription_doctor')" />
403
+                    </span>
404
+                  </div>
405
+                  冲管护士
406
+                  <div class="inline_block under_line" style="width:150px;text-align: center;margin-right:30px;">
407
+                    <span v-if="setAdminUserES(record.dialysis_order, 'washpipe_nurse') == ''">{{getAdminUser(record.dialysis_order, 'washpipe_nurse')}}</span>
408
+                    <span v-else>
409
+                      <img class="es-img" style="height:30px;" :src="setAdminUserES(record.dialysis_order, 'washpipe_nurse')" />
410
+                    </span>
411
+                  </div>
412
+                  穿刺者
413
+                  <div class="inline_block under_line" style="width:150px;text-align: center;margin-right:30px;">
414
+                    <span v-if="setAdminUserES(record.dialysis_order, 'puncture_nurse') == ''">{{getAdminUser(record.dialysis_order, 'puncture_nurse')}}</span>
415
+                    <span v-else>
416
+                      <img class="es-img" style="height:30px;" :src="setAdminUserES(record.dialysis_order, 'puncture_nurse')" />
417
+                    </span>
418
+                  </div>
419
+                  上机护士
420
+                  <div class="inline_block under_line" style="width:100px;text-align: center;">
421
+                    <span v-if="setAdminUserES(record.dialysis_order, 'start_nurse') == ''">{{getAdminUser(record.dialysis_order, 'start_nurse')}}</span>
422
+                    <span v-else>
423
+                      <img class="es-img" style="height:30px;" :src="setAdminUserES(record.dialysis_order, 'start_nurse')" />
424
+                    </span>
425
+                  </div>
426
+                </div>
237
 
427
 
238
                 <table class="print-table" border="1">
428
                 <table class="print-table" border="1">
239
                     <tr>
429
                     <tr>
325
                         <td width="60">TMP</td>
515
                         <td width="60">TMP</td>
326
                         <td width="60">电导率</td>
516
                         <td width="60">电导率</td>
327
                         <td width="40">温度</td>
517
                         <td width="40">温度</td>
328
-                        <td width="60">透析液流量</td>
518
+                        <td width="40">透析液流量</td>
329
                         <td width="60">UF/hr</td>
519
                         <td width="60">UF/hr</td>
330
-                        <td width="100">症状处理</td>
520
+                        <td width="200">病情变化处理方式及结果</td>
331
                         </tr>
521
                         </tr>
332
 
522
 
333
 
523
 
362
                 <table class="print-table" border="1">
552
                 <table class="print-table" border="1">
363
                     <tbody>
553
                     <tbody>
364
                     <tr>
554
                     <tr>
365
-                        <td width="40" rowspan="2" style="padding-left:5px;border:none;border-right:1px solid #000;">
555
+                        <td width="70" rowspan="3" style="padding-left:5px;border:none;border-right:1px solid #000;">
366
                         透后评估
556
                         透后评估
367
                         </td>
557
                         </td>
368
 
558
 
369
                         <td width="25" style="border:none;padding-left:5px;">
559
                         <td width="25" style="border:none;padding-left:5px;">
370
                         体温:
560
                         体温:
371
                         </td>
561
                         </td>
372
-                        <td width="30" style="text-align:left;border:none;">
562
+                        <td width="70" style="text-align:left;border:none;">
373
                         <div>
563
                         <div>
374
                             <span class="under_line" style="width:50px;display:inline-block;">
564
                             <span class="under_line" style="width:50px;display:inline-block;">
375
                             {{ record.assessment_after_dislysis.temperature ? record.assessment_after_dislysis.temperature : "" }}
565
                             {{ record.assessment_after_dislysis.temperature ? record.assessment_after_dislysis.temperature : "" }}
378
                         </td>
568
                         </td>
379
                         <!-- <td width="10" style="border:none;"></td> -->
569
                         <!-- <td width="10" style="border:none;"></td> -->
380
 
570
 
381
-                        <td width="25" style="border:none;padding-left:5px;">血压:</td>
382
-                        <td width="70" style="text-align:left;border:none;line-height: 30px;">
571
+                        <td width="20" style="border:none;padding-left:5px;">血压:</td>
572
+                        <td width="60" style="text-align:left;border:none;line-height: 30px;">
383
                         <div>
573
                         <div>
384
                             <span class="under_line" style="width:100px;display:inline-block">
574
                             <span class="under_line" style="width:100px;display:inline-block">
385
                             {{ record.assessment_after_dislysis.systolic_blood_pressure ? record.assessment_after_dislysis.systolic_blood_pressure : "" }}/
575
                             {{ record.assessment_after_dislysis.systolic_blood_pressure ? record.assessment_after_dislysis.systolic_blood_pressure : "" }}/
387
                             </span>mmHg
577
                             </span>mmHg
388
                         </div>
578
                         </div>
389
                         </td>
579
                         </td>
390
-                        <td width="25" style="border:none;padding-left:5px">脉搏:</td>
391
-                        <td width="55" style="text-align:left;border:none;">
580
+                        <td width="10" style="border:none;padding-left:5px">脉搏:</td>
581
+                        <td width="80" style="text-align:left;border:none;">
392
                         <div>
582
                         <div>
393
                             <span class="under_line" style="width:50px;display:inline-block">
583
                             <span class="under_line" style="width:50px;display:inline-block">
394
                             {{ record.assessment_after_dislysis.pulse_frequency ? record.assessment_after_dislysis.pulse_frequency : "" }}
584
                             {{ record.assessment_after_dislysis.pulse_frequency ? record.assessment_after_dislysis.pulse_frequency : "" }}
395
                             </span>次/分
585
                             </span>次/分
396
                         </div>
586
                         </div>
397
                         </td>
587
                         </td>
588
+                        <td width="50" style="border:none;padding-left:5px">透后症状:</td>
589
+                        <td width="100" style="text-align:left;border:none;">
590
+                          <div>
591
+                            <span class="under_line" style="width:100px;display:inline-block">
592
+                              {{ record.assessment_after_dislysis.symptom_after_dialysis ? record.assessment_after_dislysis.symptom_after_dialysis : "" }}
593
+                            </span>
594
+                          </div>
595
+                        </td>
398
                         
596
                         
399
                     </tr>
597
                     </tr>
400
                     <tr>
598
                     <tr>
401
-                      <td width="50" style="border:none;padding-left:5px">实际置换量:</td>
599
+                      <td width="90" style="border:none;padding-left:5px">实际置换量:</td>
402
                         <td width="30" style="text-align:left;border:none;">
600
                         <td width="30" style="text-align:left;border:none;">
403
                         <div>
601
                         <div>
404
                             <span class="under_line" style="width:50px;display:inline-block">
602
                             <span class="under_line" style="width:50px;display:inline-block">
405
                             {{ record.assessment_after_dislysis.actual_displacement ? record.assessment_after_dislysis.actual_displacement : "" }}
603
                             {{ record.assessment_after_dislysis.actual_displacement ? record.assessment_after_dislysis.actual_displacement : "" }}
406
-                            </span>次/分
604
+                            </span>L
407
                         </div>
605
                         </div>
408
                         </td>
606
                         </td>
409
-                        <td width="50" style="border:none;padding-left:5px">透析器凝血:</td>
410
-                        <td width="110" style="text-align:left;border:none;">
607
+                        <td width="90" style="border:none;padding-left:5px">透析器凝血:</td>
608
+                        <td width="200" style="text-align:left;border:none;">
411
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-0度') > -1 ? true : false) : false" showValue="0"></label-box>
609
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-0度') > -1 ? true : false) : false" showValue="0"></label-box>
412
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-Ⅰ度') > -1 ? true : false) : false" showValue="+"></label-box>
610
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-Ⅰ度') > -1 ? true : false) : false" showValue="+"></label-box>
413
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-Ⅱ度') > -1 ? true : false) : false" showValue="+ +"></label-box>
611
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-Ⅱ度') > -1 ? true : false) : false" showValue="+ +"></label-box>
414
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-Ⅲ度') > -1 ? true : false) : false" showValue="+ + +"></label-box>
612
                         <label-box :isChecked="record.assessment_after_dislysis.cruor ? (record.assessment_after_dislysis.cruor.indexOf('透析器-Ⅲ度') > -1 ? true : false) : false" showValue="+ + +"></label-box>
415
                         </td>
613
                         </td>
416
-                        <td width="50" style="text-align:left;border:none;"></td>
417
-                        <td width="110" style="text-align:left;border:none;"></td>
614
+                        <!-- <td width="50" style="text-align:left;border:none;"></td>
615
+                        <td width="110" style="text-align:left;border:none;"></td> -->
616
+
617
+                        <td width="100" style="border:none;padding-left:5px">透析期间进食:</td>
618
+                        <td width="50" style="text-align:left;border:none;">
619
+                          <div>
620
+                            <span class="under_line" style="width:50px;display:inline-block">
621
+                              <span v-if='record.assessment_after_dislysis.is_eat == 1'>是</span>
622
+                              <span v-if='record.assessment_after_dislysis.is_eat == 2'>否</span>
623
+                            </span>
624
+                          </div>
625
+                        </td>
626
+                        <td width="70" style="border:none;padding-left:5px">透析进食:</td>
627
+                        <td width="50" style="text-align:left;border:none;">
628
+                          <div>
629
+                            <span class="under_line" style="width:50px;display:inline-block">
630
+                              {{ record.assessment_after_dislysis.is_eat == 1 && record.assessment_after_dislysis.dialysis_during ? record.assessment_after_dislysis.dialysis_during : '' }}
631
+                            </span>ml
632
+                          </div>
633
+                        </td>
634
+                    </tr>
635
+                    <tr style="height:30px;line-height:30px;">
636
+                      <td width="20" style="border:none;padding-left:5px;">内瘘:</td>
637
+                      <td width="150" colspan="3" style="text-align:left;border:none;">
638
+                        <div>
639
+                          <span class="under_line" style="width:150px;display:inline-block;">
640
+                            {{ record.assessment_after_dislysis.internal_fistula ? record.assessment_after_dislysis.internal_fistula : "" }}
641
+                          </span>
642
+                        </div>
643
+                      </td>
644
+                      <td width="50" style="border:none;padding-left:5px">下机护士:</td>
645
+                      <td width="100" style="text-align:left;border:none;">
646
+                        <div>
647
+                          <span class="under_line" style="width:100px;display:inline-block">
648
+                            <span v-if="setAdminUserES(record.dialysis_order, 'finish_nurse') == ''">{{getAdminUser(record.dialysis_order, 'finish_nurse')}}</span>
649
+                            <span v-else>
650
+                              <img class="es-img" style="height:30px;" :src="setAdminUserES(record.dialysis_order, 'finish_nurse')" />
651
+                            </span>
652
+                          </span>
653
+                        </div>
654
+                      </td>
655
+                      <td width="10" style="text-align:left;border:none;"></td>
656
+                      <td width="110" style="text-align:left;border:none;"></td>
657
+                      <!-- <td width="110" style="text-align:left;border:none;"></td> -->
658
+                      <!-- <td width="110" style="text-align:left;border:none;"></td> -->
418
                     </tr>
659
                     </tr>
419
                     </tbody>
660
                     </tbody>
420
                 </table>
661
                 </table>
422
                 <table class="print-table" border="1">
663
                 <table class="print-table" border="1">
423
                     <tr style="height:36px;text-align:left;border:none;">
664
                     <tr style="height:36px;text-align:left;border:none;">
424
                     <td style="padding-left:5px;border:none">
665
                     <td style="padding-left:5px;border:none">
425
-                        <p style="margin-bottom:160px">
666
+                        <p style="margin-bottom:30px">
426
                             透析小结:{{ record.summer&&record.summer.dialysis_summary.length>0 ? record.summer.dialysis_summary : "" }}
667
                             透析小结:{{ record.summer&&record.summer.dialysis_summary.length>0 ? record.summer.dialysis_summary : "" }}
427
                         </p>
668
                         </p>
428
                     </td>
669
                     </td>
436
                                 <img :src="setAdminUserES(record.dialysis_order, 'start_nurse')" style="height:30px;" />
677
                                 <img :src="setAdminUserES(record.dialysis_order, 'start_nurse')" style="height:30px;" />
437
                             </span>
678
                             </span>
438
                         </span>
679
                         </span>
439
-                        校对护士
680
+                        二核护士
440
                         <span style="display: inline-block;width:100px;text-align: left;">
681
                         <span style="display: inline-block;width:100px;text-align: left;">
441
                         &nbsp;
682
                         &nbsp;
442
-                        <span v-if="setAdminUserES(record.check, 'modifier') == ''">
443
-                            {{getAdminUser(record.check, 'modifier') ? getAdminUser(record.check, 'modifier') : ""}}
683
+                        <span v-if="record.check != null ? record.dialysis_order.start_nurse != record.check.modifier : false">
684
+                            <span v-if="setAdminUserES(record.check, record.check == null ? 0 : 'modifier') == ''">
685
+                            {{ getAdminUser(record.check, record.check == null ? 0 : 'modifier') }}
686
+                            </span>
687
+                            <img style="height:30px;" :src="setAdminUserES(record.check, record.check == null ? 0 : 'modifier')" alt srcset v-else />
688
+                        </span>
689
+                        <span v-else>
690
+                            <span v-if="setAdminUserES(record.check, record.check == null ? 0 : 'creater') == ''">
691
+                            {{ getAdminUser(record.check, "creater") }}
692
+                            </span>
693
+                            <img style="height:30px;" :src="setAdminUserES(record.check, record.check == null ? 0 : 'creater')" alt srcset v-else />
444
                         </span>
694
                         </span>
445
-                        <img style="height:30px;" :src="setAdminUserES(record.check, 'modifier')" alt srcset v-else />
446
                         </span>
695
                         </span>
447
                         医生签名
696
                         医生签名
448
                         <span style="display: inline-block;width:100px;text-align: left;">
697
                         <span style="display: inline-block;width:100px;text-align: left;">
449
                         &nbsp;
698
                         &nbsp;
450
-                        <span v-if="setAdminUserES(record.prescription, 'creater') == ''">{{getAdminUser(record.prescription, 'creater')}}</span>
699
+                        <span v-if="setAdminUserES(record.summer, record.summer ? (record.summer.modifier ? 'modifier' : 'creater') : false) == ''">{{getAdminUser(record.summer, record.summer ? (record.summer.modifier ? 'modifier' : 'creater') : false)}}</span>
451
                         <span v-else>
700
                         <span v-else>
452
-                            <img class="es-img" style="height:30px;" :src="setAdminUserES(record.prescription, 'creater')" />
701
+                            <img class="es-img" style="height:30px;" :src="setAdminUserES(record.summer, record.summer ? (record.summer.modifier ? 'modifier' : 'creater') : false)" />
453
                         </span>
702
                         </span>
454
                         </span>
703
                         </span>
455
                         
704
                         
630
             var delghTwo = 0
879
             var delghTwo = 0
631
             if (
880
             if (
632
               this.records[recordIndex].advices &&
881
               this.records[recordIndex].advices &&
633
-              this.records[recordIndex].advices.length < 14
882
+              this.records[recordIndex].advices.length < 16
634
             ) {
883
             ) {
635
-              delghTwo = 14 - this.records[recordIndex].advices.length
884
+              delghTwo = 16 - this.records[recordIndex].advices.length
636
             } else {
885
             } else {
637
               delghTwo = 0
886
               delghTwo = 0
638
             }
887
             }
743
       })
992
       })
744
   },
993
   },
745
   methods: {
994
   methods: {
995
+    dialysateFormulationName(id) {
996
+      if (id in this.dialysateFormulationOptions) {
997
+        return this.dialysateFormulationOptions[id].name
998
+      }
999
+      return ''
1000
+    },
746
     getNewNumber(name, number) {
1001
     getNewNumber(name, number) {
747
       if (name.indexOf('区') > -1) {
1002
       if (name.indexOf('区') > -1) {
748
         return (
1003
         return (

+ 17 - 0
src/xt_pages/dialysis/bloodPresssWatch.vue View File

701
         this.search_mode = 2;
701
         this.search_mode = 2;
702
       } else {
702
       } else {
703
         this.search_mode = 1;
703
         this.search_mode = 1;
704
+        var date = new Date();
705
+        this.time = date;
706
+        var year = date.getFullYear();
707
+        var month = date.getMonth() + 1;
708
+        var day = date.getDate();
709
+        if (month < 10) {
710
+          month = "0" + month;
711
+        }
712
+        if (day < 10) {
713
+          day = "0" + day;
714
+        }
715
+        var nowDate = year + "-" + month + "-" + day;
716
+        var date = new Date(nowDate + " 00:00:00");
717
+        this.listQuery.schedul_time = date.getTime();
718
+        this.getAllZone();
719
+        this.getSchedualPatientList();
720
+        this.getTemplateInfo();
704
       }
721
       }
705
       this.$store.dispatch('SetSearchMode', this.search_mode)
722
       this.$store.dispatch('SetSearchMode', this.search_mode)
706
     },
723
     },

+ 2 - 2
src/xt_pages/dialysis/details/DialysisPrescription.vue View File

81
           <span class="content">{{
81
           <span class="content">{{
82
             target_ultrafiltration != "0" ? target_ultrafiltration : ""
82
             target_ultrafiltration != "0" ? target_ultrafiltration : ""
83
           }}</span>
83
           }}</span>
84
-          <span v-if="this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.org_id != 9555" class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
85
-          <span v-if="this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.org_id == 9555" class="unit">{{ target_ultrafiltration != "0" ? "ml" : "" }}</span>
84
+          <span v-if="this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.org_id != 9555" class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
85
+          <span v-if="this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.org_id == 9555" class="unit">{{ target_ultrafiltration != "0" ? "ml" : "" }}</span>
86
         </li>
86
         </li>
87
         <li v-if="isShow('葡萄糖')">
87
         <li v-if="isShow('葡萄糖')">
88
           <label>葡萄糖 : </label>
88
           <label>葡萄糖 : </label>

+ 2 - 2
src/xt_pages/dialysis/details/assessmentAfter.vue View File

17
           <span class="content" v-if="actual_ultrafiltration != '0'">{{
17
           <span class="content" v-if="actual_ultrafiltration != '0'">{{
18
             actual_ultrafiltration
18
             actual_ultrafiltration
19
           }}</span>
19
           }}</span>
20
-          <span class="unit" v-if=" actual_ultrafiltration != '0' && (this.$store.getters.xt_user.template_info.template_id == 6 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.org_id == 9555) " >ml</span>
21
-          <span class="unit" v-if=" actual_ultrafiltration != '0' && this.$store.getters.xt_user.template_info.template_id != 6 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30  &&  this.$store.getters.xt_user.template_info.org_id == 9555 " >L</span>
20
+          <span class="unit" v-if=" actual_ultrafiltration != '0' && (this.$store.getters.xt_user.template_info.template_id == 6 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.org_id == 9555) " >ml</span>
21
+          <span class="unit" v-if=" actual_ultrafiltration != '0' && this.$store.getters.xt_user.template_info.template_id != 6 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 &&  this.$store.getters.xt_user.template_info.org_id == 9555 " >L</span>
22
         </li>
22
         </li>
23
         <li v-if="isShow('导管')">
23
         <li v-if="isShow('导管')">
24
           <label>导管 : </label>
24
           <label>导管 : </label>

+ 1 - 1
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

28
           <el-col :span="8" v-if="isShow('实际超滤量')">
28
           <el-col :span="8" v-if="isShow('实际超滤量')">
29
             <el-form-item
29
             <el-form-item
30
               label="实际超滤量(ml): "
30
               label="实际超滤量(ml): "
31
-              v-if=" this.template_id == 6 || this.template_id == 9 || this.template_id == 10 || this.template_id == 11  || this.template_id == 17 || this.template_id == 20 || this.template_id == 21 || this.template_id == 22 || this.template_id == 23 || this.template_id == 24 || this.template_id == 26 || this.template_id == 28 || this.template_id == 27 || this.template_id == 29 || this.template_id == 30 || this.$store.getters.xt_user.template_info.org_id == 9555 "  >
31
+              v-if=" this.template_id == 6 || this.template_id == 9 || this.template_id == 10 || this.template_id == 11  || this.template_id == 17 || this.template_id == 20 || this.template_id == 21 || this.template_id == 22 || this.template_id == 23 || this.template_id == 24 || this.template_id == 26 || this.template_id == 28 || this.template_id == 27 || this.template_id == 29 || this.template_id == 30 || this.template_id == 31 || this.$store.getters.xt_user.template_info.org_id == 9555 "  >
32
               <el-input v-model="form.actual_ultrafiltration"></el-input>
32
               <el-input v-model="form.actual_ultrafiltration"></el-input>
33
             </el-form-item>
33
             </el-form-item>
34
             <el-form-item label="实际超滤量(L): " v-else>
34
             <el-form-item label="实际超滤量(L): " v-else>

+ 2 - 2
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

87
           </el-col>
87
           </el-col>
88
 
88
 
89
           <el-col :span="8"
89
           <el-col :span="8"
90
-                  v-if="isShows('目标超滤量') && (this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22  || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28  || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.org_id == 9555 )">
90
+                  v-if="isShows('目标超滤量') && (this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22  || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28  || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.org_id == 9555 )">
91
             <el-form-item label="目标超滤量(ml):">
91
             <el-form-item label="目标超滤量(ml):">
92
               <el-input
92
               <el-input
93
                 type="number"
93
                 type="number"
97
           </el-col>
97
           </el-col>
98
 
98
 
99
           <el-col :span="8"
99
           <el-col :span="8"
100
-                  v-if="isShows('目标超滤量')  && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.org_id != 9555 ">
100
+                  v-if="isShows('目标超滤量')  && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.org_id != 9555 ">
101
             <el-form-item label="目标超滤量(L):">
101
             <el-form-item label="目标超滤量(L):">
102
               <el-input
102
               <el-input
103
                 type="number"
103
                 type="number"

+ 8 - 6
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

160
                   template_id == 27 ||
160
                   template_id == 27 ||
161
                   template_id == 29 ||
161
                   template_id == 29 ||
162
                   template_id == 30 ||
162
                   template_id == 30 ||
163
+                  template_id == 31 ||
163
                   org_id == 9555)
164
                   org_id == 9555)
164
             "
165
             "
165
           >
166
           >
196
                 template_id != 27 &&
197
                 template_id != 27 &&
197
                 template_id != 29 &&
198
                 template_id != 29 &&
198
                 template_id != 30 &&
199
                 template_id != 30 &&
200
+                template_id != 31 &&
199
                 org_id!=9555
201
                 org_id!=9555
200
             "
202
             "
201
           >
203
           >
213
             align="center"
215
             align="center"
214
             label="超滤率(ml/h)"
216
             label="超滤率(ml/h)"
215
             width="100"
217
             width="100"
216
-            v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30) "
218
+            v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31) "
217
           >
219
           >
218
             <template slot-scope="scope">
220
             <template slot-scope="scope">
219
               {{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : ""  }}
221
               {{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : ""  }}
224
             align="center"
226
             align="center"
225
             label="超滤率(L/h)"
227
             label="超滤率(L/h)"
226
             width="100"
228
             width="100"
227
-            v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22  && template_id != 23 && template_id != 24 && template_id != 26 && template_id != 29 && template_id != 30"
229
+            v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22  && template_id != 23 && template_id != 24 && template_id != 26 && template_id != 29 && template_id != 30 && template_id != 31"
228
           >
230
           >
229
             <template slot-scope="scope">
231
             <template slot-scope="scope">
230
               {{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : ""  }}
232
               {{ scope.row.ultrafiltration_rate ? scope.row.ultrafiltration_rate : ""  }}
512
             </el-form-item>
514
             </el-form-item>
513
           </el-col>
515
           </el-col>
514
 
516
 
515
-          <el-col :span="8" v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30) ">
517
+          <el-col :span="8" v-if="isShow('超滤率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31) ">
516
             <el-form-item label="超滤率(ml/h)">
518
             <el-form-item label="超滤率(ml/h)">
517
               <el-input v-model="form.ultrafiltration_rate"></el-input>
519
               <el-input v-model="form.ultrafiltration_rate"></el-input>
518
             </el-form-item>
520
             </el-form-item>
519
           </el-col>
521
           </el-col>
520
-          <el-col :span="8" v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id != 29 && template_id != 30">
522
+          <el-col :span="8" v-if="isShow('超滤率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id != 29 && template_id != 30 && template_id != 31">
521
             <el-form-item label="超滤率(L/h)">
523
             <el-form-item label="超滤率(L/h)">
522
               <el-input v-model="form.ultrafiltration_rate"></el-input>
524
               <el-input v-model="form.ultrafiltration_rate"></el-input>
523
             </el-form-item>
525
             </el-form-item>
525
 
527
 
526
           <el-col
528
           <el-col
527
             :span="8"
529
             :span="8"
528
-            v-if=" isShow('超滤量') && (template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 29 || template_id == 30 || org_id == 9555) " >
530
+            v-if=" isShow('超滤量') && (template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || org_id == 9555) " >
529
             <el-form-item label="超滤量(ml):">
531
             <el-form-item label="超滤量(ml):">
530
               <el-input v-model="form.ultrafiltration_volume"></el-input>
532
               <el-input v-model="form.ultrafiltration_volume"></el-input>
531
             </el-form-item>
533
             </el-form-item>
533
 
535
 
534
           <el-col
536
           <el-col
535
             :span="8"
537
             :span="8"
536
-            v-if=" isShow('超滤量') && template_id != 6 && template_id !=9 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id!=27 && template_id!=29 && template_id!=30 && org_id !=9555" >
538
+            v-if=" isShow('超滤量') && template_id != 6 && template_id !=9 && template_id != 10 && template_id != 11 && template_id != 12 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id!=27 && template_id!=29 && template_id!=30 && template_id!=31 && org_id !=9555" >
537
             <el-form-item label="超滤量(L):">
539
             <el-form-item label="超滤量(L):">
538
               <el-input v-model="form.ultrafiltration_volume"></el-input>
540
               <el-input v-model="form.ultrafiltration_volume"></el-input>
539
             </el-form-item>
541
             </el-form-item>

+ 4 - 4
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
17
-          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || this.$store.getters.xt_user.template_info.org_id == 9555)" width="76px" > 超滤量(ml)</th>
18
-          <th v-if=" isShow('超滤量') && template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && this.$store.getters.xt_user.template_info.org_id != 9555"  width="76px"> 超滤量(L) </th>
19
-          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30)" width="50px"> 超滤率 <br />(ml/h) </th>
20
-          <th v-if="isShow('超滤率') && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30" width="50px"> 超滤率 <br />(L/h) </th>
17
+          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || this.$store.getters.xt_user.template_info.org_id == 9555)" width="76px" > 超滤量(ml)</th>
18
+          <th v-if=" isShow('超滤量') && template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && this.$store.getters.xt_user.template_info.org_id != 9555"  width="76px"> 超滤量(L) </th>
19
+          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31)" width="50px"> 超滤率 <br />(ml/h) </th>
20
+          <th v-if="isShow('超滤率') && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31" width="50px"> 超滤率 <br />(L/h) </th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29) " width="92px" > 置换率(ml/min) </th>
23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29) " width="92px" > 置换率(ml/min) </th>

+ 5 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderThirteen.vue View File

21
         </div>
21
         </div>
22
       </div>
22
       </div>
23
       <div class="row">
23
       <div class="row">
24
-        <div class="inline_block" style="margin-right:10px;">
24
+        <div class="inline_block" style="margin-right:5px;">
25
             日期 <div class="inline_block under_line" style="width:50px">{{ queryParams.xtdate.slice(0,4) }}</div>年
25
             日期 <div class="inline_block under_line" style="width:50px">{{ queryParams.xtdate.slice(0,4) }}</div>年
26
             <div class="inline_block under_line" style="width:50px">{{ queryParams.xtdate.slice(5,7) }}</div>月
26
             <div class="inline_block under_line" style="width:50px">{{ queryParams.xtdate.slice(5,7) }}</div>月
27
             <div class="inline_block under_line" style="width:50px">{{ queryParams.xtdate.slice(8,11) }}</div>日
27
             <div class="inline_block under_line" style="width:50px">{{ queryParams.xtdate.slice(8,11) }}</div>日
28
         </div>
28
         </div>
29
-        <div class="inline_block" style="margin-right:10px;">
29
+        <div class="inline_block" style="margin-right:5px;">
30
           姓名
30
           姓名
31
           <div class="inline_block under_line" style="width:80px;text-align: center;">
31
           <div class="inline_block under_line" style="width:80px;text-align: center;">
32
               {{ patientInfo.name ? patientInfo.name : "" }}
32
               {{ patientInfo.name ? patientInfo.name : "" }}
33
           </div>
33
           </div>
34
         </div>
34
         </div>
35
-        <div class="inline_block" style="margin-right:10px;">
35
+        <div class="inline_block" style="margin-right:5px;">
36
           性别&nbsp;&nbsp;&nbsp;&nbsp;
36
           性别&nbsp;&nbsp;&nbsp;&nbsp;
37
           <label-box :isChecked="patientInfo.gender == '男'" showValue="男" ></label-box>&nbsp;
37
           <label-box :isChecked="patientInfo.gender == '男'" showValue="男" ></label-box>&nbsp;
38
           <label-box :isChecked="patientInfo.gender == '女'" showValue="女" ></label-box>
38
           <label-box :isChecked="patientInfo.gender == '女'" showValue="女" ></label-box>
39
         </div>
39
         </div>
40
-        <div class="inline_block" style="margin-right:10px;">
40
+        <div class="inline_block" style="margin-right:5px;">
41
           年龄:
41
           年龄:
42
           <div class="under_line" style="width: 50px;text-align: center">
42
           <div class="under_line" style="width: 50px;text-align: center">
43
               {{ getNewAge(patientInfo.id_card_no) }}
43
               {{ getNewAge(patientInfo.id_card_no) }}
44
           </div>
44
           </div>
45
45
46
         </div>
46
         </div>
47
-        <div class="inline_block" style="margin-right:10px;">
47
+        <div class="inline_block" style="margin-right:5px;">
48
             机器编号
48
             机器编号
49
             <div class="inline_block under_line" style="width:80px;">
49
             <div class="inline_block under_line" style="width:80px;">
50
             {{ getNumber() }}
50
             {{ getNumber() }}

+ 2 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderThirtyOne.vue View File

236
               预设脱水
236
               预设脱水
237
               <div class="inline_block under_line" style="width:100px;">
237
               <div class="inline_block under_line" style="width:100px;">
238
                   {{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : ' ' }}
238
                   {{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : ' ' }}
239
-              </div>kg
239
+              </div>ml
240
           </div>
240
           </div>
241
       </div>
241
       </div>
242
       <div class="row">
242
       <div class="row">
259
               实际脱水
259
               实际脱水
260
               <div class="inline_block under_line" style="width:100px;">
260
               <div class="inline_block under_line" style="width:100px;">
261
                   {{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : " " }}
261
                   {{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : " " }}
262
-              </div>kg
262
+              </div>ml
263
           </div>
263
           </div>
264
           <div class="inline_block" style="margin-right:30px;">
264
           <div class="inline_block" style="margin-right:30px;">
265
               电导度
265
               电导度