wujianwei
2025-12-23 dc62a241b438191a4931727e2d93f48921d2af3d
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'
    })
}