|
@@ -519,11 +519,32 @@
|
519
|
519
|
</el-col>
|
520
|
520
|
|
521
|
521
|
|
522
|
|
- <el-col :span="8" v-if="isShows('血浆分离器')">
|
523
|
|
- <el-form-item label="血浆分离器:">
|
524
|
|
- <el-input v-model="addPlan.bilirubin_adsorption_column" @focus="showInnerDialog('9')"></el-input>
|
|
522
|
+ <el-col :span="8" v-if="isShows('吸氧')">
|
|
523
|
+ <el-form-item label="吸氧:">
|
|
524
|
+ <el-select v-model="addPlan.oxygen_uptake" placeholder="请选择" @change="changeOxygenList">
|
|
525
|
+ <el-option :key="0" label="请选择" :value="0"></el-option>
|
|
526
|
+ <el-option
|
|
527
|
+ v-for="(item, index) in oxygenList "
|
|
528
|
+ :key="index"
|
|
529
|
+ :label="item.name"
|
|
530
|
+ :value="item.id"
|
|
531
|
+ ></el-option>
|
|
532
|
+ </el-select>
|
|
533
|
+ </el-form-item>
|
|
534
|
+ </el-col>
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+ <el-col :span="8" v-if="isShows('吸氧') && oxygenShow == true">
|
|
538
|
+ <el-form-item label="吸氧流量(L/分):">
|
|
539
|
+ <el-input v-model="addPlan.oxygen_flow"></el-input>
|
525
|
540
|
</el-form-item>
|
526
|
|
- </el-col>
|
|
541
|
+ </el-col>
|
|
542
|
+
|
|
543
|
+ <el-col :span="8" v-if="isShows('吸氧') && oxygenShow == true">
|
|
544
|
+ <el-form-item label="吸氧时长(h):">
|
|
545
|
+ <el-input v-model="addPlan.oxygen_time"></el-input>
|
|
546
|
+ </el-form-item>
|
|
547
|
+ </el-col>
|
527
|
548
|
|
528
|
549
|
<el-col :span="8" v-if="isShows('目标KT/V')">
|
529
|
550
|
<el-form-item label="目标KT/V">
|
|
@@ -532,7 +553,7 @@
|
532
|
553
|
</el-col>
|
533
|
554
|
</el-row>
|
534
|
555
|
|
535
|
|
-
|
|
556
|
+
|
536
|
557
|
|
537
|
558
|
|
538
|
559
|
|
|
@@ -726,6 +747,10 @@ export default {
|
726
|
747
|
dialysis_irrigation:'',
|
727
|
748
|
plasma_separator:"",
|
728
|
749
|
bilirubin_adsorption_column:"",
|
|
750
|
+ oxygen_uptake:"",
|
|
751
|
+ oxygen_flow:"",
|
|
752
|
+ oxygen_time:"",
|
|
753
|
+
|
729
|
754
|
},
|
730
|
755
|
childPlan: {
|
731
|
756
|
mode: '',
|
|
@@ -856,6 +881,11 @@ export default {
|
856
|
881
|
dialysis_irrigation:"",
|
857
|
882
|
plasmaSeparatorList:[],
|
858
|
883
|
bilirubinAdsorptionColumn:[],
|
|
884
|
+ oxygenList:[
|
|
885
|
+ {id:1,name:"需"},
|
|
886
|
+ {id:2,name:"无"}
|
|
887
|
+ ],
|
|
888
|
+ oxygenShow:false,
|
859
|
889
|
}
|
860
|
890
|
},
|
861
|
891
|
watch: {
|
|
@@ -1424,6 +1454,15 @@ export default {
|
1424
|
1454
|
this.addPlan.dialysis_dialyszers = row.dialysis_dialyszers
|
1425
|
1455
|
this.dialysis_irrigation = row.dialysis_irrigation
|
1426
|
1456
|
this.dialysis_dialyszers = row.dialysis_dialyszers
|
|
1457
|
+ this.addPlan.oxygen_uptake = row.oxygen_uptake
|
|
1458
|
+ if(row.oxygen_uptake == 1){
|
|
1459
|
+ this.oxygenShow = true
|
|
1460
|
+ }
|
|
1461
|
+ if(row.oxygen_uptake == 2){
|
|
1462
|
+ this.oxygenShow = false
|
|
1463
|
+ }
|
|
1464
|
+ this.addPlan.oxygen_flow = row.oxygen_flow
|
|
1465
|
+ this.addPlan.oxygen_time = row.oxygen_time
|
1427
|
1466
|
if(row.body_fluid == 0){
|
1428
|
1467
|
this.addPlan.body_fluid = ""
|
1429
|
1468
|
}else{
|
|
@@ -1761,6 +1800,9 @@ export default {
|
1761
|
1800
|
ultrafiltration: '',
|
1762
|
1801
|
blood_access: '',
|
1763
|
1802
|
plasma_separator:"",
|
|
1803
|
+ oxygen_time:"",
|
|
1804
|
+ oxygen_uptake:"",
|
|
1805
|
+ oxygen_flow:"",
|
1764
|
1806
|
}
|
1765
|
1807
|
|
1766
|
1808
|
for (const key in tempAddPlan) {
|
|
@@ -1820,7 +1862,17 @@ export default {
|
1820
|
1862
|
}
|
1821
|
1863
|
}
|
1822
|
1864
|
return name
|
1823
|
|
- }
|
|
1865
|
+ },
|
|
1866
|
+ changeOxygenList(val){
|
|
1867
|
+ if(val == 1){
|
|
1868
|
+ this.oxygenShow = true
|
|
1869
|
+ }
|
|
1870
|
+ if(val == 2){
|
|
1871
|
+ this.oxygenShow = false
|
|
1872
|
+ this.addPlan.oxygen_flow = ""
|
|
1873
|
+ this.addPlan.oxygen_time = ""
|
|
1874
|
+ }
|
|
1875
|
+ },
|
1824
|
1876
|
},
|
1825
|
1877
|
created() {
|
1826
|
1878
|
const id = this.$route.params && this.$route.params.id
|