custom.js 1.3 KB

123456789101112131415161718192021222324
  1. import AssetLabelPrinting from '../custom/printer/AssetLabelPrinting.vue'
  2. import ClampPrinting from '../custom/printer/ClampPrinting.vue'
  3. import TransferTask from '../custom/transferTask/TransferTask.vue'
  4. import StockRequisition from '../custom/stock/StockRequisition.vue'
  5. import StockPickingCar from '../custom/stock/StockPickingCar.vue'
  6. import AssetInventory from '../custom/inventory/AssetInventory.vue'
  7. import AssetInventoryStep from '../custom/inventory/AssetInventoryStep.vue'
  8. import InventoryDataProcessing from '../custom/inventory/InventoryDataProcessing.vue'
  9. import WorkBinPrinting from '../custom/printer/WorkBinPrinting.vue'
  10. const router = [
  11. { path: '/wms/inventory-label-printing', component: AssetLabelPrinting },
  12. { path: '/wms/clamp-printing', component: ClampPrinting },
  13. { path: '/wms/transfer-task', component: TransferTask },
  14. { path: '/wms/stock-requisition', component: StockRequisition },
  15. { path: '/wms/stock-picking-car', component: StockPickingCar },
  16. { path: '/wms/asset-inventory', component: AssetInventory },
  17. { path: '/wms/asset-inventory-step', component: AssetInventoryStep },
  18. { path: '/wms/inventory-data-processing', component: InventoryDataProcessing },
  19. { path: '/wms/work-bin-printing', component: WorkBinPrinting },
  20. ];
  21. export default router;