|
@@ -305,7 +305,7 @@ export default {
|
|
|
/** 查询病人列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- listPatientList(this.queryParams).then(response => {
|
|
|
+ listPatient(this.queryParams).then(response => {
|
|
|
this.patientList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
@@ -314,7 +314,7 @@ export default {
|
|
|
getPatList(id){
|
|
|
this.loading = true;
|
|
|
this.queryParams.userId=id;
|
|
|
- listPatientList(this.queryParams).then(response => {
|
|
|
+ listPatient(this.queryParams).then(response => {
|
|
|
this.patientList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|