feat: 🚀 仓库关系
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user