#
luxiaotao1123
2024-03-24 6eda17e53c843bc53c6bc2277d8132acce0f9261
#
2个文件已修改
12 ■■■■ 已修改文件
zy-asrs-flow/src/pages/map/batch/index.jsx 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/drawer/showJson.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-asrs-flow/src/pages/map/batch/index.jsx
@@ -53,8 +53,14 @@
                    }}
                >
                    <ShowJson
                        data={batchSprites?.length}
                        height='30%'
                        data={
                            batchSprites?.filter(item => {
                                return item.data?.type === Utils.SENSOR_TYPE.SHELF
                            }).map(item => {
                                return item.data?.no;
                            })
                        }
                        height='60%'
                    />
                </Card>
zy-asrs-flow/src/pages/map/drawer/showJson.jsx
@@ -38,7 +38,7 @@
    const { styles } = useStyles();
    const { data } = props;
    const formattedJSON = JSON.stringify(data, null, 2);
    const formattedJSON = JSON.stringify(data, null, 0);
    return (
        <>