| | |
| | | // 采购台账页面接口 |
| | | import request from '@/utils/request' |
| | | import request from "@/utils/request"; |
| | | |
| | | // 分页查询 |
| | | export function paymentLedgerList(query) { |
| | | return request({ |
| | | url: '/purchase/paymentRegistration/paymentLedgerList', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | return request({ |
| | | url: "/purchase/paymentRegistration/paymentLedgerList", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | // 分页查询 |
| | | export function paymentRecordList(supplierId) { |
| | | return request({ |
| | | url: '/purchase/paymentRegistration/getPaymentRecordList/'+ supplierId, |
| | | method: 'get' |
| | | }) |
| | | return request({ |
| | | url: "/purchase/paymentRegistration/getPaymentRecordList/" + supplierId, |
| | | method: "get", |
| | | }); |
| | | } |