#
luxiaotao1123
2024-09-21 f2c1e96e19df67ff7ceb35233854c98aeaa39078
zy-acs-flow/src/page/agv/AgvShow.jsx
@@ -24,6 +24,8 @@
    Typography,
} from '@mui/material';
import { formatDistance } from 'date-fns';
import { AgvShowDetail } from "./show/AgvShowDetail";
import { AgvShowAside } from "./show/AgvShowAside";
export const AgvShow = () => {
@@ -58,7 +60,8 @@
                                    '& .RaTabbedShowLayout-content': { p: 0 },
                                }}
                            >
                                <TabbedShowLayout.Tab label="Activity">
                                <TabbedShowLayout.Tab label="DETAIL">
                                    <AgvShowDetail />
                                </TabbedShowLayout.Tab>
                            </TabbedShowLayout>
                        </CardContent>
@@ -68,12 +71,4 @@
            </Box>
        </>
    )
}
const AgvShowAside = (props) => {
    const { record, isPending } = useShowContext();
    return (<>
        <h1>{JSON.stringify(record)}</h1>
    </>)
}