Quellcode durchsuchen

Merge remote-tracking branch 'origin/20230223_pad_vue_new_branch' into 20230223_pad_vue_new_branch

28169 vor 2 Wochen
Ursprung
Commit
bbc84c6970

+ 1 - 1
build/cdn.json Datei anzeigen

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "2999.999.13725"
2
+  "version": "2999.999.13738"
3 3
 }

+ 7 - 7
src/pages/home/login.vue Datei anzeigen

@@ -78,7 +78,7 @@ import { Dialog } from "vant";
78 78
 import Popup from "./Popup/index"
79 79
 import axios from 'axios'
80 80
 const https = require('https');
81
-const agent = new https.Agent({  
81
+const agent = new https.Agent({
82 82
   rejectUnauthorized: false  // 忽略证书验证
83 83
 });
84 84
 const instance = axios.create({
@@ -187,7 +187,7 @@ export default {
187 187
           }
188 188
 
189 189
           if (resp.state == 1 && this.checked == true) {
190
-           
190
+
191 191
             this.show = false;
192 192
             var user = resp.data.user;
193 193
             var admin = resp.data.admin;
@@ -232,13 +232,13 @@ export default {
232 232
             // }
233 233
             //博白
234 234
             console.log("机构ID------------------",resp.data.org.id)
235
-            if(resp.data.org.id == 10164){
236
-              this.checkMobileIp() 
235
+            if(resp.data.org.id == 9671){
236
+              this.checkMobileIp()
237 237
             }else{
238 238
               this.$router.replace({ path: "/" });
239 239
             }
240
-           
241
-           
240
+
241
+
242 242
           } else {
243 243
             this.show = false;
244 244
             if (this.errorNum >= 2) {
@@ -280,7 +280,7 @@ export default {
280 280
           if (response.data.state == 1) {
281 281
             console.log("hahahahh");
282 282
             that.$router.replace({ path: "/" });
283
-           
283
+
284 284
           }
285 285
         }).catch(function(error) {
286 286
           console.error("Error:", error);

+ 14 - 3
src/pages/main/dialog/subMenu/LongAdviceSubMenu.vue Datei anzeigen

@@ -307,7 +307,7 @@ export default {
307 307
               this.start_time = year + '-' + month + '-' + day + ' ' + '07:00'
308 308
             }
309 309
           } else if (this.$store.getters.user.org.id == 10432) {
310
-           
310
+
311 311
             if (sch.schedule_type == 1) {
312 312
               this.advice_start_time = year + '-' + month + '-' + day + ' ' + '06:00'
313 313
               this.start_time = year + '-' + month + '-' + day + ' ' + '06:00'
@@ -319,7 +319,7 @@ export default {
319 319
               this.start_time = year + '-' + month + '-' + day + ' ' + '18:00'
320 320
             }
321 321
           }else if (this.$store.getters.user.org.id == 9850) {
322
-           
322
+
323 323
            if (sch.schedule_type == 1) {
324 324
              this.advice_start_time = year + '-' + month + '-' + day + ' ' + '06:30'
325 325
              this.start_time = year + '-' + month + '-' + day + ' ' + '06:30'
@@ -440,7 +440,18 @@ export default {
440 440
               this.advice_start_time = year + '-' + month + '-' + day + ' ' + '15:00'
441 441
               this.start_time = year + '-' + month + '-' + day + ' ' + '15:00'
442 442
             }
443
-          } else if (this.$store.getters.user.org.id == 10580) {
443
+          }else if (this.$store.getters.user.org.id == 10353) {
444
+               if (sch.schedule_type == 1) {
445
+                 this.advice_start_time = year + '-' + month + '-' + day + ' ' + '07:00'
446
+                 this.start_time = year + '-' + month + '-' + day + ' ' + '07:00'
447
+               } else if (sch.schedule_type == 2) {
448
+                 this.advice_start_time = year + '-' + month + '-' + day + ' ' + '12:00'
449
+                 this.start_time = year + '-' + month + '-' + day + ' ' + '12:00'
450
+               } else if (sch.schedule_type == 3) {
451
+                 this.advice_start_time = year + '-' + month + '-' + day + ' ' + '17:30'
452
+                 this.start_time = year + '-' + month + '-' + day + ' ' + '17:30'
453
+               }
454
+             } else if (this.$store.getters.user.org.id == 10580) {
444 455
             if (sch.schedule_type == 1) {
445 456
               this.advice_start_time = year + '-' + month + '-' + day + ' ' + '07:00'
446 457
               this.start_time = year + '-' + month + '-' + day + ' ' + '07:00'

+ 12 - 12
src/pages/main/dialysis/components/newAddOrder.vue Datei anzeigen

@@ -266,8 +266,8 @@ export default {
266 266
 
267 267
     var nowTime = nowYear +'-' +(nowMonth < 10 ? '0' + nowMonth : nowMonth) +'-' +(nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +':' + (min < 10 ? '0' + min : min) + ':00'
268 268
 
269
-    var startTime = nowYear +'-' +(nowMonth < 10 ? '0' + nowMonth : nowMonth) +'-' +(nowDay < 10 ? '0' + nowDay : nowDay) 
270
-   
269
+    var startTime = nowYear +'-' +(nowMonth < 10 ? '0' + nowMonth : nowMonth) +'-' +(nowDay < 10 ? '0' + nowDay : nowDay)
270
+
271 271
     this.advice_start_time = nowTime
272 272
     this.startTime =startTime
273 273
     this.start_time = nowTime
@@ -281,7 +281,7 @@ export default {
281 281
          module:4,
282 282
          remark:remark,
283 283
        }
284
-      
284
+
285 285
       saveMobileInformation(params).then(response=>{
286 286
         if(response.data.state == 1){
287 287
            this.infor_visibility = false
@@ -291,7 +291,7 @@ export default {
291 291
     },
292 292
     menuCancleFour:function(){
293 293
      this.infor_visibility = false
294
-    
294
+
295 295
     },
296 296
     back () {
297 297
       this.$emit('close')
@@ -303,7 +303,7 @@ export default {
303 303
       this.advice_start_time = parseTime(time, '{y}-{m}-{d} {h}:{i}') + ':00'
304 304
     },
305 305
     querySearch (queryString, cb) {
306
-     
306
+
307 307
       var restaurants = this.drugList
308 308
       console.log("druglsit----------------",this.drugList)
309 309
       restaurants.map(item => {
@@ -315,7 +315,7 @@ export default {
315 315
       cb(results)
316 316
     },
317 317
     createFilter (queryString) {
318
-     
318
+
319 319
       return (restaurant) => {
320 320
         console.log("restaurant23223232323",restaurant)
321 321
         return (restaurant.drug_name.toLowerCase().indexOf(queryString.toLowerCase()) !=-1)
@@ -332,7 +332,7 @@ export default {
332 332
       return name
333 333
     },
334 334
     handleSelect (item) {
335
-     
335
+
336 336
       this.drug_id = item.id
337 337
       console.log('itme33333333', item)
338 338
       this.current_drug_name = name
@@ -342,7 +342,7 @@ export default {
342 342
       this.order.prescribing_number = item.prescribing_number
343 343
       this.order.prescribing_number_unit = item.prescribing_number_unit
344 344
       this.order.single_dose = item.single_dose
345
-      this.order.single_dose_unit =this.getUnits(item.drug_dose_unit) 
345
+      this.order.single_dose_unit =this.getUnits(item.drug_dose_unit)
346 346
       this.order.delivery_way  = item.delivery_way
347 347
       this.order.execution_frequency = item.execution_frequency
348 348
     },
@@ -355,7 +355,7 @@ export default {
355 355
       this.drugSpec = []
356 356
       this.current_drug_name = ''
357 357
     },
358
-   
358
+
359 359
     createFilter1 (queryString) {
360 360
       return (restaurant) => {
361 361
         return (restaurant.drug_name.toLowerCase().indexOf(queryString.toLowerCase()) === 0)
@@ -404,14 +404,14 @@ export default {
404 404
       this.drug_spec_unit_show = true
405 405
     },
406 406
     comfirmAction: function () {
407
-    
407
+
408 408
        var frequency_week =  this.weeks.join()
409 409
        var params = {
410 410
          patient_id:parseInt(this.$route.query.patient_id),
411 411
          start_time:this.advice_start_time,
412 412
          advice_name:this.order.title,
413 413
          advice_desc:this.order.advice_desc,
414
-         prescribing_number:this.order.prescribing_number,
414
+         prescribing_number:parseFloat(this.order.prescribing_number),
415 415
          prescribing_number_unit:this.order.prescribing_number_unit,
416 416
          single_dose:parseFloat(this.order.single_dose),
417 417
          single_dose_unit:this.order.single_dose_unit,
@@ -430,7 +430,7 @@ export default {
430 430
           if(response.data.state == 1){
431 431
             Toast.success('保存成功')
432 432
             this.$emit('child-event');
433
-            
433
+
434 434
           }
435 435
        })
436 436
     },

+ 3 - 3
src/pages/main/newActionBar/assessmentAfter.vue Datei anzeigen

@@ -7,8 +7,8 @@
7 7
             <van-cell>
8 8
                 <template #title>
9 9
                     <span style="color:#7b8c9c" v-if="prescription_prop!=null">目标超滤量:{{prescription_prop.target_ultrafiltration}}</span>
10
-                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id != 9 && $store.getters.user.template_info.template_id != 17 && $store.getters.user.template_info.template_id != 20 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 22  && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 24 && $store.getters.user.template_info.template_id != 26 && $store.getters.user.template_info.template_id != 28 && $store.getters.user.template_info.template_id != 27 && $store.getters.user.template_info.template_id != 29 && $store.getters.user.template_info.template_id != 30 && $store.getters.user.template_info.template_id != 31 && $store.getters.user.template_info.template_id != 32 && $store.getters.user.template_info.template_id != 34 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 43 && $store.getters.user.template_info.org_id!=9555 && $store.getters.user.template_info.template_id != 60  && $store.getters.user.template_info.org_id!=10340 && $store.getters.user.template_info.org_id!=10387 && $store.getters.user.template_info.org_id!=10430 && $store.getters.user.template_info.org_id!=10441 && $store.getters.user.template_info.org_id!=10445 && $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469 && $store.getters.user.template_info.org_id!=10460">L</span>
11
-                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id == 9 || $store.getters.user.template_info.template_id == 17 || $store.getters.user.template_info.template_id == 20 || $store.getters.user.template_info.template_id == 21 || $store.getters.user.template_info.template_id == 22 || $store.getters.user.template_info.template_id == 23 || $store.getters.user.template_info.template_id == 24 || $store.getters.user.template_info.template_id == 26 || $store.getters.user.template_info.template_id == 28 || $store.getters.user.template_info.template_id == 27 || $store.getters.user.template_info.template_id == 29 || $store.getters.user.template_info.template_id == 30 || $store.getters.user.template_info.template_id == 31 || $store.getters.user.template_info.template_id == 32 || $store.getters.user.template_info.template_id == 34 || $store.getters.user.template_info.template_id == 38 || $store.getters.user.template_info.template_id == 40 || $store.getters.user.template_info.template_id == 43 || $store.getters.user.template_info.org_id==9555 || $store.getters.user.template_info.template_id==60|| $store.getters.user.template_info.org_id==10340 || $store.getters.user.template_info.org_id==10387 || $store.getters.user.template_info.org_id==10430  || $store.getters.user.template_info.org_id==10441 || $store.getters.user.template_info.org_id==10445 || $store.getters.user.template_info.org_id==9829 ||  $store.getters.user.template_info.org_id==10440 ||  $store.getters.user.template_info.org_id==10469 ||  $store.getters.user.template_info.org_id==10460">ml</span>
10
+                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id != 9 && $store.getters.user.template_info.template_id != 17 && $store.getters.user.template_info.template_id != 20 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 22  && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 24 && $store.getters.user.template_info.template_id != 26 && $store.getters.user.template_info.template_id != 28 && $store.getters.user.template_info.template_id != 27 && $store.getters.user.template_info.template_id != 29 && $store.getters.user.template_info.template_id != 30 && $store.getters.user.template_info.template_id != 31 && $store.getters.user.template_info.template_id != 32 && $store.getters.user.template_info.template_id != 34 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 43 && $store.getters.user.template_info.org_id!=9555 && $store.getters.user.template_info.template_id != 60  && $store.getters.user.template_info.org_id!=10340 && $store.getters.user.template_info.org_id!=10387 && $store.getters.user.template_info.org_id!=10430 && $store.getters.user.template_info.org_id!=10441 && $store.getters.user.template_info.org_id!=10445 && $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469 && $store.getters.user.template_info.org_id!=10460 && $store.getters.user.template_info.org_id!=10723">L</span>
11
+                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id == 9 || $store.getters.user.template_info.template_id == 17 || $store.getters.user.template_info.template_id == 20 || $store.getters.user.template_info.template_id == 21 || $store.getters.user.template_info.template_id == 22 || $store.getters.user.template_info.template_id == 23 || $store.getters.user.template_info.template_id == 24 || $store.getters.user.template_info.template_id == 26 || $store.getters.user.template_info.template_id == 28 || $store.getters.user.template_info.template_id == 27 || $store.getters.user.template_info.template_id == 29 || $store.getters.user.template_info.template_id == 30 || $store.getters.user.template_info.template_id == 31 || $store.getters.user.template_info.template_id == 32 || $store.getters.user.template_info.template_id == 34 || $store.getters.user.template_info.template_id == 38 || $store.getters.user.template_info.template_id == 40 || $store.getters.user.template_info.template_id == 43 || $store.getters.user.template_info.org_id==9555 || $store.getters.user.template_info.template_id==60|| $store.getters.user.template_info.org_id==10340 || $store.getters.user.template_info.org_id==10387 || $store.getters.user.template_info.org_id==10430  || $store.getters.user.template_info.org_id==10441 || $store.getters.user.template_info.org_id==10445 || $store.getters.user.template_info.org_id==9829 ||  $store.getters.user.template_info.org_id==10440 ||  $store.getters.user.template_info.org_id==10469 ||  $store.getters.user.template_info.org_id==10460 ||  $store.getters.user.template_info.org_id==10723">ml</span>
12 12
                     &nbsp;&nbsp;&nbsp;&nbsp;
13 13
                     <span style="color:#7b8c9c" v-if="prescription_prop!=null && ($store.getters.user.template_info.org_id == 9671 || $store.getters.user.template_info.org_id == 10469)">处方脱水量:{{prescription_prop.prescription_water}}ml</span>
14 14
                     &nbsp;&nbsp;&nbsp;&nbsp;
@@ -21,7 +21,7 @@
21 21
                 <van-field v-model="timeValue" readonly @click="openPicker" @focus="inputFocus" v-if="isShow('实际治疗时长')" :required="isShow_title('实际治疗时长')" label="实际治疗时长" input-align="right"/>
22 22
                 <van-field v-model="formValue.actual_ultrafiltration" @focus="inputFocus" v-if="isShow('实际超滤量')" :required="isShow_title('实际超滤量')" type="number" input-align="right">
23 23
                     <template #label>
24
-                        <span v-if="(template_id == 6 && $store.getters.user.template_info.org_id !=10447) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 56 || template_id == 60 || $store.getters.user.template_info.org_id == 9555 || $store.getters.user.template_info.org_id == 10307 || $store.getters.user.template_info.org_id == 10340 || $store.getters.user.template_info.org_id == 10387 || $store.getters.user.template_info.org_id == 10430 || $store.getters.user.template_info.org_id == 10432 || $store.getters.user.template_info.org_id == 10441 || $store.getters.user.template_info.org_id == 10445 || $store.getters.user.template_info.org_id == 10495 || $store.getters.user.template_info.org_id == 10375  || $store.getters.user.template_info.org_id == 10551 || $store.getters.user.template_info.org_id == 10597 || $store.getters.user.template_info.org_id == 10599 || $store.getters.user.template_info.org_id == 10580 || $store.getters.user.template_info.org_id == 10629 || $store.getters.user.template_info.org_id == 10617 || $store.getters.user.template_info.org_id == 10677 || $store.getters.user.template_info.org_id == 10667 || $store.getters.user.template_info.org_id == 10480 || $store.getters.user.template_info.org_id == 10693 || $store.getters.user.template_info.org_id == 10702 || $store.getters.user.template_info.org_id == 10697 || $store.getters.user.template_info.org_id == 10635">实际超滤量(ml)</span>
24
+                        <span v-if="(template_id == 6 && $store.getters.user.template_info.org_id !=10447 && $store.getters.user.template_info.org_id !=10471) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 56 || template_id == 60 || $store.getters.user.template_info.org_id == 9555 || $store.getters.user.template_info.org_id == 10307 || $store.getters.user.template_info.org_id == 10340 || $store.getters.user.template_info.org_id == 10387 || $store.getters.user.template_info.org_id == 10430 || $store.getters.user.template_info.org_id == 10432 || $store.getters.user.template_info.org_id == 10441 || $store.getters.user.template_info.org_id == 10445 || $store.getters.user.template_info.org_id == 10495 || $store.getters.user.template_info.org_id == 10375  || $store.getters.user.template_info.org_id == 10551 || $store.getters.user.template_info.org_id == 10597 || $store.getters.user.template_info.org_id == 10599 || $store.getters.user.template_info.org_id == 10580 || $store.getters.user.template_info.org_id == 10629 || $store.getters.user.template_info.org_id == 10617 || $store.getters.user.template_info.org_id == 10677 || $store.getters.user.template_info.org_id == 10667 || $store.getters.user.template_info.org_id == 10480 || $store.getters.user.template_info.org_id == 10693 || $store.getters.user.template_info.org_id == 10702 || $store.getters.user.template_info.org_id == 10697 || $store.getters.user.template_info.org_id == 10635 ||  $store.getters.user.template_info.org_id == 10723">实际超滤量(ml)</span>
25 25
                         <span v-else>实际超滤量(L)</span>
26 26
                     </template>
27 27
                 </van-field>

+ 17 - 1
src/pages/main/newActionBar/components/lastOrNextAdvice.vue Datei anzeigen

@@ -111,7 +111,23 @@ export default {
111 111
         this.start_time_str = year + '-' + month + '-' + day + ' ' + '15:30' + ':00'
112 112
         this.start_time = year + '-' + month + '-' + day + ' ' + '15:30' + ':00'
113 113
       }
114
-    } else {
114
+    }else if ( this.$store.getters.user.org.id == 10353) {
115
+           var date = new Date()
116
+           var year = date.getFullYear() // 获取完整的年份(4位)
117
+           var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1).toString() : date.getMonth() + 1 // 获取当前月份(0-11,0代表1月)
118
+           var day = date.getDate() < 10 ? '0' + date.getDate().toString() : date.getDate() // 获取当前日(1-31)
119
+
120
+           if (this.schedulePatient.schedule_type == 1) {
121
+             this.start_time_str = year + '-' + month + '-' + day + ' ' + '07:00' + ':00'
122
+             this.start_time = year + '-' + month + '-' + day + ' ' + '07:00' + ':00'
123
+           } else if (this.schedulePatient.schedule_type == 2) {
124
+             this.start_time_str = year + '-' + month + '-' + day + ' ' + '12:00' + ':00'
125
+             this.start_time = year + '-' + month + '-' + day + ' ' + '12:00' + ':00'
126
+           } else if (this.schedulePatient.schedule_type == 3) {
127
+             this.start_time_str = year + '-' + month + '-' + day + ' ' + '17:30' + ':00'
128
+             this.start_time = year + '-' + month + '-' + day + ' ' + '17:30' + ':00'
129
+           }
130
+      } else {
115 131
       this.start_time_str = parseTime(this.start_time, '{y}-{m}-{d} {h}:{i}') + ':00'
116 132
     }
117 133
 

+ 33 - 15
src/pages/main/newActionBar/dialysisPrescription.vue Datei anzeigen

@@ -145,7 +145,9 @@
145 145
                 $store.getters.user.template_info.org_id!=10469 &&
146 146
                 $store.getters.user.template_info.org_id!=10460 &&
147 147
                 $store.getters.user.template_info.org_id!=10644 &&
148
-                $store.getters.user.template_info.org_id!=10667)||
148
+                $store.getters.user.template_info.org_id!=10667 &&
149
+                $store.getters.user.template_info.org_id!=10723 &&
150
+                $store.getters.user.template_info.org_id!=10727)||
149 151
                 $store.getters.user.template_info.org_id==10633
150 152
               "
151 153
               >目标超滤量(L)</span
@@ -187,7 +189,9 @@
187 189
                 $store.getters.user.template_info.org_id == 10469 ||
188 190
                 $store.getters.user.template_info.org_id == 10460 ||
189 191
                 $store.getters.user.template_info.org_id == 10644 ||
190
-                $store.getters.user.template_info.org_id == 10667)&&
192
+                $store.getters.user.template_info.org_id == 10667 ||
193
+                $store.getters.user.template_info.org_id == 10723 ||
194
+                $store.getters.user.template_info.org_id == 10727)&&
191 195
                 $store.getters.user.template_info.org_id != 10633
192 196
               "
193 197
               >目标超滤量(ml)</span
@@ -416,7 +420,7 @@
416 420
                       <span v-if="dialysisPrescription.anticoagulant == 4 && $store.getters.user.template_info.org_id!=9538">首剂(ml)</span>
417 421
                       <span v-if="dialysisPrescription.anticoagulant == 1">首剂(mg)</span>
418 422
                       <span v-if="dialysisPrescription.anticoagulant == 6 || dialysisPrescription.anticoagulant == 14 || dialysisPrescription.anticoagulant == 15">
419
-                         <span v-if="$store.getters.user.template_info.org_id == 9671">首剂(mg)</span>
423
+                         <span v-if="$store.getters.user.template_info.org_id == 9671 || $store.getters.user.template_info.org_id == 10551">首剂(mg)</span>
420 424
                          <!-- <span v-else>首剂(iu)</span> -->
421 425
                       </span>
422 426
                       <span v-if="dialysisPrescription.anticoagulant == 7 ">
@@ -429,9 +433,9 @@
429 433
                   </template>
430 434
 
431 435
                   <template #label v-else>
432
-                    <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17 ">首剂(mg)</span>
436
+                    <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17 || dialysisPrescription.anticoagulant == 15 ">首剂(mg)</span>
433 437
                     <span v-if="dialysisPrescription.anticoagulant == 13 || dialysisPrescription.anticoagulant == 11">首剂(AXaIU)</span>
434
-                    <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11">首剂(iu)</span>
438
+                    <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11 && dialysisPrescription.anticoagulant != 15">首剂(iu)</span>
435 439
                </template>
436 440
         </van-field>
437 441
 
@@ -568,11 +572,14 @@
568 572
             <span v-if="dialysisPrescription.anticoagulant == 5"
569 573
               >维持(ml/h)</span
570 574
             >
571
-            <span v-if="dialysisPrescription.anticoagulant == 16 || dialysisPrescription.anticoagulant == 15 || dialysisPrescription.anticoagulant == 14"
572
-              >维持(iu/h)</span
575
+            <span v-if="dialysisPrescription.anticoagulant == 16  || dialysisPrescription.anticoagulant == 14"
576
+              >维持(iu/h)
577
+              </span
573 578
             >
579
+
574 580
             
575
-            <span v-if="dialysisPrescription.anticoagulant == 1"
581
+            
582
+            <span v-if="dialysisPrescription.anticoagulant == 1 || dialysisPrescription.anticoagulant == 15 "
576 583
               >维持
577 584
                 (mg/h)
578 585
               </span
@@ -613,9 +620,9 @@
613 620
             >
614 621
           </template>
615 622
           <template #label v-else>
616
-            <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17">维持(mg/h)</span>
623
+            <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17 || dialysisPrescription.anticoagulant == 15">维持(mg/h)</span>
617 624
             <span v-if="dialysisPrescription.anticoagulant ==11 || dialysisPrescription.anticoagulant == 13">维持(AXaIU)</span>
618
-            <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11">维持(iu/h)</span>
625
+            <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11 && dialysisPrescription.anticoagulant != 15">维持(iu/h)</span>
619 626
           </template>
620 627
         </van-field>
621 628
 
@@ -751,14 +758,17 @@
751 758
               >
752 759
               <span v-else>总量(iu)</span>
753 760
             </span>
754
-            <span v-if="dialysisPrescription.anticoagulant == 11 || dialysisPrescription.anticoagulant == 13 || dialysisPrescription.anticoagulant == 14 || dialysisPrescription.anticoagulant == 15|| dialysisPrescription.anticoagulant == 16"
761
+            <span v-if="dialysisPrescription.anticoagulant == 11 || dialysisPrescription.anticoagulant == 13 || dialysisPrescription.anticoagulant == 14|| dialysisPrescription.anticoagulant == 16"
755 762
               >总量(iu)</span
756 763
             >
764
+            <span v-if="dialysisPrescription.anticoagulant == 15"
765
+              >总量(mg)</span
766
+            >
757 767
           </template>
758 768
           <template #label v-else>
759
-            <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17">总量(mg)</span>
769
+            <span v-if="dialysisPrescription.anticoagulant == 2 || dialysisPrescription.anticoagulant == 4 || dialysisPrescription.anticoagulant == 17 || dialysisPrescription.anticoagulant == 15">总量(mg)</span>
760 770
             <span v-if="dialysisPrescription.anticoagulant == 11 || dialysisPrescription.anticoagulant == 13">总量(AXaIU)</span>
761
-            <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11">总量(iu)</span>
771
+            <span v-if="dialysisPrescription.anticoagulant != 2 && dialysisPrescription.anticoagulant != 4  && dialysisPrescription.anticoagulant != 13 && dialysisPrescription.anticoagulant != 17  && dialysisPrescription.anticoagulant != 11 && dialysisPrescription.anticoagulant != 15">总量(iu)</span>
762 772
           </template>
763 773
         </van-field>
764 774
 
@@ -2104,7 +2114,7 @@ export default {
2104 2114
 
2105 2115
 
2106 2116
       //针对揭阳
2107
-      if(this.$store.getters.user.template_info.org_id == 10597 || this.$store.getters.user.template_info.org_id == 10679 || this.$store.getters.user.template_info.org_id == 10702 ){
2117
+      if(this.$store.getters.user.template_info.org_id == 10597 || this.$store.getters.user.template_info.org_id == 10679 || this.$store.getters.user.template_info.org_id == 10702 || this.$store.getters.user.template_info.org_id == 10635 ){
2108 2118
         if(this.predialysis!=undefined){
2109 2119
           if(this.$store.getters.user.template_info.org_id == 10702){
2110 2120
             if(this.dialysisPrescription.target_ultrafiltration==0 || this.dialysisPrescription.target_ultrafiltration==""){
@@ -2115,6 +2125,14 @@ export default {
2115 2125
               this.dialysisPrescription.prescription_water = (this.predialysis.weight_before - this.predialysis.dry_weight - this.predialysis.additional_weight).toFixed(2)
2116 2126
             }
2117 2127
             console.log("hahhahahahhah",this.dialysisPrescription.prescription_water)
2128
+          }else if(this.$store.getters.user.template_info.org_id == 10635){
2129
+            if(this.dialysisPrescription.target_ultrafiltration==0 || this.dialysisPrescription.target_ultrafiltration==""){
2130
+              this.dialysisPrescription.target_ultrafiltration = (this.predialysis.weight_before - this.predialysis.dry_weight - this.predialysis.additional_weight).toFixed(2)
2131
+            }
2132
+           
2133
+            if(this.dialysisPrescription.prescription_water==0 || this.dialysisPrescription.prescription_water==""){
2134
+              this.dialysisPrescription.prescription_water = (this.predialysis.weight_before - this.predialysis.dry_weight - this.predialysis.additional_weight).toFixed(2)
2135
+            }
2118 2136
           }else{
2119 2137
             if(this.dialysisPrescription.target_ultrafiltration==0 || this.dialysisPrescription.target_ultrafiltration==""){
2120 2138
               this.dialysisPrescription.target_ultrafiltration = this.predialysis.weight_before - this.predialysis.dry_weight
@@ -2147,7 +2165,7 @@ export default {
2147 2165
         }
2148 2166
       }
2149 2167
     }else{
2150
-      if(this.$store.getters.user.template_info.org_id == 10702 ){
2168
+      if(this.$store.getters.user.template_info.org_id == 10702 ||  this.$store.getters.user.template_info.org_id == 10635){
2151 2169
         console.log("康桥this.dialysisPrescription",this.dialysisPrescription.prescription_water)
2152 2170
         if(this.dialysisPrescription.prescription_water==0 || this.dialysisPrescription.prescription_water==""){
2153 2171
             this.dialysisPrescription.prescription_water = (this.predialysis.weight_before - this.predialysis.dry_weight - this.predialysis.additional_weight).toFixed(2)

+ 12 - 12
src/pages/main/newActionBar/monitoring.vue Datei anzeigen

@@ -44,8 +44,8 @@
44 44
                   <th width="60px" style="width:6%"> 静脉压/动脉压 <br />({{monitorRecords[0]&&monitorRecords[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
45 45
                   <th v-if="isShow('跨膜压')" width="40px" style="width:6%"> 跨膜压 <br />({{monitorRecords[0]&&monitorRecords[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
46 46
                   <th v-if="isShow('跨膜压1')" width="40px" style="width:6%"> 跨膜压 <br />({{monitorRecords[0]&&monitorRecords[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
47
-                  <th v-if="isShow('超滤量') && (template_id ==5 || 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 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 9 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 65 || template_id == 56 || template_id == 60 || org_id == 10340 || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10485 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id==10677 || org_id==10667 || org_id==10693 || org_id ==10702 || org_id ==10697 || org_id ==10635) && org_id!=10471" width="50px" style="width:6%"> 超滤量 <br />(ml) </th>
48
-                  <th v-if="isShow('超滤量') && (template_id != 5 && 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 && org_id !=9555 && template_id!=27 && template_id!=29 && template_id!=30 && template_id!=31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44 && template_id!=47 && template_id!=46  && template_id!=48 && template_id!=53 && template_id!=54 && template_id!=65 && template_id!=56 && template_id!=60 && org_id != 10340 && org_id != 10387 && org_id != 10432  && org_id != 10445 && org_id!=10375 && org_id!=10480 && org_id!=10551 && org_id!=10485 && org_id!=10597 && org_id!=10599&&org_id!=10612 &&org_id!=10580 && org_id !=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702  && org_id!=10697 && org_id!=10635) || org_id ==10471" width="50px" style="width:6%"> 超滤量 <br />(L) </th>
47
+                  <th v-if="isShow('超滤量') && (template_id ==5 || 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 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 9 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 65 || template_id == 56 || template_id == 60 || org_id == 10340 || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10485 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id==10677 || org_id==10667 || org_id==10693 || org_id ==10702 || org_id ==10697 || org_id ==10635 || org_id==10723) && org_id!=10471" width="50px" style="width:6%"> 超滤量 <br />(ml) </th>
48
+                  <th v-if="isShow('超滤量') && (template_id != 5 && 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 && org_id !=9555 && template_id!=27 && template_id!=29 && template_id!=30 && template_id!=31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44 && template_id!=47 && template_id!=46  && template_id!=48 && template_id!=53 && template_id!=54 && template_id!=65 && template_id!=56 && template_id!=60 && org_id != 10340 && org_id != 10387 && org_id != 10432  && org_id != 10445 && org_id!=10375 && org_id!=10480 && org_id!=10551 && org_id!=10485 && org_id!=10597 && org_id!=10599&&org_id!=10612 &&org_id!=10580 && org_id !=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702  && org_id!=10697 && org_id!=10635 && org_id!=10723) || org_id ==10471" width="50px" style="width:6%"> 超滤量 <br />(L) </th>
49 49
 
50 50
                   <th v-if="isShow('超滤量1')" width="50px" style="width:6%"> 超滤量 <br />(ml) </th>
51 51
 
@@ -53,8 +53,8 @@
53 53
                   <th v-if="isShow('钠浓度1')" width="40px" style="width:6%"> 钠浓度 <br />(mmol/L) </th>
54 54
                   <th v-if="isShow('透析液温度')" width="60px" style="width:6%"> 透析液温度 <br />(℃) </th>
55 55
                   <th v-if="isShow('透析液温度1')" width="60px" style="width:6%"> 透析液温度 <br />(℃) </th>
56
-                  <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 || org_id == 10340 || org_id == 10445 || org_id == 10410 || org_id ==10617 || org_id ==10598 || org_id ==10677 || org_id==10702) && org_id!=10558 && org_id!=10414 && org_id!=10677 " width="50px" style="width:6%"> 置换率 <br />(ml/min) </th>
57
-                  <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 && org_id!=10340 && org_id!=10445 && org_id!=10410 && org_id!=10617 && org_id!=10598 && org_id!=10677 && org_id!=10702) || org_id ==10558 || org_id ==10414 || org_id==10677" width="50px"  style="width:6%"> 置换率 <br />(L/h) </th>
56
+                  <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 || org_id == 10340 || org_id == 10445 || org_id == 10410 || org_id ==10617 || org_id ==10598 || org_id ==10677 || org_id==10702 || org_id == 10727) && org_id!=10558 && org_id!=10414 && org_id!=10677 " width="50px" style="width:6%"> 置换率 <br />(ml/min) </th>
57
+                  <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 && org_id!=10340 && org_id!=10445 && org_id!=10410 && org_id!=10617 && org_id!=10598 && org_id!=10677 && org_id!=10702 && org_id!=10727) || org_id ==10558 || org_id ==10414 || org_id==10677" width="50px"  style="width:6%"> 置换率 <br />(L/h) </th>
58 58
                   <th v-if="isShow('置换率1')" width="50px" style="width:6%"> 置换率 <br />(ml/min) </th>
59 59
                   <th v-if="isShow('置换量') && (template_id ==43 )" width="40px" style="width:6%"> 置换量 <br />(ml/h) </th>
60 60
                   <th v-if="isShow('置换量') && ((template_id ==6 && org_id != 9919 && org_id!=10191 && template_id!=43) || org_id ==9779 ||template_id ==11 ||template_id ==20 ||template_id ==26 ||template_id ==29 ||template_id == 48 ||template_id == 46 ||template_id == 53 ||template_id == 54 ||template_id == 56 ||org_id == 10340 ||org_id == 10432 ||org_id == 10445) && org_id!=10558 && org_id!=10346 && org_id!=10517 && org_id!=10598 && org_id!=10617 && org_id!=10414 && org_id!=10510 && org_id!=10567" width="50px" style="width:6%"> 置换量 <br />(ml) </th>
@@ -74,8 +74,8 @@
74 74
                   <th v-if="isShow('置换液流量1')" width="50px"> 置换液流量 <br />(ml/min)</th>
75 75
                   <th v-if="isShow('透析液流量')" width="50px"> 透析液流量 <br />(ml/h) </th>
76 76
                   <th v-if="isShow('透析液流量1')" width="50px"> 透析液流量 <br />(ml/h) </th>
77
-                  <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 == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 65 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551  || org_id == 10537 || org_id ==10597 || org_id ==10599 || org_id == 10580 || org_id ==10629 || org_id ==10617 || org_id==10677|| org_id==10667 || org_id == 10693 || org_id ==10702 || org_id == 10697 || org_id ==10635)" width="50px" style="6%"> 超滤率 <br />(ml/h) </th>
78
-                  <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 !=31 && template_id !=34 && template_id !=35 && template_id !=38 && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=47 && template_id !=48 && template_id !=53 && template_id !=54 && template_id !=56 && template_id !=65 && org_id!=10432 && org_id!=10445 && org_id!=10375  && org_id!=10480 && org_id!=10551 && org_id!=10537 && org_id!=10597 && org_id!=10599 && org_id!=10580 && org_id!=10629 && org_id!=10617  && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635" width="50px" style="6%"> 超滤率 <br />(L/h) </th>
77
+                  <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 == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 65 || org_id == 10432 || org_id == 10445 || org_id == 10375 || org_id == 10480 || org_id == 10551  || org_id == 10537 || org_id ==10597 || org_id ==10599 || org_id == 10580 || org_id ==10629 || org_id ==10617 || org_id==10677|| org_id==10667 || org_id == 10693 || org_id ==10702 || org_id == 10697 || org_id ==10635 || org_id == 10723)" width="50px" style="6%"> 超滤率 <br />(ml/h) </th>
78
+                  <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 !=31 && template_id !=34 && template_id !=35 && template_id !=38 && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=47 && template_id !=48 && template_id !=53 && template_id !=54 && template_id !=56 && template_id !=65 && org_id!=10432 && org_id!=10445 && org_id!=10375  && org_id!=10480 && org_id!=10551 && org_id!=10537 && org_id!=10597 && org_id!=10599 && org_id!=10580 && org_id!=10629 && org_id!=10617  && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635 && org_id!=10723" width="50px" style="6%"> 超滤率 <br />(L/h) </th>
79 79
                   <th v-if="isShow('超滤率2')" width="60px">超滤率 <br />(ml/h) </th>
80 80
                   <th v-if="isShow('剩余肝素')" width="60px">剩余肝素 <br />(ml) </th>
81 81
                   <th v-if="isShow('置换量1')" width="50px" style="width:6%"> 置换量 <br />(L) </th>
@@ -113,7 +113,7 @@
113 113
                     <span v-if="item.monitor_diastolic_blood_pressure_one!=''&&item.monitor_diastolic_blood_pressure_one>0">/{{item.monitor_diastolic_blood_pressure_one?item.monitor_diastolic_blood_pressure_one:'未测'}}</span></td>
114 114
                   <td v-if="isShow('拒测血压')" >{{ item.is_pressure }}</td>
115 115
                   <td v-if="isShow('血压监测部位')">{{getBloodPressure(item.blood_pressure_monitoring_site)}}</td>
116
-                  <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
116
+                  <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:'/'}}</td>
117 117
                   <td v-if="isShow('脉搏1')">{{item.monitor_pulse_frequency_one?item.monitor_pulse_frequency_one:'/'}}</td>
118 118
                   <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
119 119
                   <td v-if="isShow('体温1')">{{item.monitor_temperature_one?item.monitor_temperature_one:'/'}}</td>
@@ -346,14 +346,14 @@
346 346
 
347 347
                           <van-field v-model="form.ultrafiltration_volume" @focus="inputFocus" @keydown='changeFocus' :required="isShow_title('超滤量')" v-if="isShow('超滤量')" type="number" input-align="right">
348 348
                               <template #label>
349
-                                  <span v-if="(template_id == 5 || 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 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || 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 || template_id == 65 || org_id == 10340  || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id == 10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id == 10635) && org_id!=10471" >超滤量(ml)</span>
349
+                                  <span v-if="(template_id == 5 || 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 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || 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 || template_id == 65 || org_id == 10340  || org_id == 10387 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id == 10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id == 10635 || org_id==10723) && org_id!=10471" >超滤量(ml)</span>
350 350
                                   <span v-else>超滤量(L)</span>
351 351
                               </template>
352 352
                           </van-field>
353 353
 
354 354
                           <van-field v-model="form.ultrafiltration_rate" @focus="inputFocus" @keydown='changeFocus' v-if="isShow('超滤率')" :required="isShow_title('超滤率')" type="number" input-align="right">
355 355
                               <template #label>
356
-                                  <span v-if="(template_id == 6 || 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 == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || 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 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10537 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id==10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id==10702 || org_id == 10697 || org_id == 10635) && org_id!=10471">超滤率(ml/h)</span>
356
+                                  <span v-if="(template_id == 6 || 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 == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || 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 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10445 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id ==10537 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id==10580 || org_id ==10629  || org_id ==10617 || org_id ==10677 || org_id ==10667 || org_id == 10693 || org_id==10702 || org_id == 10697 || org_id == 10635 || org_id == 10723) && org_id!=10471">超滤率(ml/h)</span>
357 357
                                   <span v-else>超滤率(L/h)</span>
358 358
                               </template>
359 359
                           </van-field>
@@ -375,7 +375,7 @@
375 375
 
376 376
                           <van-field v-model="form.replacement_rate" @focus="inputFocus" @keydown='changeFocus' v-if="isShow('置换率')" :required="isShow_title('置换率')" type="number" input-align="right">
377 377
                               <template #label>
378
-                                  <span v-if="(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 == 10340 || org_id == 10445 || org_id == 10410 || org_id ==10410 || org_id ==10617 || org_id ==10598 || org_id ==10677 || org_id ==10702) && org_id!=10558 && org_id!=10414 && org_id!=10677">置换率(ml/min)</span>
378
+                                  <span v-if="(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 == 10340 || org_id == 10445 || org_id == 10410 || org_id ==10410 || org_id ==10617 || org_id ==10598 || org_id ==10677 || org_id ==10702 || org_id == 10727) && org_id!=10558 && org_id!=10414 && org_id!=10677">置换率(ml/min)</span>
379 379
                                   <span v-else>置换率(L/h)</span>
380 380
                               </template>
381 381
                           </van-field>
@@ -598,7 +598,7 @@
598 598
                           <tr v-for="(item,index) in monitorRecords" :key="index" :value="item.value">
599 599
                               <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, '{y}-{m}-{d} {h}:{i}')}}</td>
600 600
                               <td v-if="isShow('血压')" >{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
601
-                              <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
601
+                              <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:'/'}}</td>
602 602
                               <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
603 603
                               <td v-if="isShow('呼吸频率')">{{item.breathing_rate?item.breathing_rate:'/'}}</td>
604 604
                               <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
@@ -2035,7 +2035,7 @@ methods: {
2035 2035
 
2036 2036
 
2037 2037
       //超滤率 超滤量自动计算
2038
-      if(this.org_id == 10597 || this.org_id ==10599 || this.org_id ==10587 || this.org_id ==10571 || this.org_id==10579 || this.org_id ==10600 || this.org_id ==10612 || this.org_id ==10617 || this.org_id ==10580 || this.org_id ==10375 || this.org_id ==10629 || this.org_id ==10480  || this.org_id ==10414 || this.org_id ==10679 || this.org_id ==10693 || this.org_id == 10694 || this.org_id == 10697 || this.org_id ==10702){
2038
+      if(this.org_id == 10597 || this.org_id ==10599 || this.org_id ==10587 || this.org_id ==10571 || this.org_id==10579 || this.org_id ==10600 || this.org_id ==10612 || this.org_id ==10617 || this.org_id ==10580 || this.org_id ==10375 || this.org_id ==10629 || this.org_id ==10480  || this.org_id ==10414 || this.org_id ==10679 || this.org_id ==10693 || this.org_id == 10694 || this.org_id == 10697 || this.org_id ==10702 || this.org_id ==10723){
2039 2039
 
2040 2040
         if(lastMonitorRecordList!=null){
2041 2041
           this.form.ultrafiltration_rate = lastMonitorRecordList.ultrafiltration_rate?lastMonitorRecordList.ultrafiltration_rate:""

+ 1 - 1
src/pages/main/template/DialysisPrintOrderSeventyeight.vue Datei anzeigen

@@ -857,7 +857,7 @@
857 857
                       <!-- 钠浓度(mmol/L)/温度°C -->
858 858
                       <td>
859 859
                         {{ monitor.sodium_concentration ? monitor.sodium_concentration : "0" }} /
860
-                        {{  monitor.temperature ? monitor.temperature : '0' }}
860
+                        {{  monitor.dialysate_temperature ? monitor.dialysate_temperature : '0' }}
861 861
                       </td>
862 862
                       <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: "/"}}</td>
863 863
                       <td >{{monitor.breathing_rate ? monitor.breathing_rate : "/"}}</td>

+ 3 - 2
src/pages/main/template/DialysisPrintOrderSeventythree.vue Datei anzeigen

@@ -478,8 +478,9 @@
478 478
                   <div class="inline_block" style="flex: 1">
479 479
                     透析时长:
480 480
                     <div class="under_line" style="width: 50px; text-align: center">
481
-                      {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "/" }}
482
-                    </div>h
481
+                      {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "/" }}h
482
+                      <span v-if="prescription.dialysis_duration_minute>0">{{prescription.dialysis_duration_minute}}min</span>
483
+                    </div>
483 484
                   </div>
484 485
                   <div class="inline_block" style="flex: 1">
485 486
                     <span >透析方式:</span>

+ 61 - 66
src/pages/main/template/DialysisPrintOrderSix.vue Datei anzeigen

@@ -39,7 +39,7 @@
39 39
         </div>
40 40
         <div class="inline_block" v-if="org_id!=10510">
41 41
           床号:
42
-            <div class="under_line" style="width: 50px;text-align: center;">
42
+            <div class="under_line" style="width: 100px;text-align: center;">
43 43
               {{ dialysisOrder&&dialysisOrder.DeviceNumber.number }}
44 44
               <!-- <span v-if="org_id!=9675 && org_id!=10447 && org_id!=10460"> {{'/'}}</span>
45 45
               <span v-if="org_id ==9675 || org_id==10447 || org_id == 10460"> {{dialysisOrder&&dialysisOrder.DeviceNumber&&dialysisOrder.DeviceNumber.number.length > 0?dialysisOrder.DeviceNumber.number:patientInfo.DialysisSchedule.device_number.number}}</span> -->
@@ -183,7 +183,7 @@
183 183
                     <div
184 184
                       class="under_line"
185 185
                       style="width: 100px;text-align: center"
186
-                     
186
+
187 187
                     >
188 188
                       {{  predialysis.puncture_way?predialysis.puncture_way:"/"}}
189 189
                     </div>
@@ -361,7 +361,7 @@
361 361
                   <div class="inline_block" style="margin-left:10px;flex:1;">
362 362
                     置换量:
363 363
                     <div class="under_line" style="width: 70px;text-align: center">
364
-                      <span v-if="org_id!=10206">{{prescription.displace_liqui_value?prescription.displace_liqui_value:'/'}}</span> 
364
+                      <span v-if="org_id!=10206">{{prescription.displace_liqui_value?prescription.displace_liqui_value:'/'}}</span>
365 365
                       <span v-if="org_id==10206">{{prescription.replacement_total?prescription.replacement_total:'/'}}</span>
366 366
                     </div>
367 367
                     L
@@ -378,11 +378,11 @@
378 378
                     <div class="under_line" style="width: 50px;text-align: center">
379 379
                       {{prescription.dialysis_duration_hour?prescription.dialysis_duration_hour:'/'}} h
380 380
                       {{prescription.dialysis_duration_minute?prescription.dialysis_duration_minute:'/'}}
381
-                      <span v-if="prescription.dialysis_duration_minute>0">min</span> 
381
+                      <span v-if="prescription.dialysis_duration_minute>0">min</span>
382 382
                     </div>
383
-                   
384
-                   
385
-                    
383
+
384
+
385
+
386 386
                   </div>
387 387
                 </div>
388 388
                 <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
@@ -414,7 +414,7 @@
414 414
                     <div class="under_line" style="width: 100px;text-align: center">
415 415
                       <!-- {{predialysis.weight_after_last_transparency?predialysis.weight_after_last_transparency:'未称重'}} -->
416 416
                       {{ lastWeight.weight_after?lastWeight.weight_after:"" }}
417
-                    
417
+
418 418
                     </div>
419 419
 
420 420
                     kg
@@ -446,8 +446,8 @@
446 446
                     <div class="under_line" style="width: 100px;text-align: center">
447 447
                       {{prescription.prescription_water?prescription.prescription_water:'/'}}
448 448
                     </div>
449
-                   <span v-if="org_id!=10679 && org_id!=10677 ">ml</span> 
450
-                   <span v-if="org_id ==10679 || org_id ==10677">ml</span> 
449
+                   <span v-if="org_id!=10679 && org_id!=10677 ">ml</span>
450
+                   <span v-if="org_id ==10679 || org_id ==10677">ml</span>
451 451
                   </div>
452 452
                 </div>
453 453
 
@@ -506,9 +506,9 @@
506 506
                       <span v-if="prescription.anticoagulant == 3">iu</span>
507 507
                       <span v-if="prescription.anticoagulant == 2">iu</span>
508 508
                       <span v-if="prescription.anticoagulant == 1">mg</span>
509
-                      <span v-if="prescription.anticoagulant == 14">
510
-                        <span v-if="org_id!=10644">mg</span> 
511
-                        <span v-if="org_id==10644">iu</span> 
509
+                      <span v-if="prescription.anticoagulant == 14 || prescription.anticoagulant == 19">
510
+                        <span v-if="org_id!=10644">mg</span>
511
+                        <span v-if="org_id==10644">iu</span>
512 512
                       </span>
513 513
                       <span v-if="prescription.anticoagulant == 17">U</span>
514 514
                     </span>
@@ -527,11 +527,11 @@
527 527
                      <span v-if="prescription.anticoagulant == 13">iu</span>
528 528
                      <span v-if="prescription.anticoagulant == 16">iu</span>
529 529
                      <span v-if="prescription.anticoagulant == 17">U</span>
530
-                     <span v-if="prescription.anticoagulant == 14">
531
-                      <span v-if="org_id!=10644">mg</span> 
532
-                      <span v-if="org_id==10644">iu</span> 
530
+                     <span v-if="prescription.anticoagulant == 14 || prescription.anticoagulant == 19">
531
+                      <span v-if="org_id!=10644">mg</span>
532
+                      <span v-if="org_id==10644">iu</span>
533 533
                      </span>
534
-                  
534
+
535 535
 
536 536
                     </span>
537 537
 
@@ -552,9 +552,9 @@
552 552
                         <span v-if="prescription.anticoagulant == 3">iu/h</span>
553 553
                         <span v-if="prescription.anticoagulant == 2">iu/h</span>
554 554
                         <span v-if="prescription.anticoagulant == 1">mg/h</span>
555
-                        <span v-if="prescription.anticoagulant == 14">
556
-                          <span v-if="org_id!=10644">mg/h</span> 
557
-                          <span v-if="org_id==10644">iu/h</span> 
555
+                        <span v-if="prescription.anticoagulant == 14 || prescription.anticoagulant == 19">
556
+                          <span v-if="org_id!=10644">mg/h</span>
557
+                          <span v-if="org_id==10644">iu/h</span>
558 558
                         </span>
559 559
                         <span v-if="prescription.anticoagulant == 17">U/h</span>
560 560
                      </span>
@@ -572,9 +572,9 @@
572 572
                         <span v-if="prescription.anticoagulant == 13">iu/h</span>
573 573
                         <span v-if="prescription.anticoagulant == 16">iu/h</span>
574 574
                         <span v-if="prescription.anticoagulant == 17">U/h</span>
575
-                        <span v-if="prescription.anticoagulant == 14">
576
-                          <span v-if="org_id!=10644">mg/h</span> 
577
-                          <span v-if="org_id==10644">iu/h</span> 
575
+                        <span v-if="prescription.anticoagulant == 14 || prescription.anticoagulant == 19">
576
+                          <span v-if="org_id!=10644">mg/h</span>
577
+                          <span v-if="org_id==10644">iu/h</span>
578 578
                         </span>
579 579
                     </span>
580 580
 
@@ -603,9 +603,9 @@
603 603
                       <span v-if="prescription.anticoagulant == 3">iu</span>
604 604
                       <span v-if="prescription.anticoagulant == 2">iu</span>
605 605
                       <span v-if="prescription.anticoagulant == 1">mg</span>
606
-                      <span v-if="prescription.anticoagulant == 14">
607
-                        <span v-if="org_id!=10644">mg</span> 
608
-                        <span v-if="org_id==10644">iu</span> 
606
+                      <span v-if="prescription.anticoagulant == 14 || prescription.anticoagulant == 19">
607
+                        <span v-if="org_id!=10644">mg</span>
608
+                        <span v-if="org_id==10644">iu</span>
609 609
                       </span>
610 610
                       <span v-if="prescription.anticoagulant == 17">U</span>
611 611
                      </span>
@@ -623,9 +623,9 @@
623 623
                       <span v-if="prescription.anticoagulant == 13">iu</span>
624 624
                       <span v-if="prescription.anticoagulant == 16">iu</span>
625 625
                       <span v-if="prescription.anticoagulant == 17">U</span>
626
-                      <span v-if="prescription.anticoagulant == 14">
627
-                        <span v-if="org_id!=10644">mg</span> 
628
-                        <span v-if="org_id==10644">iu</span> 
626
+                      <span v-if="prescription.anticoagulant == 14 || prescription.anticoagulant == 19">
627
+                        <span v-if="org_id!=10644">mg</span>
628
+                        <span v-if="org_id==10644">iu</span>
629 629
                       </span>
630 630
 
631 631
                     </span>
@@ -663,7 +663,7 @@
663 663
                   </div>
664 664
 
665 665
                   <div
666
-                   
666
+
667 667
                     class="inline_block"
668 668
                     style="flex:1; display:inline-block;"
669 669
                   >
@@ -755,16 +755,9 @@
755 755
                       <td width="60" v-if="org_id == 9919">血温(°C)</td>
756 756
                       <td width="60" v-if="org_id != 9836 && org_id!=9919 && org_id!=10679 && org_id!=10644">透析液温度(°C)</td>
757 757
 
758
-                      <td width="50" v-if="org_id != 10121 && org_id != 9675 && org_id != 0 && org_id!=10490 && org_id!=10679 && org_id!=10644" >电导度<br />(ms/cm)</td>
759
-                      
760
-                        <td
761
-                          width="50"
762
-                          v-if="
763
-                            org_id == 10490 
764
-                          "
765
-                        >
766
-                        置换液速度<br />(ml/h)
767
-                        </td>
758
+                      <td width="50" v-if="org_id != 10121 && org_id != 9675 && org_id != 0 && org_id!=10490 && org_id!=10679 && org_id!=10644 && org_id!=10567 && org_id!=10724" >电导度<br />(ms/cm)</td>
759
+                      <td width="50" v-if="org_id ==10567 || org_id== 0 || org_id == 10724">钠浓度</br> (mmol/L)</td>
760
+                      <td width="50" v-if="org_id == 10490">置换液速度<br />(ml/h)</td>
768 761
                       <td width="50" v-if="org_id !=3877 && org_id!=10449&& org_id!=10683">超滤量<br/>
769 762
                         <span v-if="org_id!=10471"> (ml)</span>
770 763
                         <span v-if="org_id==10471">L</span>
@@ -777,7 +770,7 @@
777 770
                         >
778 771
                           SpO₂<br />(%)
779 772
                         </td>
780
-                      <td width="50" v-if="org_id ==10683">超滤率<br/>(ml/h)</td>
773
+                      <td width="50" v-if="org_id ==10683 || org_id ==10567 || org_id ==10724">超滤率<br/>(ml/h)</td>
781 774
                       <td width="50" v-if="org_id == 10375">置换率<br/>(ml/min)</td>
782 775
                       <td
783 776
                           width="50"
@@ -790,9 +783,10 @@
790 783
                       <td width="50" v-if="org_id == 10449 || org_id == 3877">累计超滤量<br/>(ml)</td>
791 784
                       <td v-if="(org_id!=10683 && (prescription.mode_id==2 || prescription.mode_id==5 || prescription.mode_id== 12))" width="50">置换量<br/>(ml)</td>
792 785
                       <td width="50" v-if="org_id == 3877 || org_id == 10449">滤前压<br/>(mmHg)</td>
793
-                      <td width="50" v-if="org_id == 9538|| org_id == 9675 || org_id ==10629">KT/V</td>
786
+                      <td width="50" v-if="org_id == 9538|| org_id == 9675 || org_id ==10629 || org_id == 10567 || org_id ==10724">KT/V</td>
794 787
                       <td width="50" v-if="org_id == 9919">在线尿素监测</td>
795
-                      <td width="50" v-if="org_id != 9919 && org_id!=9538 && org_id!=9675 && org_id!=10617 && org_id!=10629&&org_id!=10644&& org_id!=10679&& org_id!=10683 && org_id!=9829">KT/V</td>
788
+                      <td width="50" v-if="org_id != 9919 && org_id!=9538 && org_id!=9675 && org_id!=10617 && org_id!=10629&&org_id!=10644&& org_id!=10679&& org_id!=10683 && org_id!=9829 && org_id!=10567 && org_id!=10724">KT/V</td>
789
+                      
796 790
                       <td width="50" v-if="org_id == 9538|| org_id == 9675 || org_id == 9919">血容量<br />(L)</td>
797 791
                       <td width="50" v-if="org_id ==10490">碳酸氢钠用量<br />(ml)</td>
798 792
                       <td width="200">病情变化及处理</td>
@@ -811,23 +805,24 @@
811 805
                       <td v-if="monitor.operate_time <= dialysisOrder.end_time && monitor.operate_time >= dialysisOrder.start_time"> {{  monitor.transmembrane_pressure ? monitor.transmembrane_pressure : 0 }} </td>
812 806
                       <td v-if="org_id != 9836 && org_id!=10679 && org_id!=10644 ">{{monitor.dialysate_temperature? monitor.dialysate_temperature: ""}}</td>
813 807
                       <td v-if="org_id == 9836">{{ monitor.temperature ? monitor.temperature : "" }}</td>
814
-                 
815
-                      <td v-if="org_id != 9538 &&org_id != 10121 &&org_id != 9675 &&org_id != 0 && org_id!=10679 && org_id!=10644">{{ monitor.conductivity ? monitor.conductivity : "" }}</td>
808
+
809
+                      <td v-if="org_id != 9538 &&org_id != 10121 &&org_id != 9675 &&org_id != 0 && org_id!=10679 && org_id!=10644 && org_id!=10567 && org_id!=10724">{{ monitor.conductivity ? monitor.conductivity : "" }}</td>
810
+                      <td width="50" v-if="org_id == 10567 || org_id ==10724"> {{ monitor.sodium_concentration }}</td>
816 811
                       <td v-if="org_id == 10490 ">{{monitor.replacement_speed? monitor.replacement_speed: ""}}</td>
817 812
                       <td v-if="org_id == 9538">{{monitor.sodium_concentration? monitor.sodium_concentration: ""}}</td>
818 813
                       <td v-if="org_id!=10683">
819 814
                         <span v-if="org_id == 10440 || org_id ==10644 || org_id ==10679 "> {{monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "0"}}</span>
820
-                         <span v-if="org_id != 10440 && org_id!=10644 && org_id!=10679"> 
815
+                         <span v-if="org_id != 10440 && org_id!=10644 && org_id!=10679">
821 816
                            <span v-if="org_id==10617">
822
-                             <span v-if="monindex == 0 || monindex == monitors.length-1">{{monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "/"}}</span> 
823
-                             <span v-if="monindex != 0 && monindex != monitors.length-1">{{monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "0"}}</span> 
824
-                           </span>  
817
+                             <span v-if="monindex == 0 || monindex == monitors.length-1">{{monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "/"}}</span>
818
+                             <span v-if="monindex != 0 && monindex != monitors.length-1">{{monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "0"}}</span>
819
+                           </span>
825 820
                            <span v-if="org_id!=10617">{{monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: ""}}</span>
826 821
                         </span>
827
-                       
822
+
828 823
                       </td>
829
-                      <td v-if="org_id == 10121 || org_id == 9675 || org_id == 0 || org_id == 9829">{{monitor.blood_oxygen_saturation? monitor.blood_oxygen_saturation: ""}}</td>
830
-                      <td width="50" v-if="org_id ==10683">
824
+                      <td v-if="org_id == 10121 || org_id == 9675 || org_id == 0 || org_id == 9829 ">{{monitor.blood_oxygen_saturation? monitor.blood_oxygen_saturation: ""}}</td>
825
+                      <td width="50" v-if="org_id ==10683 || org_id == 10567 || org_id == 0 || org_id ==10724">
831 826
                         <br/>{{ monitor.ultrafiltration_rate? monitor.ultrafiltration_rate:"" }}</td>
832 827
                       <td v-if="org_id == 10375">
833 828
                          {{ monitor.replacement_rate }}
@@ -844,7 +839,7 @@
844 839
                       <td v-if="(org_id!=10683 && (prescription.mode_id==2 || prescription.mode_id==5 || prescription.mode_id== 12))"  width="50" >{{ monitor.displacement_quantity ? monitor.displacement_quantity : "" }}</td>
845 840
 
846 841
                       <td width="50" v-if="org_id == 3877 || org_id == 10449">{{monitor.filter_pressure }}</td>
847
-                      <td width="50" v-if="org_id == 9919 || org_id == 9538|| org_id == 9675 || org_id ==10629 || org_id ==10517">
842
+                      <td width="50" v-if="org_id == 9919 || org_id == 9538|| org_id == 9675 || org_id ==10629 || org_id ==10517  || org_id == 10567 || org_id ==10724">
848 843
                           {{ monitor.ktv }}
849 844
                       </td>
850 845
                         <td width="50" v-if="org_id == 9538|| org_id == 9675 || org_id == 9919">
@@ -856,8 +851,8 @@
856 851
                         <div style="min-height:35px;line-height:35px; overflow:hidden;">
857 852
                           <span  style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
858 853
                             <template v-if=" monitor.operate_time == dialysisOrder.start_time " >
859
-                               <span v-if="org_id!=10683">【开始透析】</span> 
860
-                             </template > 
854
+                               <span v-if="org_id!=10683">【开始透析】</span>
855
+                             </template >
861 856
                               {{ monitor.end }} {{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
862 857
                           </span>
863 858
                         </div>
@@ -872,8 +867,8 @@
872 867
                       <td> </td>
873 868
                       <td> </td>
874 869
                       <td> </td>
875
-                      <td v-if="org_id!=10679 && org_id!=10644"> </td>
876
-                      <td v-if="org_id!=10679&& org_id!=10644"> </td>
870
+                      <td v-if="org_id!=10679 && org_id!=10644 && org_id!=0 && org_id!=10567 && org_id!=10724"> </td>
871
+                      <td v-if="org_id!=10679&& org_id!=10644 && org_id!=0 && org_id!=10567 && org_id!=10724"> </td>
877 872
                       <td v-if="org_id == 10375"> </td>
878 873
                       <td v-if="org_id ==10478"> </td>
879 874
                       <td v-if="org_id == 3877 || org_id == 10449"></td>
@@ -1010,11 +1005,11 @@
1010 1005
           </div>
1011 1006
           <div class="inline_block" v-if="org_id!=10510">
1012 1007
             床号:
1013
-              <div class="under_line" style="width: 50px;text-align: center;">
1014
-               
1008
+              <div class="under_line" style="width: 100px;text-align: center;">
1009
+
1015 1010
                 {{ dialysisOrder&&dialysisOrder.DeviceNumber.number }}
1016 1011
                 <!-- {{dialysisOrder&&dialysisOrder.DeviceNumber&&dialysisOrder.DeviceNumber.number.length > 0?dialysisOrder.DeviceNumber.number:patientInfo.DialysisSchedule.device_number.number}} -->
1017
-              
1012
+
1018 1013
               </div>
1019 1014
           </div>
1020 1015
           <div class="inline_block" v-if="org_id!=10633">
@@ -1190,11 +1185,11 @@
1190 1185
                   <div class="under_line" style="width: 50px;text-align: center">
1191 1186
                     {{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:'/'}}
1192 1187
                   </div>
1193
-                  <span v-if="org_id!=9675&&org_id!=10447">
1188
+                  <span v-if="org_id!=9675&&org_id!=10447 &&org_id!=10471">
1194 1189
                     ml
1195 1190
                   </span>
1196 1191
 
1197
-                  <span v-if="org_id==9675||org_id==10447">
1192
+                  <span v-if="org_id==9675||org_id==10447 || org_id == 10471">
1198 1193
                    L
1199 1194
                   </span>
1200 1195
 
@@ -1224,7 +1219,7 @@
1224 1219
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;" v-if="org_id == 10375">
1225 1220
                 <div class="inline_block" style="flex:1;">
1226 1221
                   宣教知识:
1227
-               
1222
+
1228 1223
                   <div style="width: 860px;line-height: 25px;text-align: left;margin-left: 2px;display: inline-block;white-space: normal;"> {{summary.mission?summary.mission:'/'}}</div>
1229 1224
 
1230 1225
                 </div>
@@ -1918,14 +1913,14 @@ export default {
1918 1913
             if(this.org_id!=10683){
1919 1914
               this.monitors[index].end = '【结束透析】'
1920 1915
             }
1921
-             
1916
+
1922 1917
               tempmonitorflag = false
1923 1918
             }
1924 1919
             if (tempmonitorflag && index == this.monitors.length - 1) {
1925 1920
               if(this.org_id!=10683){
1926 1921
                 this.monitors[index].end = '【结束透析】'
1927 1922
               }
1928
-             
1923
+
1929 1924
             }
1930 1925
           }
1931 1926
         }
@@ -2091,7 +2086,7 @@ export default {
2091 2086
         }
2092 2087
         this.totollength = this.doctor_advices.length + this.monitors.length
2093 2088
         console.log(this.advice_groups)
2094
-       
2089
+
2095 2090
       } else {
2096 2091
         this.loading = false
2097 2092
         this.$message.error('请求数据失败')

+ 6 - 6
src/pages/main/template/DialysisPrintOrderSixtyTwo.vue Datei anzeigen

@@ -506,15 +506,15 @@
506 506
               <span style="display:inline-block;margin-left:15px;"
507 507
                 >实际治疗时长:
508 508
                 {{
509
-                  prescription.dialysis_duration_hour
510
-                    ? prescription.dialysis_duration_hour
509
+                  afterdialysis.actual_treatment_hour
510
+                    ? afterdialysis.actual_treatment_hour
511 511
                     : "0"
512 512
                 }}小时{{
513
-                  prescription.dialysis_duration_minute
514
-                    ? prescription.dialysis_duration_minute
513
+                  afterdialysis.actual_treatment_minute
514
+                    ? afterdialysis.actual_treatment_minute
515 515
                     : "0"
516
-                }}分钟</span
517
-              >
516
+                }}分钟
517
+              </span>
518 518
             </td>
519 519
             
520 520
             <td style="text-align:left;" colspan="3">

+ 14 - 5
src/pages/main/template/DialysisPrintOrderSixtyeight.vue Datei anzeigen

@@ -455,7 +455,7 @@
455 455
                     <span v-if="org_id == 9829 || org_id==10440 || org_id==10469 || org_id==10471|| org_id == 10460">ml</span>
456 456
                     <span v-if="org_id!= 9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10460"> L</span>
457 457
                   </div>
458
-                  <div class="inline_block" style="flex:1;">
458
+                  <div class="inline_block" style="flex:1;" v-if="org_id!=10551">
459 459
                     处方脱水量:
460 460
                     <div class="under_line" style="width: 100px;text-align: center">
461 461
                       {{prescription.prescription_water?prescription.prescription_water:'/'}}
@@ -699,7 +699,7 @@
699 699
                       <td width="50" v-if="org_id == 3877 || org_id == 10449">滤前压<br/>(mmHg)</td>
700 700
                       <td width="50" v-if="org_id == 9538|| org_id == 9675">KT/V</td>
701 701
                       <td width="50" v-if="org_id == 9919">在线尿素监测</td>
702
-                      <td width="50" v-if="org_id != 9919 && org_id!=9538 && org_id!=9675 && org_id!=10677">KT/V</td>
702
+                      <td width="50" v-if="org_id != 9919 && org_id!=9538 && org_id!=9675 && org_id!=10677 && org_id!=10551">KT/V</td>
703 703
                       <td width="50" v-if="org_id == 9538|| org_id == 9675 || org_id == 9919">血容量<br />(L)</td>
704 704
                       <td width="50" v-if="org_id ==10490">碳酸氢钠用量<br />(ml)</td>
705 705
                       <td width="200">病情变化及处理</td>
@@ -756,8 +756,8 @@
756 756
                       <td> </td>
757 757
                       <td> </td>
758 758
                       <td> </td>
759
-                      <td> </td>
760
-                      <td> </td>
759
+                      <td v-if="org_id!=10551"> </td>
760
+                      <td v-if="org_id!=10551"> </td>
761 761
                       <td v-if="org_id!=10677"> </td>
762 762
                       <td v-if="org_id == 10375"> </td>
763 763
                       <td v-if="org_id ==10478"> </td>
@@ -987,7 +987,16 @@
987 987
                 <div class="inline_block" style="margin-left:10px;flex:1.5;">
988 988
                   实际治疗时间:
989 989
                   <div class="under_line" style="width: 20px;text-align: center">
990
-                    {{afterdialysis.actual_treatment_hour?afterdialysis.actual_treatment_hour:'/'}}
990
+                    <!-- {{afterdialysis.actual_treatment_hour?afterdialysis.actual_treatment_hour:'/'}} -->
991
+                    {{
992
+                      afterdialysis.actual_treatment_hour
993
+                        ? afterdialysis.actual_treatment_hour
994
+                        : "0"
995
+                    }}小时{{
996
+                      afterdialysis.actual_treatment_minute
997
+                        ? afterdialysis.actual_treatment_minute
998
+                        : "0"
999
+                    }}分钟
991 1000
                   </div>
992 1001
                   h
993 1002
                   <div class="under_line" style="width: 20px;text-align: center">

+ 1 - 1
src/pages/main/today/assessmentAfter.vue Datei anzeigen

@@ -32,7 +32,7 @@
32 32
         <li v-if="isShow('实际超滤量')">
33 33
           <label for="sjcll">实际超滤量: </label>
34 34
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
35
-          <span v-if="(template_id == 6&& $store.getters.user.template_info.org_id !=10447) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 60 || this.$store.getters.user.template_info.org_id == 9555 || template_id == 27  || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10387 ||  $store.getters.user.template_info.org_id == 10430 ||  $store.getters.user.template_info.org_id == 10432 ||  $store.getters.user.template_info.org_id == 10441  ||  $store.getters.user.template_info.org_id == 10445 ||  $store.getters.user.template_info.org_id == 10410 ||  $store.getters.user.template_info.org_id == 10495 || $store.getters.user.template_info.org_id == 10375 || $store.getters.user.template_info.org_id == 10551 || $store.getters.user.template_info.org_id == 10597 || $store.getters.user.template_info.org_id == 10599 || $store.getters.user.template_info.org_id == 10629 || $store.getters.user.template_info.org_id == 10677 || $store.getters.user.template_info.org_id == 10667 || $store.getters.user.template_info.org_id == 10480 || $store.getters.user.template_info.org_id == 10693 || $store.getters.user.template_info.org_id == 10702  || $store.getters.user.template_info.org_id == 10697 || $store.getters.user.template_info.org_id == 10635" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
35
+          <span v-if="(template_id == 6&& $store.getters.user.template_info.org_id !=10447 && $store.getters.user.template_info.org_id !=10471) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 60 || this.$store.getters.user.template_info.org_id == 9555 || template_id == 27  || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10387 ||  $store.getters.user.template_info.org_id == 10430 ||  $store.getters.user.template_info.org_id == 10432 ||  $store.getters.user.template_info.org_id == 10441  ||  $store.getters.user.template_info.org_id == 10445 ||  $store.getters.user.template_info.org_id == 10410 ||  $store.getters.user.template_info.org_id == 10495 || $store.getters.user.template_info.org_id == 10375 || $store.getters.user.template_info.org_id == 10551 || $store.getters.user.template_info.org_id == 10597 || $store.getters.user.template_info.org_id == 10599 || $store.getters.user.template_info.org_id == 10629 || $store.getters.user.template_info.org_id == 10677 || $store.getters.user.template_info.org_id == 10667 || $store.getters.user.template_info.org_id == 10480 || $store.getters.user.template_info.org_id == 10693 || $store.getters.user.template_info.org_id == 10702  || $store.getters.user.template_info.org_id == 10697 || $store.getters.user.template_info.org_id == 10635 || $store.getters.user.template_info.org_id == 10723" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
36 36
           <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
37 37
         </li>
38 38
         <li v-if="isShow('透析器')">

+ 4 - 4
src/pages/main/today/dialysisMonitoring.vue Datei anzeigen

@@ -22,11 +22,11 @@
22 22
           <th v-if="isShow('血流量1')" width="60px"> 血流量 <br />(ml/min) </th>
23 23
           <th v-if="isShow('跨膜压')" width="60px">  跨膜压 <br />({{tableDate[0]&&tableDate[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
24 24
           <th v-if="isShow('跨膜压1')" width="60px">  跨膜压 <br />({{tableDate[0]&&tableDate[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}) </th>
25
-          <th v-if="isShow('超滤量') && (template_id == 5 || template_id == 6 ||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 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10597 || org_id == 10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id == 10677 || org_id == 10667  || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id ==10635) && org_id!=10471" width="60px" > 超滤量 <br />(ml) </th>
26
-          <th v-if="isShow('超滤量') && (template_id != 5 && template_id != 6 && 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 && org_id != 9555 && template_id != 27 && template_id != 29 && template_id != 30 && template_id != 31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44  && template_id!=46  && template_id!=47 && template_id!=53 && template_id!=54 && template_id!=56 && template_id!=60 && template_id!=65 && org_id != 10340 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375 && org_id!=10480  && org_id!=10551&& org_id!=10597 && org_id!=10599&&org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635) || org_id == 10471" width="60px" > 超滤量 <br />(L) </th>
25
+          <th v-if="isShow('超滤量') && (template_id == 5 || template_id == 6 ||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 || org_id == 9555 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 9 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || template_id == 65 || org_id == 10340 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10597 || org_id == 10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id == 10677 || org_id == 10667  || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id ==10635 || org_id == 10723) && org_id!=10471" width="60px" > 超滤量 <br />(ml) </th>
26
+          <th v-if="isShow('超滤量') && (template_id != 5 && template_id != 6 && 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 && org_id != 9555 && template_id != 27 && template_id != 29 && template_id != 30 && template_id != 31 && template_id !=9 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id!=40 && template_id!=41 && template_id!=43 && template_id!=44  && template_id!=46  && template_id!=47 && template_id!=53 && template_id!=54 && template_id!=56 && template_id!=60 && template_id!=65 && org_id != 10340 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375 && org_id!=10480  && org_id!=10551&& org_id!=10597 && org_id!=10599&&org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677 && org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635 && org_id!=10723) || org_id == 10471" width="60px" > 超滤量 <br />(L) </th>
27 27
           <th v-if="isShow('超滤量1')" width="60px" > 超滤量 <br />(ml) </th>
28
-          <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 == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || 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 ||  template_id == 65 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10585 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id ==10677|| org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id ==10635) && org_id!=10471" width="50px"> 超滤率 <br />(ml/h) </th>
29
-          <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 !=31 && template_id !=32 && template_id !=34 && template_id !=35 && template_id !=36 && 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  && template_id !=65 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375  && org_id!=10480  && org_id!=10551 && org_id!=10597 && org_id!=10599 && org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677&& org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635) || org_id == 10471"  width="50px"> 超滤率 <br />(L/h) </th>
28
+          <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 == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || 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 ||  template_id == 65 || org_id == 10432 || org_id == 10410 || org_id == 10485 || org_id == 10375 || org_id == 10480 || org_id == 10551 || org_id == 10585 || org_id ==10597 || org_id ==10599 || org_id ==10612 || org_id ==10580 || org_id ==10629 || org_id ==10617 || org_id ==10677|| org_id ==10667 || org_id == 10693 || org_id == 10702 || org_id == 10697 || org_id ==10635 || org_id == 10723) && org_id!=10471" width="50px"> 超滤率 <br />(ml/h) </th>
29
+          <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 !=31 && template_id !=32 && template_id !=34 && template_id !=35 && template_id !=36 && 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  && template_id !=65 && org_id != 10432 && org_id != 10410 && org_id!=10485 && org_id!=10375  && org_id!=10480  && org_id!=10551 && org_id!=10597 && org_id!=10599 && org_id!=10612 && org_id!=10580 && org_id!=10629 && org_id!=10617 && org_id!=10677&& org_id!=10667 && org_id!=10693 && org_id!=10702 && org_id!=10697 && org_id!=10635 && org_id!=10723) || org_id == 10471"  width="50px"> 超滤率 <br />(L/h) </th>
30 30
           <th v-if="isShow('超滤率2')" width="60px">超滤率 <br />(ml/h)</th>
31 31
           <th v-if="isShow('钠浓度')" width="60px"> 钠浓度 <br />(mmol/L) </th>
32 32
           <th v-if="isShow('钠浓度1')" width="60px"> 钠浓度 <br />(mmol/L) </th>

+ 9 - 4
src/pages/main/today/dialysisPrescription.vue Datei anzeigen

@@ -16,8 +16,8 @@
16 16
         <li v-if="isShow('目标超滤量')">
17 17
           <label>目标超滤量 :</label>
18 18
           <span class="content">{{target_ultrafiltration != '0'?target_ultrafiltration:''}}</span>
19
-          <span v-if="this.$store.getters.user.template_info.template_id != 9 && this.$store.getters.user.template_info.template_id != 17 && this.$store.getters.user.template_info.template_id != 20 && this.$store.getters.user.template_info.template_id != 21 && this.$store.getters.user.template_info.template_id != 22 && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 24 && this.$store.getters.user.template_info.template_id != 26 && this.$store.getters.user.template_info.template_id != 28 && this.$store.getters.user.template_info.org_id!=9555 && this.$store.getters.user.template_info.template_id != 27  && this.$store.getters.user.template_info.template_id != 30  && this.$store.getters.user.template_info.template_id != 32 && this.$store.getters.user.template_info.template_id != 38 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 43 && this.$store.getters.user.template_info.template_id != 45  && this.$store.getters.user.template_info.template_id != 46 && this.$store.getters.user.template_info.template_id != 48 && this.$store.getters.user.template_info.template_id != 56 &&  this.$store.getters.user.template_info.org_id!=10395 &&  this.$store.getters.user.template_info.org_id!=10340 && this.$store.getters.user.template_info.template_id != 60 &&  this.$store.getters.user.template_info.org_id!=10430 &&  this.$store.getters.user.template_info.org_id!=10432 &&  this.$store.getters.user.template_info.org_id!=10441 && this.$store.getters.user.template_info.org_id!=10445 && this.$store.getters.user.template_info.org_id!=9829 && this.$store.getters.user.template_info.org_id!=10440 && this.$store.getters.user.template_info.org_id!=10469 && this.$store.getters.user.template_info.org_id!=10460 && this.$store.getters.user.template_info.org_id!=10644 && this.$store.getters.user.template_info.org_id!=10667" class="unit" >{{target_ultrafiltration != '0'?"L":''}}</span>
20
-          <span v-if="this.$store.getters.user.template_info.template_id == 9 || this.$store.getters.user.template_info.template_id == 17 || this.$store.getters.user.template_info.template_id == 20 || this.$store.getters.user.template_info.template_id == 21 || this.$store.getters.user.template_info.template_id == 22 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 24 || this.$store.getters.user.template_info.template_id == 26 || this.$store.getters.user.template_info.template_id == 28 || this.$store.getters.user.template_info.org_id==9555 || this.$store.getters.user.template_info.template_id==27 || this.$store.getters.user.template_info.template_id == 30 || this.$store.getters.user.template_info.template_id == 32 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 43 || this.$store.getters.user.template_info.template_id == 45 || this.$store.getters.user.template_info.template_id == 46 || this.$store.getters.user.template_info.template_id == 48 || this.$store.getters.user.template_info.template_id == 56 || this.$store.getters.user.template_info.org_id==10395 || this.$store.getters.user.template_info.org_id ==10340  || this.$store.getters.user.template_info.template_id == 60 || this.$store.getters.user.template_info.org_id ==10430 || this.$store.getters.user.template_info.org_id ==10432  || this.$store.getters.user.template_info.org_id ==10441 || this.$store.getters.user.template_info.org_id ==10445 || this.$store.getters.user.template_info.org_id ==9829 || this.$store.getters.user.template_info.org_id ==10440 || this.$store.getters.user.template_info.org_id == 10469 ||  this.$store.getters.user.template_info.org_id == 10460 ||  this.$store.getters.user.template_info.org_id == 10644 ||  this.$store.getters.user.template_info.org_id == 10667" class="unit" >{{target_ultrafiltration != '0'?"ml":''}}</span>
19
+          <span v-if="this.$store.getters.user.template_info.template_id != 9 && this.$store.getters.user.template_info.template_id != 17 && this.$store.getters.user.template_info.template_id != 20 && this.$store.getters.user.template_info.template_id != 21 && this.$store.getters.user.template_info.template_id != 22 && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 24 && this.$store.getters.user.template_info.template_id != 26 && this.$store.getters.user.template_info.template_id != 28 && this.$store.getters.user.template_info.org_id!=9555 && this.$store.getters.user.template_info.template_id != 27  && this.$store.getters.user.template_info.template_id != 30  && this.$store.getters.user.template_info.template_id != 32 && this.$store.getters.user.template_info.template_id != 38 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 43 && this.$store.getters.user.template_info.template_id != 45  && this.$store.getters.user.template_info.template_id != 46 && this.$store.getters.user.template_info.template_id != 48 && this.$store.getters.user.template_info.template_id != 56 &&  this.$store.getters.user.template_info.org_id!=10395 &&  this.$store.getters.user.template_info.org_id!=10340 && this.$store.getters.user.template_info.template_id != 60 &&  this.$store.getters.user.template_info.org_id!=10430 &&  this.$store.getters.user.template_info.org_id!=10432 &&  this.$store.getters.user.template_info.org_id!=10441 && this.$store.getters.user.template_info.org_id!=10445 && this.$store.getters.user.template_info.org_id!=9829 && this.$store.getters.user.template_info.org_id!=10440 && this.$store.getters.user.template_info.org_id!=10469 && this.$store.getters.user.template_info.org_id!=10460 && this.$store.getters.user.template_info.org_id!=10644 && this.$store.getters.user.template_info.org_id!=10667 && this.$store.getters.user.template_info.org_id!=10723&& this.$store.getters.user.template_info.org_id!=10727" class="unit" >{{target_ultrafiltration != '0'?"L":''}}</span>
20
+          <span v-if="this.$store.getters.user.template_info.template_id == 9 || this.$store.getters.user.template_info.template_id == 17 || this.$store.getters.user.template_info.template_id == 20 || this.$store.getters.user.template_info.template_id == 21 || this.$store.getters.user.template_info.template_id == 22 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 24 || this.$store.getters.user.template_info.template_id == 26 || this.$store.getters.user.template_info.template_id == 28 || this.$store.getters.user.template_info.org_id==9555 || this.$store.getters.user.template_info.template_id==27 || this.$store.getters.user.template_info.template_id == 30 || this.$store.getters.user.template_info.template_id == 32 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 43 || this.$store.getters.user.template_info.template_id == 45 || this.$store.getters.user.template_info.template_id == 46 || this.$store.getters.user.template_info.template_id == 48 || this.$store.getters.user.template_info.template_id == 56 || this.$store.getters.user.template_info.org_id==10395 || this.$store.getters.user.template_info.org_id ==10340  || this.$store.getters.user.template_info.template_id == 60 || this.$store.getters.user.template_info.org_id ==10430 || this.$store.getters.user.template_info.org_id ==10432  || this.$store.getters.user.template_info.org_id ==10441 || this.$store.getters.user.template_info.org_id ==10445 || this.$store.getters.user.template_info.org_id ==9829 || this.$store.getters.user.template_info.org_id ==10440 || this.$store.getters.user.template_info.org_id == 10469 ||  this.$store.getters.user.template_info.org_id == 10460 ||  this.$store.getters.user.template_info.org_id == 10644 ||  this.$store.getters.user.template_info.org_id == 10667 || this.$store.getters.user.template_info.org_id == 10723 || this.$store.getters.user.template_info.org_id == 10727" class="unit" >{{target_ultrafiltration != '0'?"ml":''}}</span>
21 21
           <!--<span-->
22 22
           <!--class="unit"-->
23 23
           <!--v-if="this.$store.getters.user.template_info.template_id == 6"-->
@@ -119,9 +119,11 @@
119 119
             <span class="unit" v-if="this.prescription.anticoagulant == 16">{{anticoagulant_shouji != '0'?"iu":""}}</span>
120 120
             <span class="unit" v-if="this.prescription.anticoagulant == 17">{{anticoagulant_shouji != '0'?"U":""}}</span>
121 121
             <span class="unit" v-if="this.prescription.anticoagulant == 14">{{anticoagulant_shouji != '0'?"iu":""}}</span>
122
+            <span class="unit" v-if="this.prescription.anticoagulant == 15">{{anticoagulant_shouji != '0'?"mg":""}}</span>
122 123
           </span>
123 124
           <span v-else>
124 125
             <span class="unit" v-if="this.prescription.anticoagulant == 2">{{anticoagulant_shouji != '0'?"mg":""}}</span>
126
+            <span class="unit" v-if="this.prescription.anticoagulant == 15">{{anticoagulant_shouji != '0'?"mg":""}}</span>
125 127
             <span class="unit" v-else>{{anticoagulant_shouji != '0'?"iu":""}}</span>
126 128
           </span>
127 129
         </li>
@@ -161,6 +163,7 @@
161 163
             <span class="unit" v-if="this.prescription.anticoagulant == 16">{{anticoagulant_weichi != '0'?"iu/h":""}}</span>
162 164
             <span class="unit" v-if="this.prescription.anticoagulant == 14">{{anticoagulant_weichi != '0'?"iu/h":""}}</span>
163 165
             <span class="unit" v-if="this.prescription.anticoagulant == 17">{{anticoagulant_weichi != '0'?"U/h":""}}</span>
166
+            <span class="unit" v-if="this.prescription.anticoagulant == 15">{{anticoagulant_weichi != '0'?"mg/h":""}}</span>
164 167
           </span>
165 168
         </li>
166 169
 
@@ -193,10 +196,12 @@
193 196
             <span class="unit" v-if="this.prescription.anticoagulant == 16">{{anticoagulant_zongliang != '0'?"iu":""}}</span>
194 197
             <span class="unit" v-if="this.prescription.anticoagulant == 17">{{anticoagulant_zongliang != '0'?"U":""}}</span>
195 198
             <span class="unit" v-if="this.prescription.anticoagulant == 14">{{anticoagulant_zongliang != '0'?"iu":""}}</span>
199
+            <span class="unit" v-if="this.prescription.anticoagulant == 15">{{anticoagulant_zongliang != '0'?"mg":""}}</span>
196 200
           </span>
197 201
           <span v-else>
198 202
             <span class="unit" v-if="this.prescription.anticoagulant == 2">{{anticoagulant_zongliang != '0'?"mg":""}}</span>
199 203
             <span class="unit" v-else>{{anticoagulant_zongliang != '0'?"iu":""}}</span>
204
+            <span class="unit" v-if="this.prescription.anticoagulant == 15">{{anticoagulant_shouji != '0'?"mg":""}}</span>
200 205
           </span>
201 206
         </li>
202 207
 
@@ -278,8 +283,8 @@
278 283
         <li v-if="isShow('置换液总量') &&  dialysis_mode == 'HDF'">
279 284
           <label>置换液总量: </label>
280 285
           <span class="content">{{getDisplaceLiquiValue() != '0'? getDisplaceLiquiValue():''}}</span>
281
-          <span v-if="this.$store.getters.user.template_info.template_id == 21 && this.$store.getters.user.template_info.template_id  != 53 && this.$store.getters.user.template_info.template_id !=10441" class="unit">{{getDisplaceLiquiValue() !='0'?"ml":""}}</span>
282
-          <span v-if="(this.$store.getters.user.template_info.template_id != 21 ||  this.$store.getters.user.template_info.template_id  == 53 || this.$store.getters.user.template_info.template_id==10441)" class="unit">{{getDisplaceLiquiValue() !='0'?"L":""}}</span>
286
+          <span v-if="this.$store.getters.user.template_info.template_id == 21 || $store.getters.user.template_info.org_id==10206 && this.$store.getters.user.template_info.template_id  != 53 && this.$store.getters.user.template_info.template_id !=10441" class="unit">{{getDisplaceLiquiValue() !='0'?"ml":""}}</span>
287
+          <span v-if="(this.$store.getters.user.template_info.template_id != 21 ||  this.$store.getters.user.template_info.template_id  == 53 || this.$store.getters.user.template_info.template_id==10441) && $store.getters.user.template_info.org_id!=10206" class="unit">{{getDisplaceLiquiValue() !='0'?"L":""}}</span>
283 288
 
284 289
         </li>
285 290
 

+ 30 - 0
src/store/modules/globalConfig.js Datei anzeigen

@@ -824,6 +824,21 @@ const global_config = {
824 824
         sodium: 1,
825 825
         calcium: 1,
826 826
         bicarbonate: 1
827
+      },
828
+      44: {
829
+        id: 44,
830
+        name: '导管溶栓',
831
+        dialysis_duration: 1,
832
+        replacement_way: 2,
833
+        hemodialysis_machine: 1,
834
+        blood_filter: 2,
835
+        perfusion_apparatus: 2,
836
+        blood_flow_volume: 1,
837
+        dialysate_flow: 1,
838
+        kalium: 1,
839
+        sodium: 1,
840
+        calcium: 1,
841
+        bicarbonate: 1
827 842
       }
828 843
 
829 844
     },
@@ -1098,6 +1113,21 @@ const global_config = {
1098 1113
         gaimingcheng_unit: '',
1099 1114
         gaijiliang_unit: ''
1100 1115
       },
1116
+      19: {
1117
+        id: 19,
1118
+        name: '低分子量肝素钠',
1119
+        type: 1,
1120
+        shouji: 1,
1121
+        weichi: 1,
1122
+        zongliang: 1,
1123
+        gaimingcheng: -1,
1124
+        gaijiliang: -1,
1125
+        shouji_unit: 'iu',
1126
+        weichi_unit: 'iu/h',
1127
+        zongliang_unit: 'iu',
1128
+        gaimingcheng_unit: '',
1129
+        gaijiliang_unit: ''
1130
+      },
1101 1131
       // 6: {
1102 1132
       //   id: 6,
1103 1133
       //   name: '3%枸橼酸钠',