| | |
| | | ReferenceArrayInput, |
| | | AutocompleteInput, |
| | | DeleteButton, |
| | | Button, |
| | | } from 'react-admin'; |
| | | import { Box, Typography, Card, Stack } from '@mui/material'; |
| | | import { styled } from '@mui/material/styles'; |
| | |
| | | import MyField from "../components/MyField"; |
| | | import { PAGE_DRAWER_WIDTH, OPERATE_MODE, DEFAULT_PAGE_SIZE } from '@/config/setting'; |
| | | import * as Common from '@/utils/common'; |
| | | import AllInclusiveIcon from '@mui/icons-material/AllInclusive'; |
| | | |
| | | const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({ |
| | | '& .css-1vooibu-MuiSvgIcon-root': { |
| | |
| | | |
| | | const filters = [ |
| | | <SearchInput source="condition" alwaysOn />, |
| | | <DateInput label='common.time.after' source="timeStart" alwaysOn />, |
| | | <DateInput label='common.time.before' source="timeEnd" alwaysOn />, |
| | | |
| | | <TextInput source="code" label="table.field.container.code" />, |
| | | <TextInput source="name" label="table.field.container.name" />, |
| | |
| | | <SelectInput source="flagRycle" label="table.field.container.flagRycle" |
| | | choices={[ |
| | | { id: 1, name: '是' }, |
| | | { id: 0, name: '否' }, |
| | | { id: 0, name: '否' }, |
| | | ]} |
| | | />, |
| | | <SelectInput source="flagLogic" label="table.field.container.flagLogic" |
| | | choices={[ |
| | | { id: 1, name: '是' }, |
| | | { id: 0, name: '否' }, |
| | | { id: 0, name: '否' }, |
| | | ]} |
| | | />, |
| | | |
| | |
| | | theme.transitions.create(['all'], { |
| | | duration: theme.transitions.duration.enteringScreen, |
| | | }), |
| | | marginRight: !!drawerVal ? `${PAGE_DRAWER_WIDTH}px` : 0, |
| | | marginRight: drawerVal ? `${PAGE_DRAWER_WIDTH}px` : 0, |
| | | }} |
| | | title={"menu.container"} |
| | | empty={<EmptyData onClick={() => { setCreateDialog(true) }} />} |
| | |
| | | sort={{ field: "create_time", order: "desc" }} |
| | | actions={( |
| | | <TopToolbar> |
| | | <InitButton /> |
| | | <FilterButton /> |
| | | <MyCreateButton onClick={() => { setCreateDialog(true) }} /> |
| | | <SelectColumnsButton preferenceKey='container' /> |
| | |
| | | preferenceKey='container' |
| | | bulkActionButtons={() => <BulkDeleteButton mutationMode={OPERATE_MODE} />} |
| | | rowClick={(id, resource, record) => false} |
| | | expand={() => <ContainerPanel />} |
| | | expandSingle={true} |
| | | omit={['id', 'createTime', 'createBy', 'memo']} |
| | | omit={['id', 'createTime', 'createBy', 'memo','statusBool','updateBy']} |
| | | > |
| | | <NumberField source="id" /> |
| | | <TextField source="code" label="table.field.container.code" /> |
| | | {/* <TextField source="code" label="table.field.container.code" /> */} |
| | | <TextField source="name" label="table.field.container.name" /> |
| | | <NumberField source="typeId" label="table.field.container.typeId" /> |
| | | <NumberField source="type" label="table.field.container.typeId" /> |
| | | <NumberField source="used" label="table.field.container.used" /> |
| | | <NumberField source="lenght" label="table.field.container.lenght" /> |
| | | <NumberField source="length" label="table.field.container.lenght" /> |
| | | <NumberField source="width" label="table.field.container.width" /> |
| | | <NumberField source="height" label="table.field.container.height" /> |
| | | <NumberField source="rstLen" label="table.field.container.rstLen" /> |
| | |
| | | ) |
| | | } |
| | | |
| | | //初始化按钮 |
| | | const InitButton = ({ setOpen }) => { |
| | | const close = () => { |
| | | setOpen(false) |
| | | } |
| | | return ( |
| | | <Button |
| | | label="toolbar.init" |
| | | variant="outlined" |
| | | size="medium" |
| | | onClick={close} |
| | | startIcon={<AllInclusiveIcon />} |
| | | sx={{ margin: '3.5em' }} /> |
| | | ) |
| | | } |
| | | |
| | | |
| | | |
| | | export default ContainerList; |