File was renamed from rsf-admin/src/page/customer/CustomerCreate.jsx |
| | |
| | | import StatusSelectInput from "../components/StatusSelectInput"; |
| | | import MemoInput from "../components/MemoInput"; |
| | | |
| | | const CustomerCreate = (props) => { |
| | | const DictTypeCreate = (props) => { |
| | | const { open, setOpen } = props; |
| | | |
| | | const translate = useTranslate(); |
| | |
| | | <Grid container rowSpacing={2} columnSpacing={2}> |
| | | <Grid item xs={6} display="flex" gap={1}> |
| | | <TextInput |
| | | label="table.field.customer.uuid" |
| | | source="uuid" |
| | | label="table.field.dictType.name" |
| | | source="name" |
| | | parse={v => v} |
| | | autoFocus |
| | | /> |
| | | </Grid> |
| | | <Grid item xs={6} display="flex" gap={1}> |
| | | <TextInput |
| | | label="table.field.customer.name" |
| | | source="name" |
| | | label="table.field.dictType.description" |
| | | source="description" |
| | | parse={v => v} |
| | | /> |
| | | </Grid> |
| | |
| | | ) |
| | | } |
| | | |
| | | export default CustomerCreate; |
| | | export default DictTypeCreate; |