新增拼团/套餐分享功能

This commit is contained in:
gyq
2025-12-25 15:38:00 +08:00
parent 448effd296
commit fbe170b254
18 changed files with 3789 additions and 1532 deletions

View File

@@ -15,6 +15,18 @@ export function getVendorPage(data, urlType = 'product') {
})
}
/**
* 获取供应商列表/无分页
* @returns
*/
export function getVendorList(urlType = 'product') {
return request({
url: `${urlType}/admin/product/vendor/list`,
method: "GET"
})
}
/**
* 添加供应商
* @returns
@@ -52,5 +64,4 @@ export function delVendor(id, urlType = 'product') {
url: `${urlType}/admin/product/vendor/${id}`,
method: "DELETE",
})
}
}