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