mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-20 15:22:00 +08:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
![]() |
import request from '@/config/axios'
|
||
|
|
||
|
// 跟进记录 VO
|
||
|
export interface FollowUpRecordVO {
|
||
|
// 编号
|
||
|
id: number
|
||
|
// 数据类型
|
||
|
bizType: number
|
||
|
// 数据编号
|
||
|
bizId: number
|
||
|
// 跟进类型
|
||
|
type: number
|
||
|
// 跟进内容
|
||
|
content: string
|
||
|
// 下次联系时间
|
||
|
nextTime: Date
|
||
|
// 关联的商机编号数组
|
||
|
businessIds: number[]
|
||
|
// 关联的联系人编号数组
|
||
|
contactIds: number[]
|
||
|
}
|
||
|
|
||
|
// 跟进记录 API
|
||
|
export const FollowUpRecordApi = {
|
||
|
// 查询跟进记录分页
|
||
|
getFollowUpRecordPage: async (params: any) => {
|
||
|
return await request.get({ url: `/crm/follow-up-record/page`, params })
|
||
|
},
|
||
|
|
||
|
// 查询跟进记录详情
|
||
|
getFollowUpRecord: async (id: number) => {
|
||
|
return await request.get({ url: `/crm/follow-up-record/get?id=` + id })
|
||
|
},
|
||
|
|
||
|
// 新增跟进记录
|
||
|
createFollowUpRecord: async (data: FollowUpRecordVO) => {
|
||
|
return await request.post({ url: `/crm/follow-up-record/create`, data })
|
||
|
},
|
||
|
|
||
|
// 修改跟进记录
|
||
|
updateFollowUpRecord: async (data: FollowUpRecordVO) => {
|
||
|
return await request.put({ url: `/crm/follow-up-record/update`, data })
|
||
|
},
|
||
|
|
||
|
// 删除跟进记录
|
||
|
deleteFollowUpRecord: async (id: number) => {
|
||
|
return await request.delete({ url: `/crm/follow-up-record/delete?id=` + id })
|
||
|
},
|
||
|
|
||
|
// 导出跟进记录 Excel
|
||
|
exportFollowUpRecord: async (params) => {
|
||
|
return await request.download({ url: `/crm/follow-up-record/export-excel`, params })
|
||
|
}
|
||
|
}
|