| | |
| | | import outBound from "./work/outBound"; |
| | | import checkOutBound from "./work/checkOutBound"; |
| | | import stockTransfer from "./work/stockTransfer"; |
| | | import emptyOutbound from "./work/emptyOutbound"; |
| | | import waveRule from "./waveRule"; |
| | | import check from "./orders/check"; |
| | | import checkDiff from "./orders/check/checkDiff"; |
| | |
| | | import statisticCount from './statistics/stockStatisticNum'; |
| | | import rcsTest from './rcsTest'; |
| | | import openApiApp from './system/openApiApp'; |
| | | import httpAuditLog from './system/httpAuditLog'; |
| | | import httpAuditRule from './system/httpAuditRule'; |
| | | |
| | | const ResourceContent = (node) => { |
| | | switch (node.component) { |
| | |
| | | return checkOutBound; |
| | | case "stockTransfer": |
| | | return stockTransfer; |
| | | case "emptyOutbound": |
| | | return emptyOutbound; |
| | | case "waveRule": |
| | | return waveRule; |
| | | case "check": |
| | |
| | | return rcsTest; |
| | | case "openApiApp": |
| | | return openApiApp; |
| | | case "httpAuditLog": |
| | | return httpAuditLog; |
| | | case "httpAuditRule": |
| | | return httpAuditRule; |
| | | default: |
| | | return { |
| | | list: ListGuesser, |