From ac7fee767608c84415c078b3b0a7f72d07ca9e06 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Fri, 18 Apr 2025 14:21:38 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E8=BD=AF=E5=BA=9F=E7=9B=B4=E6=8E=A5?= =?UTF-8?q?=E5=85=A5=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/getData2.js | 11 ++ src/config/mork.js | 8 ++ .../storage/instorage/SoftWasteInStore.vue | 133 ++++++++++++++++++ src/router/index.js | 5 + 4 files changed, 157 insertions(+) create mode 100644 src/pages/xinrui/storage/instorage/SoftWasteInStore.vue diff --git a/src/config/getData2.js b/src/config/getData2.js index e3f40e7..144b88e 100644 --- a/src/config/getData2.js +++ b/src/config/getData2.js @@ -589,6 +589,17 @@ export const insideInConfirm = (vcode, code) => post('api/pda/st/in/insideInConf point_code: code }) +/** + * 软废直接入库 + */ +export const directIn = (code) => post('api/pda/st/in/directIn', { + vehicle_code: code +}) +export const directInConfirm = (vcode, code) => post('api/pda/st/in/directInConfirm', { + vehicle_code: vcode, + point_code: code +}) + /** 原料粉直接出库 */ // 1.1扫描站点码 export const pfoutScanpoint = (val1, val2) => post('api/pda/st/out/pfout/scanpoint2', { diff --git a/src/config/mork.js b/src/config/mork.js index 8c29401..2370c6d 100644 --- a/src/config/mork.js +++ b/src/config/mork.js @@ -172,6 +172,14 @@ export const authority = () => { "name": "内部软废入库", "menu_id": "451", "username": "admin" + }, + { + "accountid": "1", + "path": "RFSoftWasteInStore", + "component": "2", + "name": "软废直接入库", + "menu_id": "451", + "username": "admin" } ], "menu_id": "213", diff --git a/src/pages/xinrui/storage/instorage/SoftWasteInStore.vue b/src/pages/xinrui/storage/instorage/SoftWasteInStore.vue new file mode 100644 index 0000000..230383d --- /dev/null +++ b/src/pages/xinrui/storage/instorage/SoftWasteInStore.vue @@ -0,0 +1,133 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 35ae3ab..4c99bb2 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -30,6 +30,7 @@ const SearchPallet = r => require.ensure([], () => r(require('../pages/xinrui/st const SearchSoftWasteBill = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SearchSoftWasteBill')), 'instorage') const RemnantInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/RemnantInStoreGroup')), 'instorage') const InsideSoftWasteInStore = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/InsideSoftWasteInStore')), 'instorage') +const SoftWasteInStore = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SoftWasteInStore')), 'instorage') // 出库 const ReturnScanBarrelOutStore = r => require.ensure([], () => r(require('../pages/xinrui/storage/outstorage/ReturnScanBarrelOutStore')), 'outstorage') const OtherScanBarrelOutStore = r => require.ensure([], () => r(require('../pages/xinrui/storage/outstorage/OtherScanBarrelOutStore')), 'outstorage') @@ -554,6 +555,10 @@ export default new Router({ path: '/InsideSoftWasteInStore', // 内部软废入库 component: InsideSoftWasteInStore }, + { + path: '/SoftWasteInStore', // 软废直接入库 + component: SoftWasteInStore + }, { path: '/PowderMaterMoveStore', // 粉料移库 component: PowderMaterMoveStore