spring
11 小时以前 485b7ada4dfb24f77e2ac5ed871bf23b07f086ad
src/api/procurementManagement/paymentLedger.js
@@ -4,17 +4,16 @@
// 分页查询
export function paymentLedgerList(query) {
  return request({
    url: "/purchase/paymentRegistration/supplierNameListPage",
    url: "/purchase/paymentRegistration/paymentLedgerList",
    method: "get",
    params: query,
  });
}
// 分页查询
export function paymentRecordList(query) {
export function paymentRecordList(supplierId) {
  return request({
    url: "/purchase/paymentRegistration/supplierNameListPageDetails",
    url: "/purchase/paymentRegistration/getPaymentRecordList/" + supplierId,
    method: "get",
    params: query,
  });
}