gaoluyang
2026-06-12 12a52dc0d4cb0c44bf2927942bcbf459c622d9bd
src/api/basicData/customer.js
@@ -26,6 +26,22 @@
    })
}
// 流入公海
export function backCustomer(id) {
    return request({
        url: '/basic/customer/back/' + id,
        method: 'post'
    })
}
export function shareCustomer(data) {
    return request({
        url: '/basic/customer/together',
        method: 'post',
        data: data
    })
}
export function getCustomer(id) {
    return request({
        url: '/basic/customer/' + id,