| | |
| | | import basStation from './basicInfo/basStation'; |
| | | import warehouseStock from './statistics/stockManage'; |
| | | import basContainer from './basicInfo/basContainer'; |
| | | import outBound from "./work/outBound"; |
| | | import checkOutBound from "./work/checkOutBound"; |
| | | import stockTransfer from "./work/stockTransfer"; |
| | | |
| | | const ResourceContent = (node) => { |
| | | switch (node.component) { |
| | |
| | | return basStation; |
| | | case 'basContainer': |
| | | return basContainer; |
| | | case 'outBound': |
| | | return outBound; |
| | | case 'checkOutBound': |
| | | return checkOutBound; |
| | | case 'stockTransfer': |
| | | return stockTransfer; |
| | | default: |
| | | return { |
| | | list: ListGuesser, |