ZN
9 天以前 e756e3cc5ddd0ddb42c5f00d6bb3eee76ba73e6f
src/api/customerService/index.js
@@ -99,4 +99,34 @@
    url: '/afterSalesNearExpiryService/delete?ids=' + ids,
    method: 'delete',
  })
}
}
// 查询所有客户信息
// /basic/customer/list
export function getAllCustomerList(query) {
    return request({
        url: '/basic/customer/list',
        method: 'get',
        params: query,
    })
}
// 根据客户查询销售订单号
// afterSalesService/listSalesLedger
export function getSalesLedger(query) {
    return request({
        url: '/afterSalesService/listSalesLedger',
        method: 'get',
        params: query,
    })
}
// 根据销售订单号查询销售订单详情
// afterSalesService/count
export function getSalesLedgerDetail(query) {
    return request({
        url: '/afterSalesService/count',
        method: 'get',
        params: query,
    })
}