|
|
|
@ -1058,7 +1058,9 @@ export default { |
|
|
|
// 查询时,清掉明细数据 (滚动时不清) |
|
|
|
this.dataTransOpts.tableS.patient_register.id = '' |
|
|
|
this.tableDataCurrentRow = {} // 清除选择 |
|
|
|
this.tableData = [] |
|
|
|
if(!(this.patientRegister.query.isSeries == 'Y' && this.patientRegister.query.patientRegisterNo)){ |
|
|
|
this.tableData = [] |
|
|
|
} |
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
|
this.dataTransOpts.refresh.register_check_asbitem.M++ //触发所选组合项目刷新 |
|
|
|
@ -1202,9 +1204,13 @@ export default { |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
if (body.skipCount == 0) { //查询 |
|
|
|
this.tableData = []; |
|
|
|
} |
|
|
|
// 不是连续扫码时,需要判断是否分页查询(连续扫码不清原来的数据) |
|
|
|
console.log('this.patientRegister.query',this.patientRegister.query.isSeries,this.patientRegister.query.patientRegisterNo) |
|
|
|
if(!(this.patientRegister.query.isSeries == 'Y' && this.patientRegister.query.patientRegisterNo)){ |
|
|
|
if (body.skipCount == 0) { //查询 |
|
|
|
this.tableData = []; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
this.tableData = this.tableData.concat(curLoad) |
|
|
|
// else { |
|
|
|
|