wujianwei
2026-01-13 95d3a42006beb2b9e0856f0899003e075d1988f8
ui/admin-ui3/src/api/cwgl/estimatedReceivable.ts
@@ -65,3 +65,31 @@
        download('/cwgl/estimatedReceivable/export',query);
    })
}
/**
 * 确认
 */
export const getEstimatedReceivableConfirm:requestType = (id) => {
    return request({
        url: '/cwgl/estimatedReceivable/confirm/' + id,
        method:'get'
    })
}
/**
 * 取消
 */
export const getCwglEstimatedReceivableCancel:requestType = (id) => {
    return request({
        url: '/cwgl/estimatedReceivable/cancel/' + id,
        method:'get'
    })
}
/**
 * 作废
 */
export const getEstimatedReceivableInvalid:requestType = (id) => {
    return request({
        url: '/cwgl/estimatedReceivable/invalid/' + id,
        method:'get'
    })
}