2 天以前 41d4bedd762c6f8a8358baf33a065b052baab9cc
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,