zhangwencui
19 小时以前 08be158b36f2e49ab116eefe4db6e69e82e1c2e2
src/api/basicData/customerFile.js
@@ -74,4 +74,20 @@
        url: '/basic/customer-follow/'+id,
        method: 'delete',
    })
}
// 回访提醒-新增/更新
export function addReturnVisit(data) {
    return request({
        url: '/basic/customer-follow/return-visit',
        method: 'post',
        data: data
    })
}
// 获取回访提醒详情
export function getReturnVisit(id) {
    return request({
        url: '/basic/customer-follow/return-visit/' + id,
        method: 'get'
    })
}