|
@@ -204,8 +204,8 @@
|
204
|
204
|
</el-button>
|
205
|
205
|
</div>
|
206
|
206
|
</div>
|
207
|
|
- <div>
|
208
|
|
- <text_content @new_content="newcontent"></text_content>
|
|
207
|
+ <div v-if="AuToShow = true">
|
|
208
|
+ <text_content @new_content="newcontent" :patient="patient" :prescriptionList="prescriptionList" :berforList="berforList" :monitorList="monitorList" :dryweightList="dryweightList" :inpectionList="inpectionList" :dialysisOrderList="dialysisOrderList"></text_content>
|
209
|
209
|
</div>
|
210
|
210
|
</div>
|
211
|
211
|
|
|
@@ -300,7 +300,14 @@
|
300
|
300
|
tab:[{id:1,name:'人促红注射液',type:'长期医嘱',start:'2024-12-04',dosage:"3000iu",pinlv:'一周三次',status:''},
|
301
|
301
|
{id:2,name:'人促红注射液2',type:'长期医嘱',start:'2024-12-05',dosage:"3000iu",pinlv:'一周三次',status:''},
|
302
|
302
|
],
|
303
|
|
-
|
|
303
|
+ prescriptionList:[],
|
|
304
|
+ berforList:[],
|
|
305
|
+ monitorList:[],
|
|
306
|
+ dryweightList:[],
|
|
307
|
+ inpectionList:[],
|
|
308
|
+ dialysisOrderList:[],
|
|
309
|
+ patient:{},
|
|
310
|
+ AuToShow:false
|
304
|
311
|
}
|
305
|
312
|
},
|
306
|
313
|
created() {
|
|
@@ -545,7 +552,7 @@
|
545
|
552
|
}
|
546
|
553
|
}
|
547
|
554
|
})
|
548
|
|
- this.auto_dialog = false
|
|
555
|
+
|
549
|
556
|
this.getAutoPatientContent()
|
550
|
557
|
},
|
551
|
558
|
// 本周
|
|
@@ -937,7 +944,7 @@
|
937
|
944
|
return anticoagulant_name
|
938
|
945
|
},
|
939
|
946
|
getTime (time) {
|
940
|
|
- return uParseTime(time, '{y}-{m}-{d} {h}:{i}:{s}')
|
|
947
|
+ return uParseTime(time, '{y}-{m}-{d}')
|
941
|
948
|
},
|
942
|
949
|
getTimeOne (time) {
|
943
|
950
|
return uParseTime(time, '{y}-{m}-{d}')
|
|
@@ -954,17 +961,47 @@
|
954
|
961
|
end_time:this.end_date,
|
955
|
962
|
patient_id:this.patient_id,
|
956
|
963
|
}
|
|
964
|
+ console.log("start_time==============",params)
|
957
|
965
|
getAutoPatientContent(params).then(response=>{
|
958
|
966
|
if(response.data.state == 1){
|
|
967
|
+
|
959
|
968
|
var prescription = response.data.data.prescription
|
|
969
|
+ this.prescriptionList=[]
|
|
970
|
+ this.prescriptionList = prescription
|
960
|
971
|
|
961
|
972
|
var berfor = response.data.data.berfor
|
|
973
|
+ this.berforList = []
|
|
974
|
+ this.berforList = berfor
|
962
|
975
|
|
963
|
976
|
var monitorList = response.data.data.monitorList
|
|
977
|
+ this.monitorList = []
|
|
978
|
+ this.monitorList = monitorList
|
964
|
979
|
|
965
|
980
|
var dryweightList = response.data.data.dryweightList
|
966
|
981
|
|
|
982
|
+ this.dryweightList = []
|
|
983
|
+ this.dryweightList = dryweightList
|
|
984
|
+
|
967
|
985
|
var inpectionList = response.data.data.inpectionList
|
|
986
|
+
|
|
987
|
+ this.inpectionList = []
|
|
988
|
+
|
|
989
|
+ this.inpectionList = inpectionList
|
|
990
|
+
|
|
991
|
+ this.patient = {}
|
|
992
|
+ this.patient = response.data.data.patient
|
|
993
|
+ if(this.patient.gender == 1){
|
|
994
|
+ this.patient.gender_name = "男"
|
|
995
|
+ }
|
|
996
|
+ if(this.patient.gender == 2){
|
|
997
|
+ this.patient.gender_name = "女"
|
|
998
|
+ }
|
|
999
|
+
|
|
1000
|
+ this.dialysisOrderList=[]
|
|
1001
|
+ this.dialysisOrderList =response.data.data.dialysisOrder
|
|
1002
|
+
|
|
1003
|
+ this.AuToShow = true
|
|
1004
|
+
|
968
|
1005
|
}
|
969
|
1006
|
})
|
970
|
1007
|
|