| 123456789101112131415161718192021222324 |
- import AssetLabelPrinting from '../custom/printer/AssetLabelPrinting.vue'
- import ClampPrinting from '../custom/printer/ClampPrinting.vue'
- import TransferTask from '../custom/transferTask/TransferTask.vue'
- import StockRequisition from '../custom/stock/StockRequisition.vue'
- import StockPickingCar from '../custom/stock/StockPickingCar.vue'
- import AssetInventory from '../custom/inventory/AssetInventory.vue'
- import AssetInventoryStep from '../custom/inventory/AssetInventoryStep.vue'
- import InventoryDataProcessing from '../custom/inventory/InventoryDataProcessing.vue'
- import WorkBinPrinting from '../custom/printer/WorkBinPrinting.vue'
- const router = [
- { path: '/wms/inventory-label-printing', component: AssetLabelPrinting },
- { path: '/wms/clamp-printing', component: ClampPrinting },
- { path: '/wms/transfer-task', component: TransferTask },
- { path: '/wms/stock-requisition', component: StockRequisition },
- { path: '/wms/stock-picking-car', component: StockPickingCar },
- { path: '/wms/asset-inventory', component: AssetInventory },
- { path: '/wms/asset-inventory-step', component: AssetInventoryStep },
- { path: '/wms/inventory-data-processing', component: InventoryDataProcessing },
- { path: '/wms/work-bin-printing', component: WorkBinPrinting },
-
- ];
- export default router;
|