diff --git a/src/components/PatientInfo/PatientTable.vue b/src/components/PatientInfo/PatientTable.vue new file mode 100644 index 0000000..89d1f47 --- /dev/null +++ b/src/components/PatientInfo/PatientTable.vue @@ -0,0 +1,137 @@ + + + diff --git a/src/components/PatientInfo/Search.vue b/src/components/PatientInfo/Search.vue new file mode 100644 index 0000000..47cdcb6 --- /dev/null +++ b/src/components/PatientInfo/Search.vue @@ -0,0 +1,60 @@ + + + diff --git a/src/config/api.js b/src/config/api.js index c05d49c..bfc084d 100644 --- a/src/config/api.js +++ b/src/config/api.js @@ -10,6 +10,9 @@ export const saveCaseMes = params => axios.post(`${patient}/saveCaseMes`, params // 添加患者基本信息 export const savePatientMes = params => axios.post(`${patient}/savePatientMes`, params); +// 查询患者基本信息 +export const selPatientMes = params => axios.post(`${patient}/selPatientMes`, params); + // 通过搜索条件查询患者病例的信息 export const selPatientMesList = params => axios.post(`${patient}/selPatientMesList`, params); diff --git a/src/views/SelectPatient/SelectPatient.vue b/src/views/SelectPatient/SelectPatient.vue index 2a58519..ae2b609 100644 --- a/src/views/SelectPatient/SelectPatient.vue +++ b/src/views/SelectPatient/SelectPatient.vue @@ -1,15 +1,63 @@