1.22 分包
This commit is contained in:
+30
-1
@@ -938,7 +938,36 @@ postServiceConfig(params) {//新增医生问诊配置-服务设置
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
giveRounds(params) {//医生赠送沟通回合数
|
||||
return this.request({
|
||||
url: `${this.baseUrl}/doctor/inquiry/give`,
|
||||
method: 'POST',
|
||||
data: {
|
||||
...params
|
||||
}
|
||||
})
|
||||
}
|
||||
getVideoMsg(id) {//获取视频问诊消息内页基本信息
|
||||
return this.request({
|
||||
url: `${this.baseUrl}/im/inquiry/basic/video/${id}`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
appointmentTime(params) {//设置医生预约时间
|
||||
return this.request({
|
||||
url: `${this.baseUrl}/doctor/inquiry/video/date`,
|
||||
method: 'POST',
|
||||
data: {
|
||||
...params
|
||||
}
|
||||
})
|
||||
}
|
||||
getIdenReason() {//获取医生身份认证失败原因
|
||||
return this.request({
|
||||
url: `${this.baseUrl}/doctor/auth/iden/reason`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user