pengjun 1 year ago
parent
commit
e0414830da
  1. 8
      src/components/doctorCheck/CheckPicture.vue
  2. 14
      src/components/patientRegister/PatientRegisterList.vue

8
src/components/doctorCheck/CheckPicture.vue

@ -375,14 +375,12 @@ export default {
this.pacsParams.row = deepCopy(this.doctorCheck.checkItemList[0])
this.pacsParams.index = 0
console.log('pacsParams', this.pacsParams)
this.iframeSrc = `${this.sysConfig.dcmViewers}/?mrn=${this.doctorCheck.checkRequestNo}`
// console.log('pacsParams', this.pacsParams)
let token = window.sessionStorage.getItem('token')
this.iframeSrc = `${this.sysConfig.dcmViewers}/?mrn=${this.doctorCheck.checkRequestNo}&token=${token}&pacsapi=${this.sysConfig.pacsApi}`
// this.iframeSrc = `${this.sysConfig.dcmViewers}/viewer?StudyInstanceUIDs=1.3.12.2.1107.5.1.4.79623.30000024091203062645300000022`
this.dialogDcm = true
},
//

14
src/components/patientRegister/PatientRegisterList.vue

@ -1115,12 +1115,24 @@ export default {
if (this.patientRegister.query.phone)
body.phone = this.patientRegister.query.phone;
if (this.patientRegister.query.idCardNo)
if (this.patientRegister.query.idCardNo) {
body.idNo = this.patientRegister.query.idCardNo;
try {
let sysParmId = "patient_register_query_idno"
let sysParam = await postapi('/api/app/SysParmValue/GetSysParmValueBySysParmId', { sysParmId })
// console.log('sysParam', sysParam)
if (sysParam.data != 'N') {
body = {
idNo: this.patientRegister.query.idCardNo,
skipCount: this.loadOpts.skipCount,
maxResultCount: this.loadOpts.maxResultCount
};
}
} catch (error) {
console.log(error)
}
}
if (this.patientRegister.query.patientNo)
body = {

Loading…
Cancel
Save