添加获取挂账公司信息列表接口
This commit is contained in:
@@ -30,6 +30,8 @@ import type {
|
||||
PhysicalExamAddItemListResponse,
|
||||
InputAddItemCustomerInfo,
|
||||
AddItemCustomerInfoResponse,
|
||||
InputChannelCompanyInfo,
|
||||
ChannelCompanyInfoListResponse,
|
||||
InputPhysicalExamAddOrder,
|
||||
PhysicalExamQrcodeCreateResponse,
|
||||
InputOrderPaymentInfo,
|
||||
@@ -234,6 +236,18 @@ export const getAddItemCustomerInfo = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 获取挂账公司信息列表
|
||||
*/
|
||||
export const getChannelCompanyList = (
|
||||
data: InputChannelCompanyInfo = {}
|
||||
): Promise<ChannelCompanyInfoListResponse> => {
|
||||
return request.post<ChannelCompanyInfoListResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/channel-company-list`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* Native-生成扫码支付二维码
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user