转诊方功能优化
This commit is contained in:
@@ -58,4 +58,21 @@ export async function submitTransferQuestionsApi(params) {
|
||||
*/
|
||||
export async function getTransferAssistantConfigApi() {
|
||||
return await get('/transfer-assistant-config/get-config', {}, 3)
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取转诊咨询协议信息(固定文案和协议列表)
|
||||
* @returns {Promise<*>}
|
||||
*/
|
||||
export async function getTransferConsultationAgreementInfoApi() {
|
||||
return await get('/transfer-consultation/get-agreement-info', {}, 3)
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取协议详情(根据协议ID)
|
||||
* @param {number} agreementId 协议ID
|
||||
* @returns {Promise<*>}
|
||||
*/
|
||||
export async function getAgreementDetailApi(agreementId) {
|
||||
return await get(`/agreement/get-detail?id=${agreementId}`, {}, 3)
|
||||
}
|
||||
Reference in New Issue
Block a user