📖 CRM:产品模块的 review

This commit is contained in:
芋道源码
2024-01-13 02:04:20 +00:00
committed by YunaiV
8 changed files with 215 additions and 103 deletions

View File

@ -41,3 +41,8 @@ export const deleteProduct = async (id: number) => {
export const exportProduct = async (params) => {
return await request.download({ url: `/crm/product/export-excel`, params })
}
// 查询产品操作日志
export const getOperateLogPage = async (params: any) => {
return await request.get({ url: '/crm/product/operate-log-page', params })
}