| | |
| | | import menu from './menu' |
| | | import user from './user'; |
| | | import operationRecord from './operationRecord'; |
| | | import customer from './customer'; |
| | | import shipper from './shipper'; |
| | | import matnr from './matnr'; |
| | | import matnrGroup from './matnrGroup'; |
| | | |
| | | |
| | | |
| | | const ResourceContent = (node) => { |
| | | switch (node.component) { |
| | |
| | | return user; |
| | | case 'operationRecord': |
| | | return operationRecord; |
| | | case 'customer': |
| | | return customer; |
| | | case 'shipper': |
| | | return shipper; |
| | | case 'matnr': |
| | | return matnr; |
| | | case 'matnrGroup': |
| | | return matnrGroup; |
| | | default: |
| | | return { |
| | | list: ListGuesser, |