From c8fdd3362fccbbd797b7218ce5f286440cc56cb4 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Tue, 12 Dec 2023 15:42:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=A9=BA=E7=89=A9=E6=96=99=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/modules/clean-matter-info.vue | 66 ++++++++++++++++++++++++++--- utils/getData1.js | 26 ++++++++++++ 2 files changed, 87 insertions(+), 5 deletions(-) create mode 100644 utils/getData1.js diff --git a/pages/modules/clean-matter-info.vue b/pages/modules/clean-matter-info.vue index 239d03a..4e83b41 100644 --- a/pages/modules/clean-matter-info.vue +++ b/pages/modules/clean-matter-info.vue @@ -1,19 +1,75 @@ - diff --git a/utils/getData1.js b/utils/getData1.js new file mode 100644 index 0000000..8d69685 --- /dev/null +++ b/utils/getData1.js @@ -0,0 +1,26 @@ +import request from './request.js' + + +// 菜单 +export const authority = () => { + let res = { + sonTree: [ + {menu_id: '1', imgsrc: 'RF01', name: '涂板线下料', path: '/pages/modules/unloading-mater'}, + {menu_id: '2', imgsrc: 'RF02', name: '清空物料信息', path: '/pages/modules/clean-matter-info'}, + {menu_id: '3', imgsrc: 'RF03', name: '包片机叫料', path: '/pages/modules/call-mater'} + ] + } + return res +} + + +/** + * 包片机上料 + */ +// 1.1出库确认 +export const cleanVehicle = (code) => request({ + url:'api/pda/cleanVehicle', + data: { + vehicle_code: code + } +})