This commit is contained in:
haomingming
2023-04-11 18:41:46 +08:00
parent 3f40c4c237
commit 4f14aad6f3
53 changed files with 657 additions and 205 deletions
+30
View File
@@ -242,6 +242,16 @@ class API extends HTTP {
...params
}
})
}
//发起提现
postDoctorWithdrawal(params) {
return this.request({
url: `${this.baseUrl}/doctor/withdrawal`,
method: 'POST',
data: {
...params
}
})
}
//可提现问诊订单列表
getDoctorWithdrawalOrder(params) {
@@ -649,6 +659,16 @@ class API extends HTTP {
...params
}
})
}
//获取医生消息页通知数据-医生
getDoctorMessageNotice(params) {
return this.request({
url: `${this.baseUrl}/doctor/message/notice`,
method: 'GET',
data: {
...params
}
})
}
//获取医生服务消息列表-分页
getDoctorMessageService(params) {
@@ -703,6 +723,16 @@ class API extends HTTP {
...params
}
})
}
//结束问诊会话列表
getDoctorInquiryFinishMessage(params) {
return this.request({
url: `${this.baseUrl}/doctor/inquiry/finish/message`,
method: 'GET',
data: {
...params
}
})
}
}