xg
This commit is contained in:
parent
b2204fb91b
commit
f6e690d7be
@ -22,7 +22,7 @@ export function getSignProtocol(cardNo) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
export function getHospitalPersonInfo(personCode,status) {
|
export function getHospitalPersonInfo(personCode) {
|
||||||
return request({
|
return request({
|
||||||
url: `/nurseApplet/consultationInfo/getHospitalPersonInfo?personCode=${personCode}&&status=${1}`,
|
url: `/nurseApplet/consultationInfo/getHospitalPersonInfo?personCode=${personCode}&&status=${1}`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
|||||||
@ -327,7 +327,7 @@
|
|||||||
this.formdata.address = this.address
|
this.formdata.address = this.address
|
||||||
}
|
}
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
getHospitalPersonInfo(res.data.dutyDoctorNo, '1').then(res => {
|
getHospitalPersonInfo(res.data.dutyDoctorNo).then(res => {
|
||||||
this.doctorName = res.data.personName
|
this.doctorName = res.data.personName
|
||||||
this.doctorId = res.data.id
|
this.doctorId = res.data.id
|
||||||
this.doctorlist = res.data
|
this.doctorlist = res.data
|
||||||
|
|||||||
@ -196,7 +196,7 @@
|
|||||||
this.list.rescindReason = null
|
this.list.rescindReason = null
|
||||||
this.list.crowdsName = this.list.crowdsName.split(',')
|
this.list.crowdsName = this.list.crowdsName.split(',')
|
||||||
this.list.packagesName = this.list.packagesName.split(',')
|
this.list.packagesName = this.list.packagesName.split(',')
|
||||||
getHospitalPersonInfo(res.data.userNo, '1').then(resp => {
|
getHospitalPersonInfo(res.data.userNo).then(resp => {
|
||||||
this.formdata.doctorName = resp.data.personName
|
this.formdata.doctorName = resp.data.personName
|
||||||
this.formdata.doctorId = resp.data.id
|
this.formdata.doctorId = resp.data.id
|
||||||
})
|
})
|
||||||
|
|||||||
@ -33,7 +33,6 @@
|
|||||||
item.check = !item.check
|
item.check = !item.check
|
||||||
},
|
},
|
||||||
info() {
|
info() {
|
||||||
// getPerformance(uni.getStorageSync('userinfo').cardNo, '1').then(res => {
|
|
||||||
this.cityCode = uni.getStorageSync('region');
|
this.cityCode = uni.getStorageSync('region');
|
||||||
this.userinfo = uni.getStorageSync('userinfo')
|
this.userinfo = uni.getStorageSync('userinfo')
|
||||||
var identity = this.userinfo.cardNo
|
var identity = this.userinfo.cardNo
|
||||||
|
|||||||
@ -592,7 +592,7 @@
|
|||||||
crowdNoList: this.query.crowdNoList,
|
crowdNoList: this.query.crowdNoList,
|
||||||
orgNo: this.query.orgNo
|
orgNo: this.query.orgNo
|
||||||
}
|
}
|
||||||
getPackageByCrowdNo(obj, '1').then(res => {
|
getPackageByCrowdNo(obj).then(res => {
|
||||||
res.data.forEach(e => {
|
res.data.forEach(e => {
|
||||||
e.checked = false
|
e.checked = false
|
||||||
})
|
})
|
||||||
@ -633,6 +633,7 @@
|
|||||||
},
|
},
|
||||||
//接收拍照或签名
|
//接收拍照或签名
|
||||||
residentAutographPath(data) {
|
residentAutographPath(data) {
|
||||||
|
console.log(data)
|
||||||
this.query.residentAutographPath = data.residentAutographPath
|
this.query.residentAutographPath = data.residentAutographPath
|
||||||
// this.protocolshow = false
|
// this.protocolshow = false
|
||||||
},
|
},
|
||||||
|
|||||||
@ -102,7 +102,6 @@
|
|||||||
var that = this
|
var that = this
|
||||||
var url = that.baseurl +
|
var url = that.baseurl +
|
||||||
`/nurseApplet/screening/record/fileview?filePath=${that.screeningResultData.attachment}`
|
`/nurseApplet/screening/record/fileview?filePath=${that.screeningResultData.attachment}`
|
||||||
// console.log(url, '1')
|
|
||||||
uni.downloadFile({
|
uni.downloadFile({
|
||||||
url: url,
|
url: url,
|
||||||
responseType: 'blob',
|
responseType: 'blob',
|
||||||
|
|||||||
@ -199,7 +199,7 @@
|
|||||||
this.signatureshow = false
|
this.signatureshow = false
|
||||||
},
|
},
|
||||||
info() {
|
info() {
|
||||||
getSignProtocol(uni.getStorageSync('userinfo').cardNo, '1').then(res => {
|
getSignProtocol(uni.getStorageSync('userinfo').cardNo).then(res => {
|
||||||
this.list = res.data
|
this.list = res.data
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@ -160,7 +160,7 @@
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
getContent(this.list.userNo, '1').then(res => {
|
getContent(this.list.userNo).then(res => {
|
||||||
this.content = res.data.content
|
this.content = res.data.content
|
||||||
this.orgBase64 = res.data.orgBase64
|
this.orgBase64 = res.data.orgBase64
|
||||||
this.doctorBase64 = res.data.doctorBase64
|
this.doctorBase64 = res.data.doctorBase64
|
||||||
@ -208,7 +208,7 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// //签名
|
//签名
|
||||||
userSignaturePicture(data) {
|
userSignaturePicture(data) {
|
||||||
let that = this
|
let that = this
|
||||||
that.meimage = data
|
that.meimage = data
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user