2025-03-26

This commit is contained in:
2025-03-26 11:00:21 +08:00
parent 927d7381b8
commit b45f4950d3
468 changed files with 54473 additions and 124 deletions

View File

@@ -0,0 +1,16 @@
import http from "@/api";
const BP = `/bp/inquiry`;
// 列表
export const getBPListApi = (params: any) => {
return http.get<any>(`${BP}/index`, params);
};
//导出
export const getBPListExportApi = (params: any) => {
return http.get<any>(`${BP}/export`, params, {
responseType: "arraybuffer"
});
};
//选品列表
export const getBPInterestedListApi = (params?: any) => {
return http.get<any>(`${BP}/interested`, params);
};