gaoluyang
6 天以前 2e4b04ddbbcb82531fbc29eeadbefc46591584e0
src/api/basicData/customer.js
@@ -26,6 +26,31 @@
    })
}
// 交接客户
export function handoverCustomer(data) {
    return request({
        url: '/basic/customer/handover',
        method: 'post',
        data
    })
}
// 流入公海
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,