engineering_admin/src/api/custom_follow.ts

26 lines
843 B
TypeScript
Raw Normal View History

2023-11-12 16:51:11 +08:00
import request from '@/utils/request'
// 客户跟进记录列表
export function apiCustomFollowLists(params: any) {
return request.get({ url: '/custom_follow.custom_follow/lists', params })
}
// 添加客户跟进记录
export function apiCustomFollowAdd(params: any) {
return request.post({ url: '/custom_follow.custom_follow/add', params })
}
// 编辑客户跟进记录
export function apiCustomFollowEdit(params: any) {
return request.post({ url: '/custom_follow.custom_follow/edit', params })
}
// 删除客户跟进记录
export function apiCustomFollowDelete(params: any) {
return request.post({ url: '/custom_follow.custom_follow/delete', params })
}
// 客户跟进记录详情
export function apiCustomFollowDetail(params: any) {
return request.get({ url: '/custom_follow.custom_follow/detail', params })
}