zhangwencui
7 小时以前 b66bd3213636032189026d14bdc9f264a3a57742
src/api/procurementManagement/paymentLedger.js
@@ -4,17 +4,17 @@
// 分页查询
export function paymentLedgerList(query) {
  return request({
    url: "/purchase/paymentRegistration/supplierNameListPage",
    url: "/purchase/report/supplierTransactions",
    method: "get",
    params: query,
  });
}
// 分页查询
export function paymentRecordList(supplierId) {
export function paymentRecordList(params) {
  return request({
    url: "/purchase/paymentRegistration/supplierNameListPageDetails",
    url: "/purchase/report/supplierTransactionsDetails",
    method: "get",
    params: supplierId,
    params,
  });
}