Browse Source

新分支

28169 1 year ago
parent
commit
ff3ce2f837

+ 173 - 16
src/xt_pages/device/airDisinfectTwo.vue View File

@@ -54,7 +54,13 @@
54 54
                 </el-table-column>
55 55
                 <el-table-column prop="date" label="责任人" align="center" min-width="50">
56 56
                     <template slot-scope="scope">
57
-                      {{getName(scope.row.first_creator)}}
57
+                     <span v-if="setAdminUserES(scope.row.first_creator?scope.row.first_creator:scope.row.first_creator) == ''">
58
+                        {{getName(scope.row.first_creator)}}
59
+                     </span>
60
+                    <span v-else>
61
+                        <img style="height:30px;" :src="setAdminUserES(scope.row.first_creator?scope.row.first_creator:scope.row.first_creator)" alt="" srcset="">
62
+                    </span>     
63
+                    
58 64
                     </template>
59 65
                 </el-table-column>
60 66
 
@@ -70,7 +76,13 @@
70 76
                 </el-table-column>
71 77
                 <el-table-column prop="city" label="负责人" align="center" min-width="50">
72 78
                     <template slot-scope="scope">
73
-                        {{getName(scope.row.first_creator)}}
79
+                        <!-- {{getName(scope.row.first_creator)}} -->
80
+                        <span v-if="setAdminUserES(scope.row.sencond_creator?scope.row.sencond_creator:scope.row.sencond_creator) == ''">
81
+                        {{getName(scope.row.sencond_creator)}}
82
+                     </span>
83
+                    <span v-else>
84
+                        <img style="height:30px;" :src="setAdminUserES(scope.row.sencond_creator?scope.row.sencond_creator:scope.row.sencond_creator)" alt="" srcset="">
85
+                    </span>     
74 86
                    </template>
75 87
                 </el-table-column>
76 88
 
@@ -86,7 +98,13 @@
86 98
                 </el-table-column>
87 99
                 <el-table-column prop="city" label="负责人" align="center" min-width="50">
88 100
                     <template slot-scope="scope">
89
-                        {{getName(scope.row.sencond_creator)}}
101
+                        <!-- {{getName(scope.row.sencond_creator)}} -->
102
+                    <span v-if="setAdminUserES(scope.row.third_creator?scope.row.third_creator:scope.row.third_creator) == ''">
103
+                        {{getName(scope.row.third_creator)}}
104
+                     </span>
105
+                    <span v-else>
106
+                        <img style="height:30px;" :src="setAdminUserES(scope.row.third_creator?scope.row.third_creator:scope.row.third_creator)" alt="" srcset="">
107
+                    </span>     
90 108
                     </template>
91 109
                 </el-table-column>
92 110
 
@@ -97,7 +115,13 @@
97 115
                 </el-table-column>
98 116
                 <el-table-column prop="province" label="负责人" align="center" min-width="60">
99 117
                     <template slot-scope="scope">
100
-                        {{getName(scope.row.third_creator)}}
118
+                        <!-- {{getName(scope.row.third_creator)}} -->
119
+                        <span v-if="setAdminUserES(scope.row.last_creator?scope.row.last_creator:scope.row.last_creator) == ''">
120
+                            {{getName(scope.row.third_creator)}}
121
+                        </span>
122
+                        <span v-else>
123
+                            <img style="height:30px;" :src="setAdminUserES(scope.row.last_creator?scope.row.last_creator:scope.row.last_creator)" alt="" srcset="">
124
+                        </span>     
101 125
                     </template>
102 126
                 </el-table-column>
103 127
                 <el-table-column prop="city" label="操作" align="center" min-width="150">
@@ -146,10 +170,26 @@
146 170
                   </div>
147 171
                   <div class="form_title"><span >透析室</span></div>
148 172
                   <el-form-item label="消毒液" label-width="110px">
149
-                      <el-input v-model="form.first_disinfection_water"></el-input>
173
+                      <!-- <el-input v-model="form.first_disinfection_water"></el-input> -->
174
+                      <el-select v-model="form.first_disinfection_water" placeholder="请选择">
175
+                          <el-option
176
+                          v-for="(item,index) in disInfectionWaterList"
177
+                          :key="index"
178
+                          :label="item.name"
179
+                          :value="item.name">
180
+                          </el-option>
181
+                      </el-select>
150 182
                   </el-form-item>
151 183
                   <el-form-item label="消毒方式" label-width="110px">
152
-                      <el-input v-model="form.first_disinfection_methods"></el-input>
184
+                      <!-- <el-input v-model="form.first_disinfection_methods"></el-input> -->
185
+                      <el-select v-model="form.first_disinfection_methods" placeholder="请选择">
186
+                          <el-option
187
+                          v-for="(item,index) in DisinfectionMode"
188
+                          :key="index"
189
+                          :label="item.name"
190
+                          :value="item.name">
191
+                          </el-option>
192
+                      </el-select>
153 193
                   </el-form-item>
154 194
                   <el-form-item label="消毒时间(h)" label-width="110px">
155 195
                       <el-input v-model="form.first_disinfection_time " ></el-input>
@@ -207,10 +247,26 @@
207 247
 
208 248
                   <div class="form_title"><span >治疗室</span></div>
209 249
                   <el-form-item label="消毒液" label-width="110px">
210
-                      <el-input v-model="form.sencond_disinfection_water"></el-input>
250
+                      <!-- <el-input v-model="form.sencond_disinfection_water"></el-input> -->
251
+                      <el-select v-model="form.sencond_disinfection_water" placeholder="请选择">
252
+                          <el-option
253
+                          v-for="(item,index) in disInfectionWaterList"
254
+                          :key="index"
255
+                          :label="item.name"
256
+                          :value="item.name">
257
+                          </el-option>
258
+                      </el-select>
211 259
                   </el-form-item>
212 260
                   <el-form-item label="消毒方式" label-width="110px">
213
-                      <el-input v-model="form.sencond_disinfection_methods"></el-input>
261
+                      <!-- <el-input v-model="form.sencond_disinfection_methods"></el-input> -->
262
+                      <el-select v-model="form.sencond_disinfection_methods" placeholder="请选择">
263
+                          <el-option
264
+                          v-for="(item,index) in DisinfectionMode"
265
+                          :key="index"
266
+                          :label="item.name"
267
+                          :value="item.name">
268
+                          </el-option>
269
+                      </el-select>
214 270
                   </el-form-item>
215 271
                   <el-form-item label="消毒时间(h)" label-width="110px">
216 272
                       <el-input v-model="form.sencond_disinfection_time " ></el-input>
@@ -268,10 +324,26 @@
268 324
 
269 325
                   <div class="form_title"><span >水处理、库房</span></div>
270 326
                   <el-form-item label="消毒液" label-width="110px">
271
-                      <el-input v-model="form.third_disinfection_water"></el-input>
327
+                      <!-- <el-input v-model="form.third_disinfection_water"></el-input> -->
328
+                      <el-select v-model="form.third_disinfection_water" placeholder="请选择">
329
+                          <el-option
330
+                          v-for="(item,index) in disInfectionWaterList"
331
+                          :key="index"
332
+                          :label="item.name"
333
+                          :value="item.name">
334
+                          </el-option>
335
+                      </el-select>
272 336
                   </el-form-item>
273 337
                   <el-form-item label="消毒方式" label-width="110px">
