1
yuan
5 天以前 8a7d2b88e99edf74a8ceb3089a6a1f8583c6a5b7
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,