CRM:商机接入合同列表

This commit is contained in:
YunaiV
2024-02-24 16:08:00 +08:00
parent 7164ae5d49
commit 43bdb3cdba
5 changed files with 23 additions and 13 deletions

View File

@ -55,6 +55,11 @@ export const getContractPageByCustomer = async (params: any) => {
return await request.get({ url: `/crm/contract/page-by-customer`, params })
}
// 查询 CRM 联系人列表,基于指定商机
export const getContractPageByBusiness = async (params: any) => {
return await request.get({ url: `/crm/contract/page-by-business`, params })
}
// 查询 CRM 合同详情
export const getContract = async (id: number) => {
return await request.get({ url: `/crm/contract/get?id=` + id })