添加服务类型

This commit is contained in:
zoujiandong
2023-09-19 09:53:37 +08:00
parent a3117d8b3f
commit e1d26f6b15
4 changed files with 59 additions and 159 deletions
+1 -8
View File
@@ -11,13 +11,6 @@ export function getPatientList(params){
})
}
export function addPatient(data) {
return request({
url,
method: 'post',
data
})
}
export function removePatient(data) {
return request({
@@ -36,7 +29,7 @@ export function updatePatient(data, id) {
}
export function getPatientDetail(id){
return request({
url:'/admin/doctor/'+id,
url:'/admin/patient/'+id,
method: 'get'
})
}