chenrui
10 天以前 d7ed7a88d1ae6a4fd63901f2ad0a4d0ce60459d9
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
    })
}