feat: 🚀 仓库关系

This commit is contained in:
2025-11-07 09:46:06 +08:00
parent 1208835216
commit 107bd1a933
14 changed files with 604 additions and 97 deletions

View File

@@ -1,8 +1,8 @@
import http from "@/api";
//店鋪資料列表
export const getShopListApi = () => {
return http.get<any>(`store`);
export const getShopListApi = (params: any) => {
return http.get<any>(`store`, params);
};
//獲取接入系統列表數據
export const getShopAccessSystemApi = () => {
@@ -22,7 +22,7 @@ export const getShopUpApi = (id: any, params: any) => {
};
//详情
export const getShopDetailsApi = (id: any) => {
return http.post<any>(`store/${id}`);
return http.get<any>(`store/${id}`);
};
//导出
export const getShopListExportApi = (params: any) => {