From 2be80f8dbf6bc0d66c7ebb21f8a1b9d3a2eb902d Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期日, 29 九月 2024 16:03:17 +0800 Subject: [PATCH] # --- zy-acs-flow/src/page/action/Action.jsx | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/zy-acs-flow/src/page/action/Action.jsx b/zy-acs-flow/src/page/action/Action.jsx index d7999de..d6bf503 100644 --- a/zy-acs-flow/src/page/action/Action.jsx +++ b/zy-acs-flow/src/page/action/Action.jsx @@ -8,7 +8,7 @@ } from 'react-admin'; import { Box, - Button, + Divider, Stack, Tooltip, Typography, @@ -22,6 +22,7 @@ const translate = useTranslate(); const theme = useTheme(); const [isHover, setHover] = useState(false); + console.log(data); return ( <Box @@ -60,16 +61,27 @@ minHeight: '0.75em', }, }} + direction="row" > <Typography - component="p" variant="body2" + color="textSecondary" lineHeight={1.5} margin={0} > + task: {data.taskId$} {/* // taskNo code val param action sts uuid {paragraph} */} </Typography> + <Divider orientation="vertical" flexItem sx={{ height: '1.5em', marginX: 1 }} /> + <Typography + variant="body2" + color="textSecondary" + lineHeight={1.5} + margin={0} + > + code: {data.code} + </Typography> </Stack> </Box> ); -- Gitblit v1.9.1