|
|
@ -175,7 +175,11 @@ export default { |
|
|
...mapState(["window", "dict", "customerOrg", "patientRegister", "personnelUnit"]), |
|
|
...mapState(["window", "dict", "customerOrg", "patientRegister", "personnelUnit"]), |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
mounted() { }, |
|
|
|
|
|
|
|
|
mounted() { |
|
|
|
|
|
if(this.patientRegisterForm.id){ |
|
|
|
|
|
this.getPatientRegisterAbs(this.patientRegisterForm.id) |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
methods: { |
|
|
methods: { |
|
|
...mapActions(['getCustomerOrgGroup', 'getPatientRegisterAbs']), |
|
|
...mapActions(['getCustomerOrgGroup', 'getPatientRegisterAbs']), |
|
|
@ -783,6 +787,7 @@ export default { |
|
|
|
|
|
|
|
|
//监听事件 |
|
|
//监听事件 |
|
|
watch: { |
|
|
watch: { |
|
|
|
|
|
|
|
|
//分组改变,查出当前分组下对应的组合项目 |
|
|
//分组改变,查出当前分组下对应的组合项目 |
|
|
"patientRegister.customerOrgGroupChange"(newVal, oldVal) { |
|
|
"patientRegister.customerOrgGroupChange"(newVal, oldVal) { |
|
|
console.log("watch patientRegister.customerOrgGroupChange newVal:", newVal, " oldVal:", oldVal); |
|
|
console.log("watch patientRegister.customerOrgGroupChange newVal:", newVal, " oldVal:", oldVal); |
|
|
@ -821,6 +826,12 @@ export default { |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
"patientRegisterForm.id"(newVal, oldVal) { |
|
|
|
|
|
if (newVal && newVal != oldVal) { |
|
|
|
|
|
this.getPatientRegisterAbs(newVal) |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
//按钮更新支付方式 |
|
|
//按钮更新支付方式 |
|
|
"payTypeFlag"(newVal, oldVal) { |
|
|
"payTypeFlag"(newVal, oldVal) { |
|
|
if (newVal != oldVal && newVal != '') { |
|
|
if (newVal != oldVal && newVal != '') { |
|
|
|