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