gaoluyang
2025-05-16 9af9bb8ce10c90aad33d41508f3c829810721ec5
1
2
3
4
5
6
7
8
9
10
11
// 采购台账页面接口
import request from '@/utils/request'
 
// 分页查询
export function paymentLedgerList(query) {
    return request({
        url: '/purchase/paymentRegistration/paymentLedgerList',
        method: 'get',
        params: query
    })
}