You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
502 B
17 lines
502 B
![]()
10 months ago
|
import request from '@/config/axios'
|
||
|
|
||
|
// 查询(精简)列表
|
||
|
export const getFollowList = async (params) => {
|
||
|
return await request.get({ url: '/admin-api/crm/clue-follow-record/list', params })
|
||
|
}
|
||
|
|
||
|
// 新增
|
||
|
export const createFollow = async (data) => {
|
||
|
return await request.post({ url: '/admin-api/crm/clue-follow-record/create', data: data })
|
||
|
}
|
||
|
|
||
|
// 删除
|
||
|
export const deleteFollow = async (id) => {
|
||
|
return await request.delete({ url: '/admin-api/crm/clue-follow-record/delete?id=' + id })
|
||
|
}
|