274
-                      <el-input v-model="form.third_disinfection_methods"></el-input>
338
+                      <!-- <el-input v-model="form.third_disinfection_methods"></el-input> -->
339
+                      <el-select v-model="form.third_disinfection_methods" placeholder="请选择">
340
+                          <el-option
341
+                          v-for="(item,index) in DisinfectionMode"
342
+                          :key="index"
343
+                          :label="item.name"
344
+                          :value="item.name">
345
+                          </el-option>
346
+                      </el-select>
275 347
                   </el-form-item>
276 348
                   <el-form-item label="消毒时间(h)" label-width="110px">
277 349
                       <el-input v-model="form.third_disinfection_time " ></el-input>
@@ -404,10 +476,26 @@
404 476
                   </div>
405 477
                   <div class="form_title"><span >透析室</span></div>
406 478
                   <el-form-item label="消毒液" label-width="110px">
407
-                      <el-input v-model="form.first_disinfection_water"></el-input>
479
+                      <!-- <el-input v-model="form.first_disinfection_water"></el-input> -->
480
+                      <el-select v-model="form.first_disinfection_water" placeholder="请选择">
481
+                          <el-option
482
+                          v-for="(item,index) in disInfectionWaterList"
483
+                          :key="index"
484
+                          :label="item.name"
485
+                          :value="item.name">
486
+                          </el-option>
487
+                      </el-select>
408 488
                   </el-form-item>
409 489
                   <el-form-item label="消毒方式" label-width="110px">
410
-                      <el-input v-model="form.first_disinfection_methods"></el-input>
490
+                      <!-- <el-input v-model="form.first_disinfection_methods"></el-input> -->
491
+                      <el-select v-model="form.first_disinfection_methods" placeholder="请选择">
492
+                          <el-option
493
+                          v-for="(item,index) in DisinfectionMode"
494
+                          :key="index"
495
+                          :label="item.name"
496
+                          :value="item.name">
497
+                          </el-option>
498
+                      </el-select>
411 499
                   </el-form-item>
412 500
                   <el-form-item label="消毒时间(h)" label-width="110px">
413 501
                       <el-input v-model="form.first_disinfection_time " ></el-input>
@@ -463,10 +551,26 @@
463 551
                   </el-form-item>
464 552
                   <div class="form_title"><span >治疗室</span></div>
465 553
                   <el-form-item label="消毒液" label-width="110px">
466
-                      <el-input v-model="form.sencond_disinfection_water"></el-input>
554
+                      <!-- <el-input v-model="form.sencond_disinfection_water"></el-input> -->
555
+                      <el-select v-model="form.sencond_disinfection_water" placeholder="请选择">
556
+                          <el-option
557
+                          v-for="(item,index) in disInfectionWaterList"
558
+                          :key="index"
559
+                          :label="item.name"
560
+                          :value="item.name">
561
+                          </el-option>
562
+                      </el-select>
467 563
                   </el-form-item>
468 564
                   <el-form-item label="消毒方式" label-width="110px">
469
-                      <el-input v-model="form.sencond_disinfection_methods"></el-input>
565
+                      <!-- <el-input v-model="form.sencond_disinfection_methods"></el-input> -->
566
+                      <el-select v-model="form.sencond_disinfection_methods" placeholder="请选择">
567
+                          <el-option
568
+                          v-for="(item,index) in DisinfectionMode"
569
+                          :key="index"
570
+                          :label="item.name"
571
+                          :value="item.name">
572
+                          </el-option>
573
+                      </el-select>
470 574
                   </el-form-item>
471 575
                   <el-form-item label="消毒时间(h)" label-width="110px">
472 576
                       <el-input v-model="form.sencond_disinfection_time " ></el-input>
@@ -522,10 +626,26 @@
522 626
                   </el-form-item>
523 627
                   <div class="form_title"><span >水处理、库房</span></div>
524 628
                   <el-form-item label="消毒液" label-width="110px">
525
-                      <el-input v-model="form.third_disinfection_water"></el-input>
629
+                      <!-- <el-input v-model="form.third_disinfection_water"></el-input> -->
630
+                      <el-select v-model="form.third_disinfection_water" placeholder="请选择">
631
+                          <el-option
632
+                          v-for="(item,index) in disInfectionWaterList"
633
+                          :key="index"
634
+                          :label="item.name"
635
+                          :value="item.name">
636
+                          </el-option>
637
+                      </el-select>
526 638
                   </el-form-item>
527 639
                   <el-form-item label="消毒方式" label-width="110px">
528
-                      <el-input v-model="form.third_disinfection_methods"></el-input>
640
+                      <!-- <el-input v-model="form.third_disinfection_methods"></el-input> -->
641
+                      <el-select v-model="form.sencond_disinfection_methods" placeholder="请选择">
642
+                          <el-option
643
+                          v-for="(item,index) in DisinfectionMode"
644
+                          :key="index"
645
+                          :label="item.name"
646
+                          :value="item.name">
647
+                          </el-option>
648
+                      </el-select>
529 649
                   </el-form-item>
530 650
                   <el-form-item label="消毒时间(h)" label-width="110px">
531 651
                       <el-input v-model="form.third_disinfection_time " ></el-input>
@@ -770,6 +890,20 @@
770 890
          total:0,
771 891
          tableData: [],
772 892
          hiddenShow:false,
893
+         disInfectionWaterList:[
894
+         { id: 1, name: "0.22%季铵盐" },
895
+         { id: 2, name: "500mg/l含氯消毒剂" },
896
+         { id: 3, name: "1000mg/l含氯消毒剂" },
897
+         { id: 4, name: "1500mg/l含氯消毒剂" },
898
+         { id: 5, name: "消毒湿巾" }   
899
+         ],
900
+         DisinfectionMode: [
901
+            { id: 1, name: "化学消毒" },
902
+            { id: 2, name: "热消毒" },
903
+            { id: 3, name: "化学消毒+热消毒" }
904
+         ],
905
+         operators: [],
906
+         operatorMaps:{},
773 907
         }
774 908
       },
775 909
       created(){
@@ -799,7 +933,18 @@
799 933
                var list = response.data.data.list
800 934
                console.log("list222222",list)
801 935
                this.docList = list
936
+               this.operators = response.data.data.operators
937
+            if (this.operators.length > 0) {
938
+                var operatorsLen = this.operators.length
939
+                for (var index = 0; index < operatorsLen; index++) {
940
+                this.$set(
941
+                    this.operatorMaps,
942
+                    this.operators[index].id,
943
+                    this.operators[index]
944
+                )
945
+                }
802 946
             }
947
+           }
803 948
           })  
804 949
         },
805 950
         saveNewAirDisinfect(formName){
@@ -1037,6 +1182,18 @@
1037 1182
               });
1038 1183
             }, 1);
1039 1184
          },
1185
+         setAdminUserES(id) {
1186
+            if (id === 0) {
1187
+            return ''
1188
+            }
1189
+            if (id in this.operatorMaps) {
1190
+            
1191
+            return this.operatorMaps[id].url
1192
+            
1193
+            } else {
1194
+            return ''
1195
+            }
1196
+        },
1040 1197
       }
1041 1198
     }
1042 1199
   </script>

+ 5 - 5
src/xt_pages/dialysis/batch_print/batch_print_order_fiftyOne.vue View File

@@ -2397,7 +2397,7 @@
2397 2397
                             v-if="!record.check"
2398 2398
                           ></div>
2399 2399
                         </div> -->
