diff --git a/src/components/PatientInfo/PatientTable.vue b/src/components/PatientInfo/PatientTable.vue
new file mode 100644
index 0000000..f0bd25e
--- /dev/null
+++ b/src/components/PatientInfo/PatientTable.vue
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+ {{ index + 1 }}
+
+
+
+
+ {{ record.inputStatus === 0 ? '新建'
+ : record.inputStatus === 1 ? '数据搜集中'
+ : record.inputStatus === 2 ? '数据搜集完成'
+ : record.inputStatus === 3 ? '数据搜集超时'
+ : '废弃' }}
+
+
+
+
+ 选择
+
+
+
+
+
+
+
+
diff --git a/src/components/PatientInfo/Search.vue b/src/components/PatientInfo/Search.vue
new file mode 100644
index 0000000..f5dc826
--- /dev/null
+++ b/src/components/PatientInfo/Search.vue
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+ 搜索
+
+ 新增
+
+
+
+
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 @@
- 选择患者信息
+