|
|
|
@ -219,7 +219,7 @@ function IDEContainer() {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const getEvent = async () => {
|
|
|
|
const getEvent = async () => {
|
|
|
|
const res: any = await queryEventItemBySceneId(urlParams.id);
|
|
|
|
const res: any = await queryEventItemBySceneId({ sceneId: urlParams.id });
|
|
|
|
const res1: any = await queryEventItemBySceneIdOld(urlParams.id);
|
|
|
|
const res1: any = await queryEventItemBySceneIdOld(urlParams.id);
|
|
|
|
if (res.code === 200) dispatch(updateEventList(res.data));
|
|
|
|
if (res.code === 200) dispatch(updateEventList(res.data));
|
|
|
|
if (res1.code === 200) dispatch(updateEventListOld(res1.data));
|
|
|
|
if (res1.code === 200) dispatch(updateEventListOld(res1.data));
|
|
|
|
|