crm-客户:集成操作日志详情组件

This commit is contained in:
puhui999
2023-12-14 18:19:34 +08:00
parent 59c6670775
commit 455688eaa8
5 changed files with 48 additions and 27 deletions

View File

@ -67,3 +67,8 @@ export const exportCustomer = async (params) => {
export const queryAllList = async () => {
return await request.get({ url: `/crm/customer/query-all-list` })
}
// 查询客户操作日志
export const getOperateLog = async (id: number) => {
return await request.get({ url: `/crm/customer/operate-log?id=` + id })
}