Merge branch 'dev_New' of http://114.132.189.42:9002/r/product-inventory-management into dev_New
| | |
| | | // 分页查询 |
| | | export function paymentLedgerList(query) { |
| | | return request({ |
| | | url: "/purchase/paymentRegistration/paymentLedgerList", |
| | | url: "/purchase/paymentRegistration/supplierNameListPage", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | |
| | | // 分页查询 |
| | | export function paymentRecordList(supplierId) { |
| | | return request({ |
| | | url: "/purchase/paymentRegistration/getPaymentRecordList/" + supplierId, |
| | | url: "/purchase/paymentRegistration/supplierNameListPageDetails", |
| | | method: "get", |
| | | params: supplierId, |
| | | }); |
| | | } |
| | |
| | | |
| | | const getPaymenRecordtList = (supplierId) => { |
| | | tableLoadingSon.value = true; |
| | | paymentRecordList(supplierId) |
| | | paymentRecordList({supplierId: supplierId}) |
| | | .then((res) => { |
| | | tableLoadingSon.value = false; |
| | | tableDataSon.value = res.data; |