chenrui
7 天以前 ddd7b9af964842f308530907dc009a289fdf9ce6
src/api/salesManagement/receiptPayment.js
@@ -10,10 +10,10 @@
    })
}
// 分页查询
export function receiptPaymentListPage(query) {
// 客户往来记录查询
export function customerInteractions(query) {
    return request({
        url: '/receiptPayment/listPage',
        url: '/receiptPayment/customerInteractions',
        method: 'get',
        params: query
    })
@@ -55,7 +55,7 @@
    })
}
// 分页查询
// 询回款记录
export function receiptPaymentHistoryList(query) {
    return request({
        url: '/receiptPayment/receiptPaymentHistoryList',
@@ -63,3 +63,22 @@
        params: query
    })
}
/**
 * 查询回款记录分页查询
 */
export function receiptPaymentHistoryListPage(query) {
    return request({
        url: '/receiptPayment/receiptPaymentHistoryListPage',
        method: 'get',
        params: query
    })
}
export function receiptPaymentHistoryListNoPage(query) {
    return request({
        url: '/receiptPayment/receiptPaymentHistoryListNoPage',
        method: 'get',
        params: query
    })
}