联系人review修改

This commit is contained in:
zyna
2023-11-26 21:54:50 +08:00
parent 8aa17b673b
commit 46a8755c93
6 changed files with 170 additions and 327 deletions

View File

@ -62,3 +62,7 @@ export const deleteCustomer = async (id: number) => {
export const exportCustomer = async (params) => {
return await request.download({ url: `/crm/customer/export-excel`, params })
}
//客户列表
export const queryAllList = async () => {
return await request.get({ url: `/crm/customer/query-all-list` })
}