From a2cd787d41975c35d3ddaaa78271e04dbd15087f Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期四, 17 十月 2024 15:42:43 +0800
Subject: [PATCH] #
---
zy-acs-flow/src/map/insight/agv/index.jsx | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/zy-acs-flow/src/map/insight/agv/index.jsx b/zy-acs-flow/src/map/insight/agv/index.jsx
index 916f6ff..d8ee938 100644
--- a/zy-acs-flow/src/map/insight/agv/index.jsx
+++ b/zy-acs-flow/src/map/insight/agv/index.jsx
@@ -2,6 +2,7 @@
import { useTranslate } from "react-admin";
import { Box, Typography, Tabs, Tab, Stack, useTheme, Divider } from '@mui/material';
import AgvMain from './AgvMain';
+import AgvControl from './AgvControl';
import JsonShow from '../../JsonShow';
const AgvInsight = (props) => {
@@ -36,6 +37,7 @@
sx={{ mb: 0 }}
>
<Tab label={translate('page.map.insight.title')} />
+ <Tab label={translate('page.map.insight.tabs.control')} />
<Tab label={'JSON'} />
</Tabs>
@@ -50,6 +52,11 @@
/>
)}
{activeTab === 1 && (
+ <AgvControl
+ data={sprite?.data}
+ />
+ )}
+ {activeTab === 2 && (
<JsonShow
data={sprite?.data}
height={550}
--
Gitblit v1.9.1