|
@@ -695,6 +695,7 @@ export default {
|
695
|
695
|
var patient = resp.data.patient; // 患者信息
|
696
|
696
|
var schedual = resp.data.schedual; // 患者排班信息
|
697
|
697
|
var prescription = resp.data.prescription; // 透析处方
|
|
698
|
+
|
698
|
699
|
var solution = resp.data.solution; // 透析方案
|
699
|
700
|
var receiver_treatment_access = resp.data.receiver_treatment_access; // 接诊评估
|
700
|
701
|
var predialysis_evaluation = resp.data.predialysis_evaluation; // 透前评估
|
|
@@ -1533,6 +1534,20 @@ export default {
|
1533
|
1534
|
var patient = resp.data.patient; // 患者信息
|
1534
|
1535
|
var schedual = resp.data.schedual; // 患者排班信息
|
1535
|
1536
|
var prescription = resp.data.prescription; // 透析处方
|
|
1537
|
+ this.dialyzerPerfusionApparatus = getDataConfig(
|
|
1538
|
+ "hemodialysis",
|
|
1539
|
+ "dialyzer_perfusion_apparatus"
|
|
1540
|
+ );
|
|
1541
|
+ for (let i = 0; i < this.dialyzerPerfusionApparatus.length; i++) {
|
|
1542
|
+ if (
|
|
1543
|
+ prescription.dialyzer_perfusion_apparatus ==
|
|
1544
|
+ this.dialyzerPerfusionApparatus[i].name
|
|
1545
|
+ ) {
|
|
1546
|
+ prescription.dialyzer_perfusion_apparatus = this.dialyzerPerfusionApparatus[
|
|
1547
|
+ i
|
|
1548
|
+ ].id;
|
|
1549
|
+ }
|
|
1550
|
+ }
|
1536
|
1551
|
var solution = resp.data.solution; // 透析方案
|
1537
|
1552
|
var receiver_treatment_access = resp.data.receiver_treatment_access; // 接诊评估
|
1538
|
1553
|
var predialysis_evaluation = resp.data.predialysis_evaluation; // 透前评估
|