2400
-                        <div class="inline_block" style="flex: 1">
2400
+                        <!-- <div class="inline_block" style="flex: 1">
2401 2401
                           下机护士:
2402 2402
                           <div
2403 2403
                             class="under_line"
@@ -2436,12 +2436,12 @@
2436 2436
                               style="height: 40px"
2437 2437
                             />
2438 2438
                           </div>
2439
-                        </div>
2440
-                          <!-- <div class="inline_block" style="flex: 1">
2439
+                        </div> -->
2440
+                          <div class="inline_block" style="flex: 1">
2441 2441
                           患者签名:
2442 2442
                           <div
2443 2443
                             class="under_line"
2444
-                            style="width: 80px; text-align: center"
2444
+                            style="width: 70px; text-align: center"
2445 2445
                           >
2446 2446
                            
2447 2447
                             <img
@@ -2453,7 +2453,7 @@
2453 2453
                               style="height: 40px"
2454 2454
                             />
2455 2455
                           </div>
2456
-                        </div> -->
2456
+                        </div>
2457 2457
                         <div class="inline_block" style="flex: 1">
2458 2458
                           治疗医生:
2459 2459
                           <div

+ 268 - 324
src/xt_pages/dialysis/batch_print/batch_print_order_fiftyThree.vue View File

@@ -204,43 +204,37 @@
204 204
                       colspan="2"
205 205
                     >
206 206
                       治疗方式:
207
-                      <label-box
208
-                        :isChecked="record&&record.prescription.mode_id == 1 ? true : false"
209
-                        showValue="HD"
207
+                     
208
+                      <check-box
209
+                        text="HD" 
210
+                        :checked="record&&record.prescription.mode_id == 1"
210 211
                       >
211
-                      </label-box>
212
-                      <label-box
213
-                        :isChecked="record&&record.prescription.mode_id == 2 ? true : false"
214
-                        showValue="HDF"
215
-                      ></label-box>
216
-                      (<label-box
217
-                        :isChecked="
218
-                          record&&record.prescription.mode_id == 2 &&
219
-                          record&&record.prescription.displace_liqui_part == 1
220
-                            ? true
221
-                            : false
222
-                        "
223
-                        showValue="前稀释"
224
-                      ></label-box>
225
-                      <label-box
226
-                        :isChecked="
227
-                          record&&record.prescription.mode_id == 2 &&
228
-                          record&&record.prescription.displace_liqui_part == 2
229
-                            ? true
230
-                            : false
231
-                        "
232
-                        showValue="后稀释"
233
-                      ></label-box>
212
+                     
213
+                      </check-box>
214
+
215
+                      <check-box
216
+                       :checked="record&&record.prescription.mode_id == 2"
217
+                        text="HDF"
218
+                      ></check-box>
219
+
220
+                      (<check-box
221
+                      :checked="record&&record.prescription.mode_id == 2 &&  record&&record.prescription.displace_liqui_part == 1"
222
+                        text="前稀释"
223
+                      ></check-box>
224
+                      <check-box
225
+                      :checked="record&&record.prescription.mode_id == 2 &&  record&&record.prescription.displace_liqui_part == 2"
226
+                        text="后稀释"
227
+                      ></check-box>
234 228
                       , 置换量:&nbsp;{{
235 229
                         record&&record.prescription.displace_liqui_value
236 230
                           ? record&&record.prescription.displace_liqui_value
237 231
                           : "/"
238 232
                       }}L&nbsp; )
239 233
 
240
-                      <label-box
241
-                        :isChecked="record&&record.prescription.mode_id > 2 ? true : false"
242
-                        showValue="其他:"
243
-                      ></label-box>
234
+                      <check-box
235
+                       :checked="record&&record.prescription.mode_id > 2" 
236
+                        text="其他"
237
+                      ></check-box>
244 238
                       &nbsp;
245 239
                       <span v-if="record&&record.prescription.mode_id > 2">
246 240
                         {{ record&&record.prescription.mode }}
@@ -264,27 +258,22 @@
264 258
 
265 259
                     <td colspan="12" style="padding-left: 10px">
266 260
                       治疗抗凝:
267
-                      <label-box
268
-                        v-if="record&&record.prescription.anticoagulant == 3"
269
-                        :isChecked="
270
-                          record&&record.prescription.anticoagulant == 3 ? true : false
271
-                        "
272
-                        showValue="低分子肝素:"
273
-                      ></label-box>
274
-                      <label-box
261
+                      <check-box
262
+                       :checked="record&&record.prescription.anticoagulant == 3" 
263
+                        text="低分子肝素"
264
+                      ></check-box>
265
+                     
266
+                      <check-box
275 267
                         v-if="record&&record.prescription.anticoagulant == 6"
276
-                        :isChecked="
277
-                          record&&record.prescription.anticoagulant == 6 ? true : false
278
-                        "
279
-                        showValue="低分子肝素钙:"
280
-                      ></label-box>
281
-                      <label-box
268
+                        :checked="record&&record.prescription.anticoagulant == 6" 
269
+                        text="低分子肝素钙:"
270
+                      ></check-box>
271
+                  
272
+                      <check-box
282 273
                         v-if="record&&record.prescription.anticoagulant == 7"
283
-                        :isChecked="
284
-                          record&&record.prescription.anticoagulant == 7 ? true : false
285
-                        "
286
-                        showValue="低分子肝素钠:"
287
-                      ></label-box>
274
+                        :checked="record&&record.prescription.anticoagulant == 7" 
275
+                        text="低分子肝素钠:"
276
+                      ></check-box>
288 277
 
289 278
                       &nbsp;&nbsp;{{
290 279
                         record&&record.prescription.anticoagulant_zongliang &&
@@ -294,13 +283,13 @@
294 283
                           ? record&&record.prescription.anticoagulant_zongliang
295 284
                           : ""
296 285
                       }}iu;&nbsp;&nbsp;
297
-                      <label-box
298
-                        :isChecked="
299
-                          record&&record.prescription.anticoagulant == 2 ? true : false
300
-                        "
301
-                        showValue="普通肝素:"
302
-                      ></label-box
303
-                      >首剂 &nbsp;&nbsp;<span
286
+                    
287
+                      <check-box
288
+                        v-if="record&&record.prescription.anticoagulant == 2"
289
+                        :checked="record&&record.prescription.anticoagulant == 2" 
290
+                        text="普通肝素:"
291
+                      ></check-box>
292
+                      首剂 &nbsp;&nbsp;<span
304 293
                         ><span style="width: 35px; display: inline-block">
305 294
                           {{
306 295
                             record&&record.prescription.anticoagulant_shouji &&
@@ -309,8 +298,7 @@
309 298
                               ? record&&record.prescription.anticoagulant_shouji
310 299
                               : ""
311 300
                           }}
312
-                        </span></span
313
-                      >
301
+                        </span></span>
314 302
                       &nbsp;mg&nbsp;&nbsp;&nbsp; 追加&nbsp;&nbsp;<span>{{
315 303
                         record&&record.prescription.anticoagulant_weichi &&
316 304
                         record&&record.prescription.anticoagulant == 2
@@ -324,26 +312,23 @@
324 312
                           : ""
325 313
                       }}</span
326 314
                       >&nbsp;&nbsp;mg;
327
-                      <label-box
328
-                        :isChecked="
329
-                          record&&record.prescription.anticoagulant == 1 ? true : false
330
-                        "
331
-                        showValue="无肝素"
332
-                      ></label-box
333
-                      >&nbsp;&nbsp;
334
-                      <label-box
335
-                        :isChecked="
336
-                          record&&record.prescription.anticoagulant != 1 &&
337
-                          record&&record.prescription.anticoagulant != 2 &&
338
-                          record&&record.prescription.anticoagulant != 3 &&
339
-                          record&&record.prescription.anticoagulant != 6 &&
340
-                          record&&record.prescription.anticoagulant != 7 &&
341
-                          record&&record.prescription.anticoagulant != 0
342
-                            ? true
343
-                            : false
344
-                        "
345
-                        showValue="其他"
346
-                      ></label-box>
315
+                    
316
+                      <check-box
317
+                        v-if="record&&record.prescription.anticoagulant == 1"
318
+                        :checked="record&&record.prescription.anticoagulant == 1" 
319
+                        text="无肝素"
320
+                      ></check-box>&nbsp;&nbsp;
321
+                      <check-box
322
+                        v-if="record&&record.prescription.anticoagulant == 1"
323
+                        :checked=" record&&record.prescription.anticoagulant != 1 && 
324
+                        record&&record.prescription.anticoagulant != 2 &&
325
+                        record&&record.prescription.anticoagulant != 3 &&
326
+                        record&&record.prescription.anticoagulant != 6&&
327
+                        record&&record.prescription.anticoagulant != 7 &&
328
+                        record&&record.prescription.anticoagulant != 0" 
329
+                        text="其他"
330
+                      ></check-box>&nbsp;&nbsp;
331
+                     
347 332
                       <span style="padding-left: 10px">
348 333
                         <span
349 334
                           style="
@@ -488,96 +473,60 @@
488 473
                       <div style="display: flex; justify-content: flex-start">
489 474
                         <div style="width: 100%">
490 475
                           血管通路: &nbsp;
491
-                          <label-box
492
-                            :isChecked="
493
-                              record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
494
-                                '自体内瘘'
495
-                              ) > -1
496
-                                ? true
497
-                                : false
498
-                            "
499
-                            showValue="自体内瘘"
500
-                          ></label-box>
476
+                        
477
+
478
+                          <check-box
479
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('自体内瘘') > -1" 
480
+                            text="自体内瘘"
481
+                          ></check-box>
501 482
                           &nbsp;
