crm: 增加基于客户查询回款计划分页

(cherry picked from commit b0c1e55c6a)
This commit is contained in:
YunaiV
2023-12-01 22:46:20 +08:00
committed by shizhong
parent 1fa79f9d9e
commit ef2a70e3f8
9 changed files with 143 additions and 106 deletions

View File

@ -23,6 +23,11 @@ export const getReceivablePlanPage = async (params) => {
return await request.get({ url: `/crm/receivable-plan/page`, params })
}
// 查询回款计划列表
export const getReceivablePlanPageByCustomer = async (params) => {
return await request.get({ url: `/crm/receivable-plan/page-by-customer`, params })
}
// 查询回款计划详情
export const getReceivablePlan = async (id: number) => {
return await request.get({ url: `/crm/receivable-plan/get?id=` + id })