From 6fb52886921f7f6a8dd2b0eb8cce8edc41deb72d Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期四, 19 九月 2024 10:55:41 +0800 Subject: [PATCH] # --- zy-acs-flow/src/page/loc/LocList.jsx | 16 +++++++++++++--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/zy-acs-flow/src/page/loc/LocList.jsx b/zy-acs-flow/src/page/loc/LocList.jsx index 20bf815..ee5d890 100644 --- a/zy-acs-flow/src/page/loc/LocList.jsx +++ b/zy-acs-flow/src/page/loc/LocList.jsx @@ -30,6 +30,7 @@ ReferenceArrayInput, AutocompleteInput, DeleteButton, + Button, } from 'react-admin'; import { Box, Typography, Card, Stack } from '@mui/material'; import { styled } from '@mui/material/styles'; @@ -42,8 +43,9 @@ import MyField from "../components/MyField"; import { PAGE_DRAWER_WIDTH, OPERATE_MODE } from '@/config/setting'; import * as Common from '@/utils/common'; -import InitButton from "./InitButton"; -import RepartitionIcon from '@mui/icons-material/Repartition'; +import CorporateFareIcon from '@mui/icons-material/CorporateFare'; +import LocInit from "./LocInit"; +import rowSx from "./rowSx"; const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({ '& .css-1vooibu-MuiSvgIcon-root': { @@ -103,6 +105,7 @@ const [createDialog, setCreateDialog] = useState(false); const [drawerVal, setDrawerVal] = useState(false); + const [initDialog, setInitDialog] = useState(false); return ( <Box display="flex"> @@ -122,7 +125,9 @@ actions={( <TopToolbar> <FilterButton /> - <InitButton label='page.loc.init' icon={<RepartitionIcon />} /> + <Button label='page.loc.init' onClick={(event) => { + setInitDialog(true); + }}><CorporateFareIcon /></Button> <MyCreateButton onClick={() => { setCreateDialog(true) }} /> <SelectColumnsButton preferenceKey='loc' /> <MyExportButton /> @@ -137,6 +142,7 @@ expand={() => <LocPanel />} expandSingle={true} omit={['id', 'locType', 'uuid', 'statusBool', 'updateBy', 'createTime', 'createBy', 'memo']} + rowSx={rowSx(drawerVal || null)} > <NumberField source="id" /> <TextField source="locNo" label="table.field.loc.locNo" /> @@ -189,6 +195,10 @@ setDrawerVal={setDrawerVal} > </PageDrawer> + <LocInit + open={initDialog} + setOpen={setInitDialog} + /> </Box> ) } -- Gitblit v1.9.1