CRM:完善商机的列表

This commit is contained in:
YunaiV
2024-02-21 18:44:54 +08:00
parent 08bb022cb5
commit a2443e48f7
7 changed files with 436 additions and 204 deletions

View File

@ -23,6 +23,11 @@ export const getProductPage = async (params) => {
return await request.get({ url: `/crm/product/page`, params })
}
// 获得产品精简列表
export const getProductSimpleList = async () => {
return await request.get({ url: `/crm/product/simple-list` })
}
// 查询产品详情
export const getProduct = async (id: number) => {
return await request.get({ url: `/crm/product/get?id=` + id })