5 天以前 9c4e9a6062c51b6702684225de4c0694f8e06891
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,