From 282e950afa48ae243917d02a713a7f512762e761 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期一, 14 十月 2024 10:48:01 +0800
Subject: [PATCH] #

---
 zy-acs-flow/src/map/batch/BatchSettings.jsx |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/zy-acs-flow/src/map/batch/BatchSettings.jsx b/zy-acs-flow/src/map/batch/BatchSettings.jsx
index ce07303..7ace3a3 100644
--- a/zy-acs-flow/src/map/batch/BatchSettings.jsx
+++ b/zy-acs-flow/src/map/batch/BatchSettings.jsx
@@ -1,10 +1,19 @@
+import React, { useState, useRef, useEffect } from 'react';
+import { useTranslate } from "react-admin";
+import { Box, Typography, IconButton, Stack, useTheme, Card, CardContent, Divider } from '@mui/material';
+import JsonShow from '../JsonShow';
 
-const BatchSettings = () => {
+
+const BatchSettings = (props) => {
+    const { data } = props;
 
     return (
-        <>
-            <h1>s</h1>
-        </>
+        <Box>
+            <JsonShow
+                data={data}
+                height={600}
+            />
+        </Box>
     )
 }
 

--
Gitblit v1.9.1