Explorar o código

fix: 修改接口前缀

sgc hai 2 meses
pai
achega
ac473e7eaa
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/api/modules/operationManagement.ts

+ 1 - 1
src/api/modules/operationManagement.ts

@@ -96,7 +96,7 @@ export const getActivityList = (params: {
   storeId?: string; // 商户ID
   storeName?: string; // 商户名称(模糊查询)
 }) => {
-  return http.get<ResPage<any>>(PORT_NONE + `/operationalActivity/detail`, params);
+  return storeAxiosInstance.get<ResPage<any>>(PORT_NONE + `/operationalActivity/detail`, { params });
 };
 
 /**