Browse Source

连续扫码

master
pengjun 12 months ago
parent
commit
97da9150ab
  1. 14
      src/components/patientRegister/PatientRegisterList.vue
  2. 4
      src/components/patientRegister/patientRegisterQuery.vue

14
src/components/patientRegister/PatientRegisterList.vue

@ -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 {

4
src/components/patientRegister/patientRegisterQuery.vue

@ -18,6 +18,10 @@
<el-date-picker v-model="patientRegister.query.endDate" type="date" placeholder="截止日期" size="small"
style="width:90px;" value-format="yyyy-MM-dd" :picker-options="pickerOptions" />
</div>
<div class="query">
<span class="spanClass">连续扫码</span>
<el-checkbox v-model="patientRegister.query.isSeries" size="small" true-label="Y" false-label="N" />
</div>
<div class="query">
<span class="spanClass">条码号</span>
<el-input placeholder="条码号" v-model="patientRegister.query.patientRegisterNo" size="small" clearable

Loading…
Cancel
Save