2.23更新

This commit is contained in:
zoujiandong
2024-02-23 14:06:27 +08:00
parent e856d259d6
commit cce4628d63
23 changed files with 997 additions and 112 deletions
+6 -1
View File
@@ -39,6 +39,9 @@ function fllowDoctor(id){
function notfllowDoctor(id){
return request('/patient/doctor/follow/'+id,'DELETE')
}
function getService(id){//获取医生开启的服务列表
return request('/doctor/inquiry/service/'+id,'GET')
}
module.exports={
doctorList,
@@ -53,6 +56,8 @@ module.exports={
getCountry,
commentList,
fllowDoctor,
notfllowDoctor
notfllowDoctor,
getService
}