|
|
@ -1789,7 +1789,7 @@ export default { |
|
|
watch: { |
|
|
watch: { |
|
|
//人员ID未切换换时 也可以强制刷新数据 |
|
|
//人员ID未切换换时 也可以强制刷新数据 |
|
|
"dataTransOpts.refresh.patient_register.S": { |
|
|
"dataTransOpts.refresh.patient_register.S": { |
|
|
immediate: true, |
|
|
|
|
|
|
|
|
// immediate: true, |
|
|
handler(newVal, oldVal) { |
|
|
handler(newVal, oldVal) { |
|
|
console.log(`watch 人员登记 newVal:${newVal} oldVal:${oldVal} registerCheckId: ${this.dataTransOpts.tableS.patient_register.id}`); |
|
|
console.log(`watch 人员登记 newVal:${newVal} oldVal:${oldVal} registerCheckId: ${this.dataTransOpts.tableS.patient_register.id}`); |
|
|
this.initFormData(this.dataTransOpts.tableS.patient_register.id) |
|
|
this.initFormData(this.dataTransOpts.tableS.patient_register.id) |
|
|
@ -1816,6 +1816,19 @@ export default { |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 从体检人员登记列表 点登记,触发 |
|
|
|
|
|
// 清空查询条件 |
|
|
|
|
|
"dataTransOpts.plus.clearPatientRegisterQuery":{ |
|
|
|
|
|
immediate:true, |
|
|
|
|
|
handler(newVal, oldVal) { |
|
|
|
|
|
console.log('从体检人员登记列表 点登记,触发',newVal, oldVal) |
|
|
|
|
|
if(newVal != oldVal){ |
|
|
|
|
|
this.preCustomerOrgId = this.patientRegister.query.customerOrgId |
|
|
|
|
|
console.log('this.preCustomerOrgId',this.preCustomerOrgId) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
}; |
|
|
}; |
|
|
</script> |
|
|
</script> |
|
|
|