#
luxiaotao1123
2024-10-10 4ee0610b0088b35f7f48b020b807453e28297b45
#
1个文件已修改
2个文件已添加
47 ■■■■■ 已修改文件
zy-acs-flow/src/map/MapPage.jsx 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/map/insight/index.jsx 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/map/settings/index.jsx 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/map/MapPage.jsx
@@ -22,7 +22,9 @@
import Player from './player';
import * as Tool from './tool';
import { NotificationProvider, useNotification } from './Notification';
import Insight from "./insight";
import Device from "./Device";
import Settings from "./settings";
import * as Http from './http';
let player;
@@ -39,6 +41,7 @@
    const [mapContainer, setMapContainer] = useState(null);
    const [mode, setMode] = useState(MapMode.OBSERVER_MODE);
    const [insightVisible, setInsightVisible] = useState(false);
    const [deviceVisible, setDeviceVisible] = useState(false);
    const [settingsVisible, setSettingsVisible] = useState(false);
@@ -291,6 +294,13 @@
                </SpeedDial>
            </Box>
            <Insight
                open={insightVisible}
                onCancel={() => {
                    setInsightVisible(false);
                }}
            />
            <Device
                open={deviceVisible}
                onCancel={() => {
@@ -300,6 +310,13 @@
                width={378}
            />
            <Settings
                open={settingsVisible}
                onCancel={() => {
                    setSettingsVisible(false);
                }}
            />
        </Box>
    );
}
zy-acs-flow/src/map/insight/index.jsx
New file
@@ -0,0 +1,15 @@
const Insight = (props) => {
    const { open, onCancel } = props;
    return (
        <>
        </>
    )
}
export default Insight;
zy-acs-flow/src/map/settings/index.jsx
New file
@@ -0,0 +1,15 @@
const Settings = (props) => {
    const { open, onCancel } = props;
    return (
        <>
        </>
    )
}
export default Settings;