sen
1 天以前 5abcde36961125cbf436f91b8c17610a6b5f8308
ui/admin-ui3/src/api/tms/tmsApBill.ts
@@ -94,3 +94,22 @@
        method: 'post',
    })
}
/**
 * 查询应付账单审核日志详细
 */
export const getPayableAuditLog:requestType = (query) => {
    return request({
        url: '/tms/payableAuditLog/list',
        method:'get',
         params: query
    })
}
/**
 * 作废应付账单
 */
export const tmsApBillCancelPush: requestType = (id) => {
    return request({
        url: '/tms/tmsApBill/cancelPush/' + id,
        method: 'post',
    })
}