diff --git a/pages.json b/pages.json index fab15eb..1ebae9a 100644 --- a/pages.json +++ b/pages.json @@ -240,6 +240,13 @@ "navigationStyle": "custom" } }, + { + "path": "pages/DispatchManage/RGVStatus", + "style" : + { + "navigationStyle": "custom" + } + }, { "path": "pages/WarehouseManage/LabelBind", "style" : diff --git a/pages/DispatchManage/RGVStatus.vue b/pages/DispatchManage/RGVStatus.vue new file mode 100644 index 0000000..7263a9f --- /dev/null +++ b/pages/DispatchManage/RGVStatus.vue @@ -0,0 +1,67 @@ + + + + + + + + + + 设备编码 + X坐标 + Y坐标 + 电量 + 故障名称 + 楼层 + 木箱号 + 是否有货 + + + + + {{e.device_code}} + {{e.x}} + {{e.y}} + {{e.power}} + {{e.error_name}} + {{e.map_id}} + {{e.pallet}} + {{['无货', '有货'][Number(e.move)]}} + + + + + + + + + + + + diff --git a/pages/home/home.vue b/pages/home/home.vue index 06ba6f1..183ab45 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -39,7 +39,6 @@ export default { data() { return { - menu: [{url: '/pages/ProductManage/SboProdProgress', name: '生箔生产进度'}, {url: '/pages/ProductManage/SboProcess', name: '生箔工序'}, {url: '/pages/ProductManage/BakeProcess', name: '烘烤工序'}, {url: '/pages/ProductManage/ManmadeBake', name: '人工烘烤'}, {url: '/pages/ProductManage/PointManage', name: '点位管理'}, {url: '/pages/ProductManage/EmptyPipeInStore', name: '空管入库'}, {url: '/pages/ProductManage/EmptyPipeOutStore', name: '空管出库'}, {url: '/pages/ProductManage/ZjCasing', name: '空轴套管'}, {url: '/pages/ProductManage/ZjDelivery', name: '空轴配送'}, {url: '/pages/ProductManage/ZjInStore', name: '空轴进站'}, {url: '/pages/ProductManage/ZjOutStore', name: '子卷出站'}, {url: '/pages/WarehouseManage/SemifinishedInStore', name: '半成品入库'}, {url: '/pages/WarehouseManage/CheckList', name: '盘点管理'}, {url: '/pages/WarehouseManage/SemifinishedOutStore', name: '半成品出库'}, {url: '/pages/WarehouseManage/ReturngoodsInStore', name: '退货入库'}, {url: '/pages/WarehouseManage/ScrapInStore', name: '报废入库'}, {url: '/pages/WarehouseManage/InStoreConfirm', name: '生产入库'}, {url: '/pages/WarehouseManage/ProdDelivery', name: '生产区发货'}, {url: '/pages/WarehouseManage/XuniDelivery', name: '虚拟区发货'}, {url: '/pages/WarehouseManage/EmptyInStore', name: '空载具入库'}, {url: '/pages/WarehouseManage/EmptyOutStore', name: '空载具出库'}, {url: '/pages/WarehouseManage/CustomerLabelPrint', name: '客户标签打印'}, {url: '/pages/WarehouseManage/ErrorOutUnlock', name: '异常出库解锁'}], menuList: [], show: false, secM: [] diff --git a/utils/getData2.js b/utils/getData2.js index 6123258..fadbeff 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -78,6 +78,7 @@ export const authority = () => { ]}, {menu_id: '10', path: 'RF10', name: '调度管理', sonTree: [ {menu_id: '1', name: '任务管理', path: '/pages/DispatchManage/TaskManage'}, + {menu_id: '2', name: 'RGV状态查询', path: '/pages/DispatchManage/RGVStatus'} ]} ] } @@ -537,3 +538,12 @@ data: { product_area: area } }) + +/** + * RGV状态 + */ +// 1.1查询 +export const rgvStatusQuery = () => request({ + url:'api/pda/task/rgvStatusQuery', + data: {} +}) \ No newline at end of file