| File was renamed from rsf-admin/src/page/customer/CustomerEdit.jsx |
| | |
| | | ) |
| | | } |
| | | |
| | | const CustomerEdit = () => { |
| | | const DictTypeEdit = () => { |
| | | const translate = useTranslate(); |
| | | |
| | | return ( |
| | |
| | | </Typography> |
| | | <Stack direction='row' gap={2}> |
| | | <TextInput |
| | | label="table.field.customer.uuid" |
| | | source="uuid" |
| | | label="table.field.dictType.name" |
| | | source="name" |
| | | parse={v => v} |
| | | autoFocus |
| | | /> |
| | | </Stack> |
| | | <Stack direction='row' gap={2}> |
| | | <TextInput |
| | | label="table.field.customer.name" |
| | | source="name" |
| | | label="table.field.dictType.description" |
| | | source="description" |
| | | parse={v => v} |
| | | /> |
| | | </Stack> |
| | |
| | | ) |
| | | } |
| | | |
| | | export default CustomerEdit; |
| | | export default DictTypeEdit; |