|
@ -275,9 +275,9 @@
|
|
|
fangshiAPI.getPostpartumVisitDetails({ followupId: this.followupId || '3' }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
var data = res.data
|
|
|
vm.postpartumVisitDetails=data
|
|
|
var vmP = vm.postpartumVisitDetails
|
|
|
if (data != null) {
|
|
|
vm.postpartumVisitDetails = data
|
|
|
var vmP = vm.postpartumVisitDetails
|
|
|
vmP.breast_status = data.breast_status ? data.breast_status.toString() : ''
|
|
|
vmP.lochia_status = data.lochia_status ? data.lochia_status.toString() : ''
|
|
|
vmP.uterus_status = data.uterus_status ? data.uterus_status.toString() : ''
|
|
@ -327,7 +327,7 @@
|
|
|
vm.postpartumVisitDetails.other_guide = '1'
|
|
|
}
|
|
|
})
|
|
|
this.postpartumVisitDetails.create_time=null
|
|
|
this.postpartumVisitDetails.create_time = null
|
|
|
this.postpartumVisitDetails.version = this.version //版本号
|
|
|
fangshiAPI.savePostpartumVisitDetails({ followupId: this.followupId || '3', postpartumVisitDetails: JSON.stringify(this.postpartumVisitDetails) }).then(function (res) {
|
|
|
if (res.status == 200) {
|