Skip to content
Snippets Groups Projects
Commit 1a710cd8 authored by xhm's avatar xhm
Browse files

fix:修改api地址

parent 4125841a
Branches
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ export async function postPhotoAcquisitionCategory(data: { ...@@ -19,7 +19,7 @@ export async function postPhotoAcquisitionCategory(data: {
export async function postReportEventSourceInfo( export async function postReportEventSourceInfo(
data: API.ReportEventSourceInfoReq data: API.ReportEventSourceInfoReq
): Promise<Resp<API.EventMembers | boolean>> { ): Promise<Resp<API.EventMembers | boolean>> {
return request('http://172.23.0.154:21578'+ "/event-info/reportSourceInfo", { return request(api.eventUrl + "/preprocessing/event-info/reportSourceInfo", {
method: "POST", method: "POST",
data, data,
}); });
...@@ -29,13 +29,10 @@ export async function postReportEventSourceInfo( ...@@ -29,13 +29,10 @@ export async function postReportEventSourceInfo(
export async function postEventList( export async function postEventList(
params: API.EventListReq params: API.EventListReq
): Promise<Resp<API.EventListDto>> { ): Promise<Resp<API.EventListDto>> {
return request( return request(api.reportUrl + "/citizenServices/getMyHandlingList", {
api.reportUrl + "/citizenServices/getMyHandlingList", method: "POST",
{ params,
method: "POST", });
params,
}
);
} }
//获取事件基本信息 //获取事件基本信息
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment