|
|
|
@ -690,7 +690,7 @@ export default { |
|
|
|
for (let i = 0; i < this.multipleSelection.length; i++) { |
|
|
|
let row = this.multipleSelection[i] |
|
|
|
try { |
|
|
|
await printGuideLisPacs(row) |
|
|
|
await this.printGuideLisPacs(row) |
|
|
|
} catch (error) { |
|
|
|
console.log('printPromise', error) |
|
|
|
} |
|
|
|
@ -986,6 +986,7 @@ export default { |
|
|
|
this.dataTransOpts.tableS.patient_register.id = '' |
|
|
|
this.tableDataCurrentRow = {} // 清除选择 |
|
|
|
this.tableData = [] |
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
|
this.dataTransOpts.refresh.register_check_asbitem.M++ //触发所选组合项目刷新 |
|
|
|
}, 10); |
|
|
|
@ -1034,8 +1035,11 @@ export default { |
|
|
|
if (this.patientRegister.query.patientName) |
|
|
|
body.patientName = this.patientRegister.query.patientName; |
|
|
|
|
|
|
|
if (this.patientRegister.query.completeFlag) |
|
|
|
body.completeFlag = this.patientRegister.query.completeFlag; |
|
|
|
if (this.patientRegister.query.medicalTypeIds && this.patientRegister.query.medicalTypeIds.length > 0) |
|
|
|
body.medicalTypeIds = this.patientRegister.query.medicalTypeIds; |
|
|
|
|
|
|
|
if (this.patientRegister.query.completeFlags && this.patientRegister.query.completeFlags.length > 0) |
|
|
|
body.completeFlags = this.patientRegister.query.completeFlags; |
|
|
|
|
|
|
|
//StartDate EndDate |
|
|
|
if ( |
|
|
|
|