502
-                          <label-box
503
-                            :isChecked="
504
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
505
-                                '人造血管'
506
-                              ) > -1
507
-                                ? true
508
-                                : false
509
-                            "
510
-                            showValue="人造血管"
511
-                          ></label-box>
512
-                          &nbsp; &nbsp;
513
-                          <label-box
514
-                            :isChecked="
515
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
516
-                                '直穿'
517
-                              ) > -1
518
-                                ? true
519
-                                : false
520
-                            "
521
-                            showValue="直穿"
522
-                          ></label-box>
483
+                          <check-box
484
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('人造血管') > -1" 
485
+                            text="人造血管"
486
+                          ></check-box>
523 487
                           &nbsp;
524
-                          <label-box
525
-                            :isChecked="
526
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
527
-                                '颈内静脉'
528
-                              ) > -1
529
-                                ? true
530
-                                : false
531
-                            "
532
-                            showValue="颈内静脉"
533
-                          ></label-box>
488
+                          <check-box
489
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('直穿') > -1" 
490
+                            text="直穿"
491
+                          ></check-box>
534 492
                           &nbsp;
535
-                          <label-box
536
-                            :isChecked="
537
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
538
-                                '股静脉'
539
-                              ) > -1
540
-                                ? true
541
-                                : false
542
-                            "
543
-                            showValue="股静脉"
544
-                          ></label-box>
493
+
494
+                          <check-box
495
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('颈内静脉') > -1" 
496
+                            text="颈内静脉"
497
+                          ></check-box>
545 498
                           &nbsp;
546
-                          <label-box
547
-                            :isChecked="
548
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
549
-                                '锁骨下'
550
-                              ) > -1
551
-                                ? true
552
-                                : false
553
-                            "
554
-                            showValue="锁骨下"
555
-                          ></label-box>
499
+                       
500
+
501
+                          
502
+                          <check-box
503
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('股静脉') > -1" 
504
+                            text="股静脉"
505
+                          ></check-box>
556 506
                           &nbsp;
557
-                          <label-box
558
-                            :isChecked="
559
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
560
-                                '锁骨下'
561
-                              ) == -1 &&
562
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
563
-                                '股静脉'
564
-                              ) == -1 &&
565
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
566
-                                '颈内静脉'
567
-                              ) == -1 &&
568
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
569
-                                '人造血管'
570
-                              ) == -1 &&
571
-                               record&&record.assessment_before_dislysis.blood_access_part_id.indexOf(
572
-                                '自体内瘘'
573
-                              ) == -1 &&
574
-                               record&&record.assessment_before_dislysis.blood_access_part_id != ''
575
-                                ? true
576
-                                : false
577
-                            "
578
-                            showValue="其他"
579
-                          ></label-box>
580
-                          <span style="padding-left: 20px">
507
+
508
+                          <check-box
509
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('锁骨下') > -1" 
510
+                            text="锁骨下"
511
+                          ></check-box>
512
+                          &nbsp;
513
+
514
+
515
+                          
516
+                          <check-box
517
+                            :checked="record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('锁骨下') == -1
518
+                            && record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('股静脉') == -1
519
+                            && record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('颈内静脉') == -1
520
+                            && record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('人造血管') == -1
521
+                            && record&&record.assessment_before_dislysis.blood_access_part_id.indexOf('自体内瘘') == -1
522
+                            " 
523
+                             
524
+                             text="其他"
525
+                          ></check-box>
526
+                          &nbsp;
527
+                         
528
+                    
529
+                          <span style="padding-left:10px">
581 530
                             <span
582 531
                               style="
583 532
                                 display: inline-block;
@@ -828,177 +777,173 @@
828 777
             </tr>
829 778
             <tr style="transform: translateY(4px)">
830 779
                 <td colspan="11">
831
-                <table  class="inside_table" border="1" style="text-align: center">
832
-                    <tr>
833
-                    <td style="height: 20px" width="60">
834
-                        <p style="height: 20px; line-height: 20px">时间</p>
780
+                  <table  class="inside_table" border="1" style="text-align: center">
781
+                      <tr>
782
+                      <td style="height: 20px" width="60">
783
+                          <p style="height: 20px; line-height: 20px">时间</p>
784
+                      </td>
785
+                    
786
+                      <td style="height: 20px" width="344">
787
+                          <p style="height: 20px; line-height: 20px">医嘱执行记录</p>
788
+                      </td>
789
+                  
790
+                  
791
+                      <td style="height: 20px" width="90">
792
+                          <p style="height: 20px; line-height: 20px">执行</p>
793
+                      </td>
794
+                      <td style="height: 20px" width="90">
795
+                          <p style="height: 20px; line-height: 20px">核对</p>
796
+                      </td>
797
+                      <td style="height: 20px" width="144">
798
+                          <p style="height: 20px; line-height: 20px">上次透后体重</p>
799
+                      </td>
800
+                      <td style="height: 20px" width="60">
801
+                          {{
802
+                          record.patient.total_dialysis +
803
+                              record.patient.user_sys_before_count >
804
+                          0
805
+                              ? record.assessment_after_dislysis.weight_after
806
+                              : "/"
807
+                          }}kg
808
+                      </td>
809
+                      </tr>
810
+                      <tr v-for="(advice, advice_index) in record.advices" :key="advice_index" style="transform: translateY(3px)">
811
+            
812
+                    <td width="60">
813
+                      {{ getTime(advice[0].start_time, "{h}:{i}") }}
835 814
                     </td>
