UNPKG

logwire-wms-ui-test

Version:

运匠科技wms-PDA基础组件库

980 lines (912 loc) 30.3 kB
/* * 路由导出入口 * @author: 张文 * @date 2022-04-29 * */ export default [ // 初始化页面 { path: "/", name: "LwNull", component: () => import('./../views/common/home/index.vue') }, // 初始化页面 { path: "/lwInit", name: "LwInit", component: () => import('./../views/common/init/index.vue') }, // 首页 { path: "/lwHome", name: "LwHome", component: () => import('./../views/common/home/index.vue') }, // 登录页 { path: "/lwLogin", name: "LwLogin", component: () => import('./../views/common/login/index.vue') }, // 菜单页1 { path: "/lwMenuOne", name: "LwMenuOne", component: () => import('./../views/common/menu/menuOne.vue') }, // 菜单页2 { path: "/lwMenuTwo", name: "LwMenuTwo", component: () => import('./../views/common/menu/menuTwo.vue') }, // 我的管理页 { path: "/lwMy", name: "LwMy", component: () => import('./../views/common/my/index.vue') }, // 仓库选择 { path: "/lwWarehouse", name: "LwWarehouse", component: () => import('./../views/common/my/warehouse.vue') }, // 设备管理 { path: "/lwDevice", name: "LwDevice", component: () => import('./../views/common/my/device.vue') }, // 打印机管理 { path: "/lwPrint", name: "LwPrint", component: () => import('./../views/common/my/print.vue') }, // 消息 { path: "/lwMsg", name: "LwMsg", component: () => import('./../views/common/my/msg.vue'), meta: {keepAlive: true} }, // 多语言 { path: "/lwLanguage", name: "LwLanguage", component: () => import('./../views/common/my/language.vue') }, // 时区 { path: "/lwTimezone", name: "LwTimezone", component: () => import('./../views/common/my/timezone.vue') }, // 任务 { path: "/lwTask", name: "LwTask", component: () => import('./../views/common/task/index.vue'), }, // 任务搜索 { path: "/lwSearchTask", name: "LwSearchTask", component: () => import('./../views/common/task/search.vue'), }, // 任务控制台 { path: "/lwTaskConsole", name: "LwTaskConsole", component: () => import('./../views/common/taskConsole/index.vue'), }, // 入库上架 { path: "/receive/putaway/lwIndex", name: "LwReceivePutaway", component: () => import('./../views/receive/putaway/index.vue') }, { path: "/receive/putaway/lwLpnAction", name: "LwReceivePutawayLpnAction", component: () => import('./../views/receive/putaway/lpnAction.vue') }, { path: "/receive/putaway/lwSkuAction", name: "LwReceivePutawaySkuAction", component: () => import('./../views/receive/putaway/skuAction.vue') }, { path: "/receive/putaway/lwLpnBatchAction", name: "LwReceivePutawayLpnBatchAction", component: () => import('./../views/receive/putaway/lpnBatchAction.vue') }, { path: "/receive/putaway/lwCaseAction", name: "LwReceivePutawayCaseAction", component: () => import('./../views/receive/putaway/caseAction.vue') }, // 收货回单 { path: "/receive/receipt/lwIndex", name: "LwReceipt", component: () => import('./../views/receive/receipt/index.vue') }, { path: "/receive/receipt/lwReceiptConfirm", name: "lwReceiptConfirm", component: () => import('./../views/receive/receipt/action.vue') }, // 收货异常 { path: "/receive/abnormal/lwIndex", name: "LwReceiveAbnormal", component: () => import('./../views/receive/abnormal/index.vue') }, { path: "/receive/abnormal/lwAction", name: "LwReceiveAbnormalAction", component: () => import('./../views/receive/abnormal/action.vue') }, // 在库 - 标准移动 { path: "/inner/lwTaskMove", name: "LwInnerTaskMove", component: () => import('./../views/inner/taskMove/index.vue') }, // 在库 - 异常移动 { path: "/inner/lwAbnormalMove", name: "lwInnerAbnormalMove", component: () => import('./../views/inner/abnormalMove/index.vue') }, // 在库 - 移动任务(整容器) { path: "/inner/lwTaskMove/whole", name: "LwInnerTaskMoveWhole", component: () => import('./../views/inner/taskMove/whole/MoveTaskWholeIndexView.vue') }, // 在库 - 整箱下架 { path: "/inner/lwTaskMove/whole/case-down", name: "LwInnerTaskMoveWholeCaseDown", component: () => import('./../views/inner/taskMove/whole/MoveTaskWholeCaseDownView.vue') }, // 在库 - 整箱上架 { path: "/inner/lwTaskMove/whole/case-up", name: "LwInnerTaskMoveWholeCaseUp", component: () => import('./../views/inner/taskMove/whole/MoveTaskWholeCaseUpView.vue') }, // 在库 - 整箱随机移动 { path: "/inner/lwTaskMove/random/whole-case", name: "MoveRandomWholeCase", component: () => import('./../views/inner/taskMove/whole/MoveRandomWholeCaseView.vue') }, // 在库 - 异常上报 { path: "/inner/reportAbnormal/lwIndex", name: "lwInnerReportAbnormal", component: () => import('./../views/inner/reportAbnormal/index.vue') }, { path: "/inner/reportAbnormal/lwAction", name: "lwInnerReportAbnormalAction", component: () => import('./../views/inner/reportAbnormal/action.vue') }, // 在库 - 随机移动 { path: "/inner/randomMove/lwIndex", name: "LwInnerRandomMove", component: () => import('./../views/inner/randomMove/index.vue') }, // 在库 - 整托盘移动 { path: "/inner/lpnMove/lwIndex", name: "LwInnerLpnMove", component: () => import('./../views/inner/lpnMove/index.vue') }, { path: "/inner/lpnMove/lwAction", name: "LwInnerLpnMoveAction", component: () => import('./../views/inner/lpnMove/action.vue') }, // 在库 - 随机快速移动 - 整箱 { path: "/inner/caseQuickMove/lwIndex", name: "LwInnerCaseQuickMove", component: () => import('./../views/inner/caseQuickMove/index.vue') }, // 在库 - 随机快速移动 - 零散 { path: "/inner/fragQuickMove/lwIndex", name: "LwInnerFragQuickMove", component: () => import('./../views/inner/fragQuickMove/index.vue') }, // 在库 - 随机快速移动 - 零散 - 执行 { path: "/inner/fragQuickMove/lwAction", name: "LwInnerFragQuickMoveAction", component: () => import('./../views/inner/fragQuickMove/action.vue') }, // 在库 - 领用 { path: "/inner/materialApply/generate/lwIndex", name: "LwMaterialApplyGenerate", component: () => import('../views/inner/materialApply/generate.vue') }, { path: "/inner/materialApply/action/lwIndex", name: "LwMaterialApplyAction", component: () => import('../views/inner/materialApply/action.vue') }, // 在库 - 借用单 { path: "/inner/borrow/lwIndex", name: "LwInnerBorrow", component: () => import('../views/inner/borrow/index.vue') }, { path: "/inner/borrow/action/lwIndex", name: "LwInnerBorrowAction", component: () => import('../views/inner/borrow/action.vue') }, // 在库移动上架 { path: "/inner/movePutAway/lwIndex", name: "LwMovePutAwayIndex", component: () => import('../views/inner/movePutAway/index.vue') }, // 在库 - 异常处理 { path: "/inner/disposeAbnormal/lwIndex", name: "LwInnerDisposeAbnormalIndex", component: () => import('./../views/inner/disposeAbnormal/index.vue') }, { path: "/inner/disposeAbnormal/lwAction", name: "LwInnerDisposeAbnormalAction", component: () => import('./../views/inner/disposeAbnormal/action.vue') }, // 在库 - 呆滞品整理- 任务入口 { path: "/inner/dead/lwTaskEntrance", name: "LwInnerDeadTaskEntrance", component: () => import('./../views/inner/dead/taskEntrance.vue') }, // 在库 - 呆滞品整理- 小件 - 装箱 { path: "/inner/dead/lwSmallAction", name: "LwInnerDeadSmallAction", component: () => import('../views/inner/dead/smallPage.vue') }, // 在库 - 呆滞品整理- 中大件 - 打托 { path: "/inner/dead/lwLargeAction", name: "LwInnerDeadLargeAction", component: () => import('./../views/inner/dead/large.vue') }, // 在库 - 呆滞品上架 - 起始页 { path: "/inner/dead/putaway/lwIndex", name: "LwInnerDeadPutawayIndex", component: () => import('./../views/inner/dead/putaway/index.vue') }, // 在库 - 呆滞品上架 - 执行页 { path: "/inner/dead/putaway/lwAction", name: "LwInnerDeadPutawayAction", component: () => import('./../views/inner/dead/putaway/action.vue') }, // 在库 - 呆滞品查询 - 起始页 { path: "/inner/dead/query/lwIndex", name: "LwInnerDeadQueryIndex", component: () => import('./../views/inner/dead/query/index.vue') }, // 在库 - 呆滞品查询 - 详情页页 { path: "/inner/dead/query/lwAction", name: "LwInnerDeadQueryAction", component: () => import('./../views/inner/dead/query/action.vue') }, // 在库 - 质检 - 抽检 { path: "/inner/quality/sample/lwIndex", name: "LwInnerQualitySampleIndex", component: () => import('../views/inner/quality/sample.vue') }, // 在库 - 质检 - 执行 { path: "/inner/quality/lwAction", name: "LwInnerQualityAction", component: () => import('../views/inner/quality/action.vue') }, // 在库 - 商品排查 { path: "/inner/check/action", name: "LwInnerCheckOrderPage", component: () => import('../views/inner/check/action.vue') }, // 库存查询 - 首页 { path: "/inventory/queryInventory/lwIndex", name: "LwQueryInventoryIndex", component: () => import('./../views/inventory/queryInventory/index.vue') }, // 库存查询 - 列表页 { path: "/inventory/queryInventory/lwPage", name: "LwQueryInventoryPage", component: () => import('./../views/inventory/queryInventory/page.vue') }, //<editor-fold desc="收货"> { // 任务id获取收货页面 path: "/inbound/receive/lwIndex", name: "LwInboundAsnIndex", component: () => import('../views/inbound/receive/index.vue') }, { // 输入单号查找收货页面 path: "/inbound/receive/lwHome", name: "LwInboundAsnHome", component: () => import('../views/inbound/receive/home.vue') }, { // 打印标签页 path: "/inbound/receive/lwPrintLabel", name: "lwPrintLabel", component: () => import('../views/inbound/receive/printLabel.vue') }, { // 按商品收货扫描 path: "/inbound/receive/sku/scan", name: "LwInboundReceiveSkuScan", component: () => import('../views/inbound/receive/sku/InboundReceiveSkuScanView.vue') }, { // 按商品收货 - 预收 path: "/inbound/receive/sku/advance", name: "LwInboundReceiveSkuAdvance", component: () => import('../views/inbound/receive/sku/InboundReceiveSkuAdvanceView.vue') }, { // 按商品收货 - 直接收货(快收) path: "/inbound/receive/sku/direct", name: "LwInboundReceiveSkuDirect", component: () => import('../views/inbound/receive/sku/InboundReceiveSkuDirectView.vue') }, { // 按托盘收货扫描 path: "/inbound/receive/lpn/scan", name: "LwInboundReceiveLpnScan", component: () => import('../views/inbound/receive/lpn/InboundReceiveLpnScanView.vue') }, { // 按托盘收货 path: "/inbound/receive/lpn/execute", name: "LwInboundReceiveLpnExecute", component: () => import('../views/inbound/receive/lpn/InboundReceiveLpnExecuteView.vue') }, { // 批量托盘收货 path: "/inbound/receive/lpn/batchExecute", name: "InboundReceiveLpnBatchExecute", component: () => import('../views/inbound/receive/lpn/InboundReceiveLpnBatchExecuteView.vue') }, { // 按箱收货扫描 path: "/inbound/receive/case/scan", name: "LwInboundReceiveCaseScan", component: () => import('../views/inbound/receive/case/InboundReceiveCaseScanView.vue') }, { // 按箱收货 path: "/inbound/receive/case/execute", name: "LwInboundReceiveCaseExecute", component: () => import('../views/inbound/receive/case/InboundReceiveCaseExecuteView.vue') }, { // 调拨收货扫描 path: "/inbound/receive/alloc/tab", name: "LwInboundReceiveAllocTabList", component: () => import('../views/inbound/receive/alloc/InboundReceiveAllocTabListView.vue') }, { // 调拨收货唯一码 path: "/inbound/receive/alloc/snExecute", name: "LwInboundReceiveAllocSnExecute", component: () => import('../views/inbound/receive/alloc/InboundReceiveAllocSnExecuteView.vue') }, { // 调拨收货批量 path: "/inbound/receive/alloc/skuExecute", name: "LwInboundReceiveAllocSkuExecute", component: () => import('../views/inbound/receive/alloc/InboundReceiveAllocSkuExecuteView.vue') }, { // 无单收货扫描 path: "/inbound/receive/random/scan", name: "LwInboundReceiveRandomSkuScan", component: () => import('../views/inbound/receive/random/InboundReceiveRandomSkuScanView.vue') }, { // 无单收货执行 path: "/inbound/receive/random/skuExecute", name: "LwInboundReceiveRandomSkuExecute", component: () => import('../views/inbound/receive/random/InboundReceiveRandomSkuExecuteView.vue') }, { // 无单收货执行 path: "/inbound/receive/random/skuSnExecute", name: "LwInboundReceiveRandomSkuSnExecute", component: () => import('../views/inbound/receive/random/InboundReceiveRandomSkuSnExecuteView.vue') }, { // 收货品检任务列表 path: "/inbound/quality/task", name: "LwInboundQualityTaskList", component: () => import('../views/inbound/quality/InboundQualityTaskListView.vue') }, { // 品检页面 path: "/inbound/quality/execute", name: "LwInboundQualityExecute", component: () => import('../views/inbound/quality/InboundQualityExecuteView.vue') }, { // 分拣首页 path: "/inbound/sorting/lwIndex", name: "LwInboundSortingIndexView", component: () => import('../views/inbound/sorting/LwInboundSortingIndexView.vue') }, { // 分拣单详情页 path: "/inbound/sorting/lwAsnDetail", name: "LwInboundSortingAsnView", component: () => import('../views/inbound/sorting/LwInboundSortingAsnView.vue') }, { // 按容器(托、箱)分拣 path: "/inbound/sorting/lwContainer", name: "LwInboundSortingByContainerView", component: () => import('../views/inbound/sorting/LwInboundSortingByContainerView.vue') }, { // 按单分拣 path: "/inbound/sorting/lwOrder", name: "LwInboundSortingByOrderView", component: () => import('../views/inbound/sorting/LwInboundSortingByOrderView.vue') }, { // 卸货 - 起始页 path: "/inbound/unload/lwIndex", name: "lwInboundUnloadIndex", component: () => import('../views/inbound/unload/index.vue') }, { // 卸货 - 新建卸货单 path: "/inbound/unload/lwAdd", name: "lwInboundUnloadAdd", component: () => import('../views/inbound/unload/add.vue') }, { // 卸货 - 执行 path: "/inbound/unload/lwAction", name: "lwInboundUnloadAction", component: () => import('../views/inbound/unload/action.vue') }, //</editor-fold> //<editor-fold desc="盘点"> { path: "/inner/count/lwIndex", name: "LwCountIndex", component: () => import('../views/count/index.vue') }, // 盘点控制台 { path: "/inner/count/lwConsole", name: "LwCountConsole", component: () => import('../views/count/console.vue') }, { path: "/inner/count/loc/lwIndex", name: "LwCountLocIndex", component: () => import('../views/count/loc/index.vue') }, { path: "/inner/count/loc/lwAction", name: "LwCountLocAction", component: () => import('../views/count/loc/action.vue') }, { path: "/inner/count/inv/lwIndex", name: "LwCountInvIndex", component: () => import('../views/count/inv/index.vue') }, { path: "/inner/count/inv/lwAction", name: "LwCountInvAction", component: () => import('../views/count/inv/action.vue') }, //</editor-fold> //<editor-fold desc="出库拦截"> // 出库拦截箱列表 { path: "/outbound/block/box-list", name: "LwOutboundBlockBoxListView", component: () => import('./../views/outbound/block/OutboundBlockBoxListView.vue') }, // 出库拦截执行页面 { path: "/outbound/block/execute", name: "LwOutboundBlockExecuteView", component: () => import('./../views/outbound/block/OutboundBlockExecuteView.vue') }, //</editor-fold> //<editor-fold desc="确认缺货"> // 缺货列表 { path: "/outbound/stockout/list", name: "LwOutboundStockoutListView", component: () => import('./../views/outbound/stockout/LwOutboundStockoutListView.vue') }, // 缺货确认 { path: "/outbound/stockout/execute", name: "LwOutboundStockoutExecuteView", component: () => import('./../views/outbound/stockout/LwOutboundStockoutExecuteView.vue') }, //</editor-fold> // 出库 - 箱票补打 { path: "/outbound/reprint-box/list", name: "LwOutboundReprintBoxView", component: () => import('./../views/outbound/reprint-box/LwOutboundReprintBoxView.vue') }, // 出库 - 集货 { path: "/outbound/summary/lpn/lwIndex", name: "LwOutboundSummaryLpn", component: () => import('./../views/outbound/summary/lpn/index.vue') }, { path: "/outbound/summary/lpn/lwAction", name: "LwOutboundSummaryLpnAction", component: () => import('./../views/outbound/summary/lpn/action.vue') }, { path: "/outbound/summary/box/lwIndex", name: "LwOutboundSummaryBoxAction", component: () => import('./../views/outbound/summary/box/index.vue') }, // 出库 - 发运 { path: "/outbound/delivery/lwAddOrder", name: "LwOutboundDeliveryAddOrder", component: () => import('./../views/outbound/delivery/addOrder.vue') }, { path: "/outbound/delivery/lwIndex", name: "LwOutboundDeliveryIndex", component: () => import('./../views/outbound/delivery/index.vue') }, { path: "/outbound/delivery/lwAction", name: "LwOutboundDeliveryAction", component: () => import('./../views/outbound/delivery/action.vue') }, // 出库 - 拣选 { path: "/outbound/pick/lwIndex", name: "LwOutboundPickIndex", component: () => import('./../views/outbound/pick/index.vue') }, { path: "/outbound/pick/lwBoxAction", name: "LwOutboundPickBoxAction", component: () => import('./../views/outbound/pick/boxAction.vue') }, { path: "/outbound/pick/lwLpnAction", name: "LwOutboundPickLpnAction", component: () => import('./../views/outbound/pick/lpnAction.vue') }, { path: "/outbound/pick/lwAloneAction", name: "LwOutboundPickAloneAction", component: () => import('./../views/outbound/pick/aloneAction.vue') }, { path: "/outbound/pick/lwNotAloneAction", name: "LwOutboundPickNotAloneAction", component: () => import('./../views/outbound/pick/notAloneAction.vue') }, { path: "/outbound/pick/lwSowAction", name: "LwOutboundPickSowAction", component: () => import('./../views/outbound/pick/sowAction.vue') }, { path: "/outbound/pick/lwContainerAction", name: "LwOutboundPickContainerAction", component: () => import('./../views/outbound/pick/containerAction.vue') }, // 出库 - 捆包集货 { path: "/outbound/packCollect/lwIndex", name: "LwOutboundPackCollectIndex", component: () => import('./../views/outbound/packCollect/index.vue') }, // 出库 - 播种集货 { path: "/outbound/sowCollect/lwIndex", name: "LwOutboundSowCollectIndex", component: () => import('./../views/outbound/sowCollect/index.vue') }, // 出库 - 分区拣选集合 { path: "/outbound/pickMerge/lwIndex", name: "LwOutboundPickMergeIndex", component: () => import('./../views/outbound/pickMerge/index.vue') }, { path: "/outbound/pickMerge/lwContent", name: "LwOutboundPickMergeContent", component: () => import('./../views/outbound/pickMerge/content.vue') }, { path: "/outbound/pickMerge/lwAction", name: "LwOutboundPickMergeAction", component: () => import('./../views/outbound/pickMerge/action.vue') }, // 出库 - 播种分拣 { path: "/outbound/sow/lwIndex", name: "LwOutboundSowIndex", component: () => import('./../views/outbound/sow/index.vue') }, { path: "/outbound/sow/lwAction", name: "LwOutboundSowAction", component: () => import('./../views/outbound/sow/action.vue') }, // 出库 - 复核捆包 { path: "/outbound/bale/lwIndex", name: "LwOutboundBaleIndex", component: () => import('./../views/outbound/bale/index.vue') }, { path: "/outbound/bale/lwNewBale", name: "LwOutboundBaleNewBale", component: () => import('./../views/outbound/bale/newBale.vue') }, { path: "/outbound/bale/lwAllCheck", name: "LwOutboundBaleAllCheck", component: () => import('./../views/outbound/bale/allCheck.vue') }, { path: "/outbound/bale/lwAction", name: "LwOutboundBaleAction", component: () => import('./../views/outbound/bale/action.vue') }, // 出库 - 独立捆包 { path: "/outbound/aloneBale/lwIndex", name: "LwOutboundAloneBaleIndex", component: () => import('./../views/outbound/aloneBale/index.vue') }, { path: "/outbound/aloneBale/lwNewBale", name: "LwOutboundAloneBaleNewBale", component: () => import('./../views/outbound/aloneBale/newBale.vue') }, { path: "/outbound/aloneBale/lwAction", name: "LwOutboundAloneBaleAction", component: () => import('./../views/outbound/aloneBale/action.vue') }, // 出库 -捆包箱调整 { path: "/outbound/baleChange/lwIndex", name: "LwOutboundBaleChangeIndex", component: () => import('./../views/outbound/baleChange/index.vue') }, { path: "/outbound/baleChange/lwAction", name: "LwOutboundBaleChangeAction", component: () => import('./../views/outbound/baleChange/action.vue') }, { path: "/outbound/baleChange/lwSkuCheck", name: "LwOutboundBaleChangeSkuCheck", component: () => import('./../views/outbound/baleChange/skuCheck.vue') }, // 出库 - 拣选容器查询 { path: "/outbound/pickContainerSearch/lwIndex", name: "LwOutboundPickContainerIndex", component: () => import('../views/outbound/pickContainerSearch/index.vue') }, { path: "/outbound/pickContainerSearch/lwAction", name: "LwOutboundPickContainerSearchAction", component: () => import('../views/outbound/pickContainerSearch/action.vue') }, // 出库 - 滞留件转存 { path: "/outbound/boxTransfer/lwIndex", name: "LwOutboundBoxTransferIndex", component: () => import('./../views/outbound/boxTransfer/index.vue') }, { path: "/outbound/boxTransfer/lwAction", name: "LwOutboundBoxTransferAction", component: () => import('./../views/outbound/boxTransfer/action.vue') }, // 出库 - 交接 { path: "/outbound/handover/lwIndex", name: "LwOutboundHandoverIndex", component: () => import('./../views/outbound/handover/index.vue') }, { path: "/outbound/handover/lwLineAction", name: "LwOutboundHandoverLineActionIndex", component: () => import('./../views/outbound/handover/line.vue') }, { path: "/outbound/handover/lwLpnAction", name: "LwOutboundHandoverLpnActionIndex", component: () => import('../views/outbound/handover/lpn.vue') }, { path: "/outbound/handover/lwCustomerAction", name: "LwOutboundHandoverCustomerActionIndex", component: () => import('./../views/outbound/handover/customer.vue') }, // 出库 - 打托 { path: "/outbound/lpnPack/lwIndex", name: "LwOutboundLpnPackIndex", component: () => import('./../views/outbound/lpnPack/index.vue') }, { path: "/outbound/lpnPack/lwNew", name: "LwOutboundLpnPackNew", component: () => import('./../views/outbound/lpnPack/newLpn.vue') }, { path: "/outbound/lpnPack/lwAction", name: "LwOutboundLpnPackAction", component: () => import('./../views/outbound/lpnPack/action.vue') }, { path: "/outbound/lpnPack/lwOver", name: "LwOutboundLpnPackOver", component: () => import('./../views/outbound/lpnPack/over.vue') }, { path: "/config/newProject/lwIndex", name: "LwNewProjectIndex", component: () => import('../views/config/newProject/index.vue') }, { path: "/config/newProject/lwAction", name: "LwNewProjectAction", component: () => import('../views/config/newProject/action.vue') }, { path: "/config/masterLocation/masterLocationConfig/lwIndex", name: "LwInnerMasterLocationConfigIndex", component: () => import('../views/config/masterLocation/masterLocationConfig/index.vue') }, { path: "/config/masterLocation/masterLocationConfig/lwAction", name: "LwInnerMasterLocationConfigActionPage", component: () => import('../views/config/masterLocation/masterLocationConfig/action.vue') }, { path: "/config/masterLocation/masterLocationQuery/lwIndex", name: "LwInnerMasterLocationQueryIndex", component: () => import('../views/config/masterLocation/masterLocationQuery/index.vue') }, { path: "/config/masterLocation/masterLocationQuery/queryBySkuCode", name: "LwInnerMasterLocationQueryBySkuCode", component: () => import('../views/config/masterLocation/masterLocationQuery/queryBySkuCode.vue') }, { path: "/config/masterLocation/masterLocationQuery/queryByLocationCode", name: "LwInnerMasterLocationQueryByLocationCode", component: () => import('../views/config/masterLocation/masterLocationQuery/queryByLocationCode.vue') }, // 加工 - 备料 { path: "/process/prepare/lwIndex", name: "LwProcessPrepareIndex", component: () => import('../views/process/prepare/index.vue') }, // 加工执行 - 起始页 { path: "/process/action/lwIndex", name: "LwProcessActionIndex", component: () => import('../views/process/action/index.vue') }, // 加工执行 - 加工台详情 { path: "/process/action/lwContent", name: "LwProcessActionContent", component: () => import('../views/process/action/contentInfo.vue') }, // 加工执行 - 控制台 { path: "/process/action/lwConsole", name: "LwProcessActionConsole", component: () => import('../views/process/action/consoleInfo.vue') }, // 加工执行 - 加工台执行 { path: "/process/action/lwAction", name: "LwProcessActionAction", component: () => import('../views/process/action/action.vue') }, // 加工台-加工台PAD大屏起始页 { path: "/process/screen/lwIndex", name: "LwProcessPadScreen", component: () => import('../views/process/screen/index/index.vue') }, // 加工台-加工台PAD大屏起始页 { path: "/process/screen/display", name: "LwProcessPadScreenDisplay", component: () => import('../views/process/screen/display/index.vue') }, /* ----- 容器管理 S ----- */ // 报修登记 - 起始页 { path: "/container/repairRegister/lwIndex", name: "lwContainerRepairRegisterIndex", component: () => import('../views/container/repairRegister/index.vue') }, // 报修登记 - 维修单信息 { path: "/container/repairRegister/lwOrderInfo", name: "lwContainerRepairRegisterOrderInfo", component: () => import('../views/container/repairRegister/orderInfo.vue') }, // 维修归还 - 起始页 { path: "/container/repairBack/lwIndex", name: "lwContainerRepairBackIndex", component: () => import('../views/container/repairBack/index.vue') }, // 维修归还 - 详情页 { path: "/container/repairBack/lwContent", name: "lwContainerRepairBackContent", component: () => import('../views/container/repairBack/content.vue') }, // 维修归还 - 执行页 { path: "/container/repairBack/lwAction", name: "lwContainerRepairBackAction", component: () => import('../views/container/repairBack/action.vue') }, // 报废登记 - 起始页 { path: "/container/scrapRecord/lwIndex", name: "lwContainerScrapRecordIndex", component: () => import('../views/container/scrapRecord/index.vue') }, // 报废登记 - 执行页 { path: "/container/scrapRecord/lwOrderInfo", name: "lwContainerScrapRecordOrderInfo", component: () => import('../views/container/scrapRecord/orderInfo.vue') }, // 租赁归还 - 起始页 { path: "/container/rentBack/lwIndex", name: "lwContainerRentBackIndex", component: () => import('../views/container/rentBack/index.vue') }, // 维修归还 - 详情页 { path: "/container/rentBack/lwContent", name: "lwContainerRentBackContent", component: () => import('../views/container/rentBack/content.vue') }, // 维修归还 - 执行页 { path: "/container/rentBack/lwAction", name: "lwContainerRentBackAction", component: () => import('../views/container/rentBack/action.vue') }, // 容器归还 { path: "/container/containerBack/lwIndex", name: "lwContainerContainerBackIndex", component: () => import('../views/container/containerBack/index.vue') }, ]