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

(cherry picked from commit 455688eaa8)
This commit is contained in:
puhui999
2023-12-14 18:19:34 +08:00
committed by shizhong
parent f9c272ad0d
commit 5ab56e3fff
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 })
}