836
-                   
837
-                    <td style="height: 20px" width="344">
838
-                        <p style="height: 20px; line-height: 20px">医嘱执行记录</p>
815
+                  
816
+                    <td style="text-align: left; padding-left: 5px" width="340">
817
+                      <span v-if="advice[0].parent_id > 0">---></span>
818
+                      <span>{{ advice[0].advice_name }}</span>
819
+                      <span v-if="advice && advice[0].advice_desc"
820
+                        >({{ advice[0].advice_desc
821
+                        }}{{ advice[0].drug_spec_unit }})</span
822
+                      >
823
+                      <span v-if="advice[0].prescribing_number"
824
+                        >&nbsp;&nbsp; {{ advice[0].prescribing_number
825
+                        }}{{ advice[0].prescribing_number_unit }}</span
826
+                      >
827
+                      <span v-if="advice[0].single_dose != 0"
828
+                        >{{ advice[0].single_dose
829
+                        }}{{ advice[0].single_dose_unit }}</span
830
+                      >
831
+
832
+                      <span v-if="advice[0].parent_id == 0">{{
833
+                        advice[0].delivery_way
834
+                      }}</span>
835
+                      <span v-if="advice[0].parent_id == 0">{{
836
+                        advice[0].execution_frequency
837
+                      }}</span>
838
+                      <span>{{ advice[0].remark }}</span>
839 839
                     </td>
840
-                 
841 840
                 
842
-                    <td style="height: 20px" width="90">
843
-                        <p style="height: 20px; line-height: 20px">执行</p>
841
+                  
842
+                    <td style="line-height: 10px" width="90">
843
+                      <span v-if="setAdminUserES(advice[0].execution_staff) == ''">{{
844
+                        getAdminUser(advice[0].execution_staff)
845
+                      }}</span>
846
+                      <img
847
+                        style="height: 30px"
848
+                        :src="setAdminUserES(advice[0].execution_staff)"
849
+                        alt=""
850
+                        srcset=""
851
+                      />
844 852
                     </td>
845
-                    <td style="height: 20px" width="90">
846
-                        <p style="height: 20px; line-height: 20px">核对</p>
853
+                    <td style="line-height: 30px" width="90">
854
+                      <span v-if="setAdminUserES(advice[0].checker) == ''">{{
855
+                        getAdminUser(advice[0].checker)
856
+                      }}</span>
857
+                      <img
858
+                        style="height: 30px"
859
+                        :src="setAdminUserES(advice[0].checker)"
860
+                        alt=""
861
+                        srcset=""
862
+                        v-else
863
+                      />
847 864
                     </td>
848
-                    <td style="height: 20px" width="144">
849
-                        <p style="height: 20px; line-height: 20px">上次透后体重</p>
865
+
866
+                    <td v-if="advice_index === 0" width="145">透前体重:</td>
867
+                    <td v-if="advice_index === 0" width="60">
868
+                      {{record.patient.total_dialysis +record.patient.user_sys_before_count>0? record.assessment_before_dislysis.weight_before: "/"}}kg
850 869
                     </td>
851
-                    <td style="height: 20px" width="60">
852
-                        {{
870
+                    <td v-if="advice_index === 1" width="145">体重增加量:</td>
871
+                    <td v-if="advice_index === 1" width="60">
872
+                      {{
873
+                        record.assessment_after_dislysis.weight_after == 0 ||
874
+                        record.assessment_before_dislysis.weight_before == 0
875
+                          ? 0
876
+                          : (
877
+                              record.assessment_before_dislysis.weight_before -
878
+                              record.assessment_after_dislysis.weight_after
879
+                            ).toFixed(2)
880
+                      }}kg
881
+                    </td>
882
+                    <td v-if="advice_index === 2" width="145">干体重(DW):</td>
883
+                    <td v-if="advice_index === 2" width="60">
884
+                      {{
853 885
                         record.patient.total_dialysis +
854
-                            record.patient.user_sys_before_count >
886
+                          record.patient.user_sys_before_count >
855 887
                         0
856
-                            ? record.assessment_after_dislysis.weight_after
857
-                            : "/"
858
-                        }}kg
888
+                          ? record.assessment_before_dislysis.dry_weight
889
+                          : "/"
890
+                      }}kg
859 891
                     </td>
860
-                    </tr>
861
-                    
862
-                </table>
892
+                    <td v-if="advice_index === 3" width="145">较干体重增加量:</td>
893
+                    <td v-if="advice_index === 3" width="60">
894
+                      {{
895
+                        record.patient.total_dialysis +
896
+                          record.patient.user_sys_before_count >
897
+                          0 && record.assessment_after_dislysis.weight_after != 0
898
+                          ? (
899
+                              record.assessment_after_dislysis.weight_after - record.assessment_before_dislysis.dry_weight
900
+                            ).toFixed(2)
901
+                          : 0
902
+                      }}kg
903
+                    </td>
904
+                    <td v-if="advice_index === 4" width="145">机器显示脱水量:</td>
905
+                    <td v-if="advice_index === 4" width="60">
906
+                      {{
907
+                        record.patient.total_dialysis +
908
+                          record.patient.user_sys_before_count >
909
+                        0
910
+                          ? record.assessment_after_dislysis.actual_ultrafiltration
911
+                          : "/"
912
+                      }}ml
913
+                    </td>
914
+                    <td v-if="advice_index === 5" width="145">透后体重:</td>
915
+                    <td v-if="advice_index === 5" width="60">
916
+                      {{
917
+                        record.patient.total_dialysis +
918
+                          record.patient.user_sys_before_count >
919
+                        0
920
+                          ? record.assessment_after_dislysis.weight_after
921
+                          : "/"
922
+                      }}kg
923
+                    </td>
924
+                    <td v-if="advice_index === 6" width="145">
925
+                      本次透析体重下降量:
926
+                    </td>
927
+                    <td v-if="advice_index === 6" width="60">
928
+                      {{
929
+                        record.assessment_after_dislysis.weight_after == 0 ||
930
+                        record.assessment_before_dislysis.weight_before == 0
931
+                          ? 0
932
+                          : (
933
+                              record.assessment_before_dislysis.weight_before -
934
+                              record.assessment_after_dislysis.weight_after
935
+                            ).toFixed(2)
936
+                      }}kg
937
+                    </td>
938
+                    <td v-if="advice_index > 6" width="145"></td>
939
+                    <td v-if="advice_index > 6" width="60"></td>
940
+                
941
+                  </tr>
942
+                  </table>
863 943
                 </td>
864 944
             </tr>
865 945
          
