Browse Source

dj seo

master
pengjun 2 years ago
parent
commit
8e6bf66c86
  1. 7
      src/components/patientRegister/PatientRegisterEdit.vue

7
src/components/patientRegister/PatientRegisterEdit.vue

@ -1273,7 +1273,7 @@ export default {
//
Query(param) {
this.patientChoosed = {} //
this.patientChoosed = {id:''} //
//
if (this.form.id || !param) return;
@ -1283,6 +1283,8 @@ export default {
maxResultCount: 500
}
this.patientList = []
postapi('/api/app/patient/getlistinfilter', body).then((res) => {
if (res.code > -1) {
// console.log(" ", res); //
@ -1307,7 +1309,8 @@ export default {
//
choosePatient() {
if (!this.patientChoosed) {
if (!this.patientChoosed.id) {
this.$message.warning({showClose:true,message:'请选择人员档案信息'})
return;
}

Loading…
Cancel
Save