fix: 🧩 修复BUG

This commit is contained in:
2025-03-27 10:34:06 +08:00
parent a66092dea0
commit 2694a0c905
5 changed files with 69 additions and 56 deletions

View File

@@ -23,3 +23,8 @@ export const getProductBuypassUpdateApi = (params: any) => {
const { id, param } = params;
return http.put<any>(`${PRODUCT_BUYPASS}/update/${id}`, param);
};
//新增
export const getProductBuypassListSaveApi = (params: any) => {
return http.post<any>(`${PRODUCT_BUYPASS}/save`, params);
};