866
-          <tr v-for="(advice, advice_index) in record.advices" :key="advice_index" style="transform: translateY(3px)">
867
-            <td colspan="11">
868
-              <table class="inside_table" border="1">
869
-                <tr>
870
-                  <td width="60">
871
-                    {{ getTime(advice[0].start_time, "{h}:{i}") }}
872
-                  </td>
873
-                
874
-                  <td style="text-align: left; padding-left: 5px" width="340">
875
-                    <span v-if="advice[0].parent_id > 0">---></span>
876
-                    <span>{{ advice[0].advice_name }}</span>
877
-                    <span v-if="advice && advice[0].advice_desc"
878
-                      >({{ advice[0].advice_desc
879
-                      }}{{ advice[0].drug_spec_unit }})</span
880
-                    >
881
-                    <span v-if="advice[0].prescribing_number"
882
-                      >&nbsp;&nbsp; {{ advice[0].prescribing_number
883
-                      }}{{ advice[0].prescribing_number_unit }}</span
884
-                    >
885
-                    <span v-if="advice[0].single_dose != 0"
886
-                      >{{ advice[0].single_dose
887
-                      }}{{ advice[0].single_dose_unit }}</span
888
-                    >
889
-
890
-                    <span v-if="advice[0].parent_id == 0">{{
891
-                      advice[0].delivery_way
892
-                    }}</span>
893
-                    <span v-if="advice[0].parent_id == 0">{{
894
-                      advice[0].execution_frequency
895
-                    }}</span>
896
-                    <span>{{ advice[0].remark }}</span>
897
-                  </td>
898
-              
899
-                
900
-                  <td style="line-height: 10px" width="90">
901
-                    <span v-if="setAdminUserES(advice[0].execution_staff) == ''">{{
902
-                      getAdminUser(advice[0].execution_staff)
903
-                    }}</span>
904
-                    <img
905
-                      style="height: 30px"
906
-                      :src="setAdminUserES(advice[0].execution_staff)"
907
-                      alt=""
908
-                      srcset=""
909
-                    />
910
-                  </td>
911
-                  <td style="line-height: 30px" width="90">
912
-                    <span v-if="setAdminUserES(advice[0].checker) == ''">{{
913
-                      getAdminUser(advice[0].checker)
914
-                    }}</span>
915
-                    <img
916
-                      style="height: 30px"
917
-                      :src="setAdminUserES(advice[0].checker)"
918
-                      alt=""
919
-                      srcset=""
920
-                      v-else
921
-                    />
922
-                  </td>
923
-
924
-                  <td v-if="advice_index === 0" width="145">透前体重:</td>
925
-                  <td v-if="advice_index === 0" width="60">
926
-                    {{record.patient.total_dialysis +record.patient.user_sys_before_count>0? record.assessment_before_dislysis.weight_before: "/"}}kg
927
-                  </td>
928
-                  <td v-if="advice_index === 1" width="145">体重增加量:</td>
929
-                  <td v-if="advice_index === 1" width="60">
930
-                    {{
931
-                      record.assessment_after_dislysis.weight_after == 0 ||
932
-                      record.assessment_before_dislysis.weight_before == 0
933
-                        ? 0
934
-                        : (
935
-                            record.assessment_before_dislysis.weight_before -
936
-                            record.assessment_after_dislysis.weight_after
937
-                          ).toFixed(2)
938
-                    }}kg
939
-                  </td>
940
-                  <td v-if="advice_index === 2" width="145">干体重(DW):</td>
941
-                  <td v-if="advice_index === 2" width="60">
942
-                    {{
943
-                      record.patient.total_dialysis +
944
-                        record.patient.user_sys_before_count >
945
-                      0
946
-                        ? record.assessment_before_dislysis.dry_weight
947
-                        : "/"
948
-                    }}kg
949
-                  </td>
950
-                  <td v-if="advice_index === 3" width="145">较干体重增加量:</td>
951
-                  <td v-if="advice_index === 3" width="60">
952
-                    {{
953
-                      record.patient.total_dialysis +
954
-                        record.patient.user_sys_before_count >
955
-                        0 && record.assessment_after_dislysis.weight_after != 0
956
-                        ? (
957
-                            record.assessment_after_dislysis.weight_after - record.assessment_before_dislysis.dry_weight
958
-                          ).toFixed(2)
959
-                        : 0
960
-                    }}kg
961
-                  </td>
962
-                  <td v-if="advice_index === 4" width="145">机器显示脱水量:</td>
963
-                  <td v-if="advice_index === 4" width="60">
964
-                    {{
965
-                      record.patient.total_dialysis +
966
-                        record.patient.user_sys_before_count >
967
-                      0
968
-                        ? record.assessment_after_dislysis.actual_ultrafiltration
969
-                        : "/"
970
-                    }}ml
971
-                  </td>
972
-                  <td v-if="advice_index === 5" width="145">透后体重:</td>
973
-                  <td v-if="advice_index === 5" width="60">
974
-                    {{
975
-                      record.patient.total_dialysis +
976
-                        record.patient.user_sys_before_count >
977
-                      0
978
-                        ? record.assessment_after_dislysis.weight_after
979
-                        : "/"
980
-                    }}kg
981
-                  </td>
982
-                  <td v-if="advice_index === 6" width="145">
983
-                    本次透析体重下降量:
984
-                  </td>
985
-                  <td v-if="advice_index === 6" width="60">
986
-                    {{
987
-                      record.assessment_after_dislysis.weight_after == 0 ||
988
-                      record.assessment_before_dislysis.weight_before == 0
989
-                        ? 0
990
-                        : (
991
-                            record.assessment_before_dislysis.weight_before -
992
-                            record.assessment_after_dislysis.weight_after
993
-                          ).toFixed(2)
994
-                    }}kg
995
-                  </td>
996
-                  <td v-if="advice_index > 6" width="145"></td>
997
-                  <td v-if="advice_index > 6" width="60"></td>
998
-                </tr>
999
-              </table>
1000
-            </td>
1001
-          </tr>
946
+      
1002 947
         <tr style="transform: translateY(1px)">
1003 948
             <td colspan="11">  
1004 949
             <table class="inside_table" border="1">
@@ -1131,7 +1076,7 @@
1131 1076
   import BreadCrumb from '@/xt_pages/components/bread-crumb'
1132 1077
   import print from 'print-js'
1133 1078
 export default {
1134
-  name: "BatchPrintOrderSix",
1079
+  name: "BatchPrintOrderFiftyThree",
1135 1080
   components: {
1136 1081
     CheckBox,
1137 1082
     BreadCrumb,
@@ -1453,7 +1398,6 @@ export default {
1453 1398
         scanStyles: false,
1454 1399
       });
1455 1400
     },
1456
-
1457 1401
     complicationsOther: function (record) {
1458 1402
       if (record == null || typeof record === "undefined") {
1459 1403
         return "";

+ 3 - 2
src/xt_pages/dialysis/details/consumable/dialysisDrug.vue View File

@@ -260,6 +260,7 @@
260 260
         },
261 261
         zoneIdList:[],
262 262
         partion_str:"",
263
+     
263 264
       }
264 265
     },
265 266
     created() {
@@ -662,7 +663,7 @@
662 663
           }
663 664
         }
664 665
 
665
-        if(this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 0){
666
+        if(this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 0 || this.$store.getters.xt_user.org_id == 10469){
666 667
           //  console.log("----------------------",this.selected_date)
667 668
             console.log("星期",this.getweekday(this.selected_date))
668 669
             var newArrList = []
@@ -704,7 +705,7 @@
704 705
             }
705 706
           }
706 707
         }
