huminmin
19 小时以前 cbf68cbcfe5fa210e769c72b290d01053a16ba1b
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,
  });
}