Explorar el Código

fix: 修改接口前缀

sgc hace 2 meses
padre
commit
ac473e7eaa
Se han modificado 1 ficheros con 1 adiciones y 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 });
 };
 
 /**