707
-        if(this.$store.getters.xt_user.org_id != 9671 && this.$store.getters.xt_user.org_id != 0){
708
+        if(this.$store.getters.xt_user.org_id != 9671 && this.$store.getters.xt_user.org_id != 0 && this.$store.getters.xt_user.org_id != 10469){
708 709
          
709 710
           if(newArr!=null && newArr.length > 0){
710 711
             for(let i=0;i<newArr.length;i++){

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

@@ -807,7 +807,7 @@
807 807
     methods: {
808 808
       handleSpanTempArrOne() {
809 809
           this.tempArrOne = [];
810
-          console.log("hhahhahahahahah",this.doctor_advices)
810
+         
811 811
           for (let i = 0; i < this.doctor_advices.length; i++) {
812 812
             if (i === 0) {
813 813
               this.tempArrOne.push(1);

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

@@ -9,6 +9,15 @@
9 9
                 class="newDialog"
10 10
         >
11 11
             <el-button style="position: absolute;left: 12%;top: 2%" @click="handlePatientInfo">{{ patient.name }}</el-button>
12
+            <!-- <span style="position: absolute;left: 22%;top: 3%">
13
+              上次透后体重:{{last_record.weight_after?last_record.weight_after:""}} --kg
14
+            </span> -->
15
+            <!-- <span style="position: absolute;left: 35%;top: 3%">
16
+              干体重:--kg
17
+            </span>
18
+            <span style="position: absolute;left: 48%;top: 3%">
19
+              衣物重:--kg
20
+            </span> -->
12 21
             <div class="warnTxt" v-if="showTxt != ''">{{ showTxt }}</div>
13 22
             <el-form
14 23
                     ref="dialysisPrescription"
@@ -1441,6 +1450,9 @@
1441 1450
       admins: {
1442 1451
         type: Array
1443 1452
       },
1453
+      last_record: {
1454
+        type: Object
1455
+      },
1444 1456
     },
1445 1457
     computed: {
1446 1458
       dialysis_date: function() {
@@ -2597,13 +2609,13 @@ mu
2597 2609
         if(moment().weekday() == 6){
2598 2610
            total_day ="周六"
2599 2611
         }
2600
-        if(moment().weekday() == 7){
2612
+        if(moment().weekday() == 0){
2601 2613
            total_day ="周日"
2602 2614
         }
2603
-        console.log("---------",this.targetAdvices)
2615
+        console.log("日期---------",moment().weekday())
2604 2616
         if(this.targetAdvices!=null && this.targetAdvices.length >0){
2605 2617
             for (let i = 0; i < this.targetAdvices.length; i++) {
2606
-              if(this.targetAdvices[i].week_day.indexOf(total_day)!=-1){
2618
+              if(this.targetAdvices[i].week_day!=""&&this.targetAdvices[i].week_day.indexOf(total_day)!=-1){
2607 2619
                 this.targetAdvices[i].isCheck = 1
2608 2620
               }
2609 2621
             }

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

@@ -470,7 +470,8 @@
470 470
                 template_id == 54 ||
471 471
                 template_id == 56 ||
472 472
                 org_id ==10432 || 
473
-                org_id ==10445
473
+                org_id ==10445 || 
474
+                org_id ==10410
474 475
               
475 476
                )
476 477
             "
@@ -498,7 +499,8 @@
498 499
               template_id != 54 &&
499 500
               template_id != 56 &&
500 501
               org_id !=10432 && 
501
-              org_id !=10445
502
+              org_id !=10445 &&
503
+              org_id !=10410
502 504
             "
503 505
           >
504 506
             <template slot-scope="scope">
@@ -1296,7 +1298,8 @@
1296 1298
               template_id != 56 &&
1297 1299
               template_id != 53 &&
1298 1300
               org_id!=10432 &&
1299
-              org_id!=10445
1301
+              org_id!=10445 &&
1302
+              org_id!=10410
1300 1303
             "
1301 1304
           >
1302 1305
             <el-form-item label="置换率(L/h):" :prop="isName('置换率')"
@@ -1320,7 +1323,8 @@
1320 1323
                 template_id == 56 ||
1321 1324
                 template_id == 48 ||
1322 1325
                 org_id==10432 ||
1323
-                org_id!=10445)
1326
+                org_id!=10445 ||
1327
+                org_id!=10410)
1324 1328
             "
1325 1329
           >
1326 1330
             <el-form-item label="置换率(ml/min):" :prop="isName('置换率')"

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

@@ -20,8 +20,8 @@
20 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 && template_id !=34 && template_id !=35 && template_id !=38  && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 &&  template_id !=48 &&  template_id !=53 &&  template_id !=54 &&  template_id !=56 &&  template_id !=60 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410) || this.$store.getters.xt_user.template_info.org_id==10387" width="50px"> 超滤率 <br />(L/h) </th>
21 21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
22 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 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445) " width="92px" > 置换率(ml/min) </th>
24
-          <th v-if=" isShow('置换率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && org_id!=10432 && org_id!=10445" width="92px" > 置换率(L/h)  </th>
23
+          <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445 || org_id == 10410) " width="92px" > 置换率(ml/min) </th>
24
+          <th v-if=" isShow('置换率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && org_id!=10432 && org_id!=10445 && org_id!=10410" width="92px" > 置换率(L/h)  </th>
25 25
           <th v-if=" isShow('置换量') && (template_id == 43)" width="92px"> 置换量(ml/h)  </th>
26 26
           <th v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919 && org_id !=10191) || org_id == 9779 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10432  || this.$store.getters.xt_user.template_info.org_id == 10445 )" width="92px"  > 置换量(ml)  </th>
27 27
           <th v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919 || org_id == 10191) && org_id != 9779 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10432  && this.$store.getters.xt_user.template_info.org_id != 10445)" width="92px" > 置换量(L) </th>

+ 4 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderFiftyOne.vue View File

@@ -2595,7 +2595,7 @@
2595 2595
                                 />
2596 2596
                               </div>
2597 2597
                             </div>
2598
-                            <div class="inline_block" style="flex: 1">
2598
+                            <!-- <div class="inline_block" style="flex: 1">
2599 2599
                               下机护士:
2600 2600
                               <div
2601 2601
                                 class="under_line"
@@ -2633,8 +2633,8 @@
2633 2633
                                   v-else
2634 2634
                                 />
2635 2635
                               </div>
2636
-                            </div>
2637
-                            <!-- <div class="inline_block" style="flex: 1">
2636
+                            </div> -->
2637
+                            <div class="inline_block" style="flex: 1">
2638 2638
                               患者签名:
2639 2639
                               <div
2640 2640
                                 class="under_line"
@@ -2648,7 +2648,7 @@
2648 2648
                                   srcset=""
2649 2649
                                 />
2650 2650
                               </div>
2651
-                            </div> -->
2651
+                            </div>
2652 2652
                             <div class="inline_block" style="flex: 1">
2653 2653
                               治疗医生:
2654 2654
                               <div

+ 23 - 9
src/xt_pages/dialysis/template/DialysisPrintOrderFiftyThree.vue View File

@@ -688,9 +688,12 @@
688 688
                 <tr>
689 689
                   <td style="width: 60px" rowspan="2">时间</td>
690 690
                   <td colspan="4">透析参数</td>
691
-                  <td :colspan="org_id == 10441 || org_id == 9675 ? 4 : 5">
691
+                  <td :colspan="org_id == 10441 || org_id == 9675  ? 4 : 5">
692 692
                     生命体征
693 693
                   </td>
694
+                  <td v-if="org_id == 10430 || org_id == 0">
695
+                    KT/V
696
+                  </td>
694 697
                   <td colspan="1">治疗中病情变化</td>
695 698
                 </tr>
696 699
                 <tr class="short_tr">
@@ -716,6 +719,8 @@
716 719
                     <p style="height: 20px; line-height: 20px">℃</p>
717 720
                   </th>
718 721
 
722
+               
723
+
719 724
                   <th style="width: 80px; font-weight: normal">
720 725
                     <p style="height: 20px; line-height: 20px">T</p>
721 726
                     <p style="height: 20px; line-height: 20px">℃</p>
@@ -743,6 +748,11 @@
743 748
                     <p style="height: 20px; line-height: 20px">SpO₂</p>
744 749
                     <p style="height: 20px; line-height: 20px">%</p>
745 750
                   </th>
751
+                  <th style="width:50px; font-weight: normal" v-if="org_id == 10430 || org_id == 0">
752
+                    <p style="height: 20px; line-height: 20px">
753
+                      KT/V
754
+                    </p>
755
+                  </th>
746 756
                   <th style="width: 333px; font-weight: normal">
747 757
                     <p style="height: 20px; line-height: 20px">
748 758
                       记&nbsp;&nbsp;&nbsp;&nbsp;录
@@ -795,12 +805,14 @@
795 805
                     {{monitor.dialysate_temperature?monitor.dialysate_temperature:''}}
796 806
                   </td>
797 807
 
808
+
798 809
                   <td>
799 810
                     <span v-if="getTime(monitor.operate_time) != ''">
800 811
                       {{ monitor.temperature ? monitor.temperature : "" }}
801 812
                     </span>
802 813
                   </td>
803 814
 
815
+                
804 816
                   <td>
805 817
                     <span v-if="getTime(monitor.operate_time) != ''">
806 818
                       {{
@@ -836,6 +848,9 @@
836 848
                       }}
837 849
                     </span>
838 850
                   </td>
851
+                  <td v-if="org_id == 10430 || org_id == 0">
852
+                    {{ monitor.ktv?monitor.ktv:"" }}
853
+                  </td>
839 854
                   <td>
840 855
                     <span
841 856
                       v-if="
@@ -851,7 +866,7 @@
851 866
               </table>
852 867
             </td>
853 868
           </tr>
854
-          <tr style="transform: translateY(4px)" v-if="org_id!=10346 && org_id!=0">
869
+          <tr style="transform: translateY(4px)" v-if="org_id!=10346">
855 870
             <td>
856 871
               <table class="print-table" border="1" style="text-align: center">
857 872
                 <tr>
@@ -899,8 +914,9 @@
899 914
               </table>
900 915
             </td>
901 916
           </tr>
902
-          <div v-if="org_id!=10346 && org_id!=0">
917
+
903 918
           <tr
919
+            v-if="org_id!=10346"
904 920
             v-for="(advice, advice_index) in advices"
905 921
             :key="advice_index"
906 922
             style="transform: translateY(3px)"
@@ -919,14 +935,14 @@
919 935
                     <span v-if="setAdminUserES(advice.advice_doctor) == ''">
920 936
                       {{ getAdminUser(advice.advice_doctor) }}
921 937
                     </span>
922
-                    <img
938
+                  <img
923 939
                       style="height: 30px"
924 940
                       :src="setAdminUserES(advice.advice_doctor)"
925 941
                       alt=""
926 942
                       srcset=""
927 943
                     />
928 944
                   </td>
929
-                  <td style="text-align: left; padding-left: 5px" width="340">
945
+                  <td style="text-align: left; padding-left: 5px" width="344">
930 946
                     <span v-if="advice.parent_id > 0">---></span>
931 947
                     <span>{{ advice.advice_name }}</span>
932 948
                     <span v-if="advice && advice.advice_desc"
@@ -1082,7 +1098,7 @@
1082 1098
               </table>
1083 1099
             </td>
1084 1100
           </tr>
1085
-          </div>
1101
+         
1086 1102
 
1087 1103
           <tr style="transform: translateY(1px)">
1088 1104
             <td>
@@ -1287,7 +1303,6 @@
1287 1303
               </table>
1288 1304
             </td>
1289 1305
           </tr>
1290
-          <div>
1291 1306
           <tr
1292 1307
             v-for="(advice, advice_index) in advices"
1293 1308
             :key="advice_index"
@@ -1313,7 +1328,7 @@
1313 1328
                       srcset=""
1314 1329
                     />
1315 1330
                   </td>
1316
-                  <td style="text-align: left; padding-left: 5px" width="340">
1331
+                  <td style="text-align: left; padding-left: 5px" width="344">
1317 1332
                     <span v-if="advice.parent_id > 0">---></span>
1318 1333
                     <span>{{ advice.advice_name }}</span>
1319 1334
                     <span v-if="advice && advice.advice_desc"
@@ -1469,7 +1484,6 @@
1469 1484
               </table>
1470 1485
             </td>
1471 1486
           </tr>
1472
-          </div>
1473 1487
 
1474 1488
         
1475 1489
         </tbody>

File diff suppressed because it is too large
+ 2020 - 2020
src/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail.vue


+ 13 - 6
src/xt_pages/outpatientDoctorStation/template/printOne.vue View File

@@ -154,8 +154,12 @@
154 154
           </p>
155 155
           <p>日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}</p>
156 156
         </div>
157
-        <div class="doctorBox" v-else>
158
-          <p>药师:</p>
157
+        <div class="doctorBoxtwo" v-if="org_id == 10188">
158
+          <p >审核、调配:</p>
159
+          <p style="margin-right: 43px">药师:</p>
160
+        </div>
161
+        <div class="doctorBox" v-if="org_id == 10188">
162
+          <p >核对、发药:</p>
159 163
           <p>医师:{{ item.doctor ? item.doctor : "" }}</p>
160 164
         </div>
161 165
         <div class="actionBar" v-if="org_id != 10188">
@@ -179,10 +183,7 @@
179 183
           <!--            <p>药费:466.2元</p>-->
180 184
         </div>
181 185
         <div class="actionBar" v-else>
182
-          <p style="visibility: hidden">审核:</p>
183
-          <p style="visibility: hidden">配对:</p>
184
-          <p style="visibility: hidden">核对:</p>
185
-          <p style="visibility: hidden">发药:</p>
186
+
186 187
           <p>
187 188
             药费:{{
188 189
               getTotalOne(item.id).toFixed(2)
@@ -528,6 +529,12 @@ export default {
528 529
   line-height: 24px;
529 530
   border-bottom: 2px solid #000;
530 531
 }
532
+.doctorBoxtwo {
533
+  display: flex;
534
+  justify-content: space-between;
535
+  padding: 0 10px;
536
+  line-height: 24px;
537
+}
531 538
 .actionBar {
532 539
   display: flex;
533 540
   justify-content: space-between;

+ 2 - 2
src/xt_pages/user/courseOfDisease.vue View File

@@ -72,9 +72,9 @@
72 72
             <el-col :span="15">
73 73
               <div class="record_content_panel">
74 74
                 <div style="background-color:rgb(245, 247, 250)" class="title">病程内容</div>
75
-                <!--v-html="current_select_record.content"-->
75
+                
76 76
                 <div class="content">
77
-                  <span v-if="current_select_record" >{{current_select_record.content }}</span>
77
+                  <span v-if="current_select_record" v-html="current_select_record.content"></span>
78 78
                   <span v-else></span>
79 79
                 </div>
80 80
                 <!-- <el-form>