XMLWAN il y a 4 ans
Parent
révision
c65d831e67
1 fichiers modifiés avec 12 ajouts et 12 suppressions
  1. 12 12
      src/xt_pages/dialysis/components/dialysisParameters.vue

+ 12 - 12
src/xt_pages/dialysis/components/dialysisParameters.vue Voir le fichier

@@ -76,12 +76,12 @@
76 76
             </el-table-column>
77 77
             <el-table-column align="center" label="干体重(kg)" width="140">
78 78
                <template slot-scope="scope">
79
-                 {{getDryWeight(scope.row.patient_id)?getDryWeight(scope.row.patient_id):""}}        
79
+                 {{getDryWeight(scope.row.patient_id)?getDryWeight(scope.row.patient_id):""}}
80 80
                </template>
81 81
             </el-table-column>
82 82
             <el-table-column align="center" label="透前血压(mmhg)" width="180">
83 83
               <template slot-scope="scope">
84
-                  {{getSysBloodPressure(scope.row.patient_id)?getSysBloodPressure(scope.row.patient_id):""}} 
84
+                  {{getSysBloodPressure(scope.row.patient_id)?getSysBloodPressure(scope.row.patient_id):""}}
85 85
               </template>
86 86
             </el-table-column>
87 87
             <el-table-column align="center" label="目标超滤量" width="120">
@@ -91,7 +91,7 @@
91 91
             </el-table-column>
92 92
             <el-table-column align="center" label="血流量(ml/min)" width="180">
93 93
                <template slot-scope="scope">
94
-                 {{getBloodFlowVolume(scope.row.patient_id)?getBloodFlowVolume(scope.row.patient_id):""}}  
94
+                 {{getBloodFlowVolume(scope.row.patient_id)?getBloodFlowVolume(scope.row.patient_id):""}}
95 95
                </template>
96 96
             </el-table-column>
97 97
              <el-table-column align="center" label="抗凝剂(首剂)(维持)(总量)" width="300">
@@ -245,7 +245,7 @@ export default {
245 245
             }
246 246
             if(this.selected_date!=''){
247 247
               this.start_time = parseTime(this.selected_date, '{y}-{m}-{d}')
248
-            } 
248
+            }
249 249
             const params ={
250 250
               start_time:this.start_time,
251 251
               keyword:this.search_input,
@@ -257,10 +257,10 @@ export default {
257 257
           getDialysisParameters(params).then(response=>{
258 258
              if(response.data.state == 1){
259 259
                 var schedule = response.data.data.schedule
260
-                console.log("schedule",schedule)
260
+                // console.log("schedule",schedule)
261 261
                 this.tableData = schedule
262 262
                 var total = response.data.data.total
263
-               
263
+
264 264
                 this.total = total
265 265
              }
266 266
           })
@@ -280,7 +280,7 @@ export default {
280 280
             }
281 281
             if(this.selected_date!=''){
282 282
               this.start_time = parseTime(this.selected_date, '{y}-{m}-{d}')
283
-            } 
283
+            }
284 284
             const params ={
285 285
               start_time:this.start_time,
286 286
               keyword:this.search_input,
@@ -387,7 +387,7 @@ export default {
387 387
           if(this.prescriptionList[i].patient_id == id){
388 388
              dialyzerPerfusionApparatus = this.prescriptionList[i].dialyzer_perfusion_apparatus
389 389
           }
390
-        } 
390
+        }
391 391
       return dialyzerPerfusionApparatus
392 392
      },
393 393
      getAnticoagulant(id){
@@ -396,7 +396,7 @@ export default {
396 396
           if(this.prescriptionList[i].patient_id == id){
397 397
              anticoagulant = this.prescriptionList[i].anticoagulant
398 398
           }
399
-        } 
399
+        }
400 400
        return anticoagulant
401 401
      },
402 402
      getAnticoagulantShouji(id){
@@ -405,7 +405,7 @@ export default {
405 405
          if(this.prescriptionList[i].patient_id == id){
406 406
             shouji = "("+this.prescriptionList[i].anticoagulant_shouji
407 407
           }
408
-        } 
408
+        }
409 409
        return shouji
410 410
      },
411 411
      getAnticoagulantWeichi(id){
@@ -413,7 +413,7 @@ export default {
413 413
         for(let i=0;i<this.prescriptionList.length;i++){
414 414
          if(this.prescriptionList[i].patient_id == id){
415 415
             weichi = "("+this.prescriptionList[i].anticoagulant_weichi
416
-        } 
416
+        }
417 417
        return weichi
418 418
       }
419 419
      },
@@ -423,7 +423,7 @@ export default {
423 423
          if(this.prescriptionList[i].patient_id == id){
424 424
             zongliang = "("+this.prescriptionList[i].anticoagulant_zongliang
425 425
           }
426
-        } 
426
+        }
427 427
        return zongliang
428 428
      }
429 429
     }