#
luxiaotao1123
2024-03-28 85e3287d028a8a393e7e7739b3c5eedee6b3904b
#
4个文件已修改
9 ■■■■ 已修改文件
zy-asrs-flow/src/pages/map/drawer/index.jsx 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/shelf/view.jsx 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/index.jsx
@@ -15,7 +15,7 @@
const MapDrawer = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
    const { curSprite } = props;
    const { curSprite, curFloor } = props;
    const handleCancel = () => {
        props.onCancel();
@@ -45,6 +45,7 @@
                    <>
                        <ShelfDrawer
                            curSprite={curSprite}
                            curFloor={curFloor}
                        />
                    </>
                )}
@@ -52,6 +53,7 @@
                    <>
                        <ShuttleDrawer
                            curSprite={curSprite}
                            curFloor={curFloor}
                        />
                    </>
                )}
zy-asrs-flow/src/pages/map/drawer/shelf/index.jsx
@@ -20,6 +20,7 @@
        view: (
            <ShelfView
                data={props.curSprite.data}
                curFloor={props.curFloor}
            />
        ),
        json: (
zy-asrs-flow/src/pages/map/drawer/shelf/view.jsx
@@ -56,6 +56,9 @@
    }
    useEffect(() => {
        console.log(props.data.no + '-' + props.curFloor);
        setLoading(true);
        endThree();
        setTimeout(() => {
zy-asrs-flow/src/pages/map/index.jsx
@@ -432,6 +432,7 @@
            <MapDrawer
                open={drawerVisible}
                curSprite={curSprite}
                curFloor={curFloor}
                refCurr={mapRef.current}
                onCancel={() => {
                    setCurSPrite(null);