From d54b054d03a5f5ad700761984556da9025cefec7 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Wed, 26 Jun 2024 10:12:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E7=9B=98=E8=A7=A3=E7=BB=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/getData2.js | 8 +++ src/images/xinrui/menu/FR14.png | Bin 0 -> 1572 bytes src/pages/login/Home.vue | 3 +- src/pages/proj/GroupUnbind.vue | 95 ++++++++++++++++++++++++++++++++ src/router/index.js | 5 ++ 5 files changed, 110 insertions(+), 1 deletion(-) create mode 100644 src/images/xinrui/menu/FR14.png create mode 100644 src/pages/proj/GroupUnbind.vue diff --git a/src/config/getData2.js b/src/config/getData2.js index cb84892..d216c9a 100644 --- a/src/config/getData2.js +++ b/src/config/getData2.js @@ -206,3 +206,11 @@ export const pdaToGroup = (code, vcode, qty, weight, is) => post('api/pda/pdaToG weight: weight, is_full: is }) + +/** + * 组盘解绑 + */ +export const pdaToUntie = (vcode, type) => post('api/pda/pdaToUntie', { + vehicle_code: vcode, + vehicle_type: type +}) diff --git a/src/images/xinrui/menu/FR14.png b/src/images/xinrui/menu/FR14.png new file mode 100644 index 0000000000000000000000000000000000000000..f3a0a2005906165a95e2661958f360ccaeaeb56a GIT binary patch literal 1572 zcmV+<2HW|GP)c%z6i(!4=MSz2M28BMg(m-3;45Ffgb4+TDzjHA_CQcp>e5|LDN zBXW+Yla3SymQn_DDK*W8U=nZTsADtJ!?$EijcL?CxCfK`0&K81HK04 z11AI8v;&PPY}5l^AtK{GcP7x1+S?4V@iIJ#h`XcY+6>?h1JABUejy{=^FH8dawam^ zOYgdoaIqaYkGvFjM7D@$Ho+oqEc3aUU~~4a8(09`3G6cPyyvJAk-`3er3W)211tr; zaF3UfW04`B^U+D^L9&Z_U|WTKiKW_y;Js9V$WZ-4R}Ga29kswjU>a~a@IlJRM$|DyCo%-y@1EBHbAe}(iKJ>++YAjG z5d8&uk<8;3qwWmkC?e|ql4~C$dq1j$J|uGrC2q~oMx0*9z*O>(1-mBMO~b%ZVkvnL zdO2{r@7f*E?yC#W@&k!%Pt1TsmE(7jGGLwgp?Y?>1_!Ap8AX$FeN;;vt5CPlWPfys`N%IiSBB|4M;ALPm zvftVhe&QgXYl=i$(vk?>h71}?=|@s9PtaD1!X8WP;@~)j49C48`Hd7suLs6vY`>IF z8k!O%3`vCk7Ptu!(G#|V{KU>fz`Jg#0dA!z{C#A%O#)JEuuLNKCbv`reZY@yc>}nV z3*-9?%*OXb@fpKL^T;`5@5U?0ABe^Rk0JY3_D8f!iqRf@F>xGOt?^cDCLq1tD{12U zK2|n$C9OQvg!Xe7Snn2xVtk(qJV11OPqhL5Vh9bCEy>p zMb1C_8R|VcoYjRMWC^VWSV7~%p73*l`+;vN=9{7@ilQirq9}@@D2k#eilQjWkl;U$ Wgedho9q91@0000 +
+ +
+
+ +
+
压机下料位
+
+ + +
+
+
+
+
+ + +
+
+ + + diff --git a/src/router/index.js b/src/router/index.js index 43953f5..c43b268 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -22,6 +22,7 @@ const ManualUnstack = r => require.ensure([], () => r(require('../pages/proj/Man const PointManage = r => require.ensure([], () => r(require('../pages/proj/PointManage')), 'PointManage') const CallCarry = r => require.ensure([], () => r(require('../pages/proj/CallCarry')), 'CallCarry') const ManualGroup = r => require.ensure([], () => r(require('../pages/proj/ManualGroup')), 'ManualGroup') +const GroupUnbind = r => require.ensure([], () => r(require('../pages/proj/GroupUnbind')), 'GroupUnbind') Vue.use(Router) @@ -117,6 +118,10 @@ export default new Router({ { path: '/ManualGroup', // 人工组盘 component: ManualGroup + }, + { + path: '/GroupUnbind', // 组盘解绑 + component: GroupUnbind } ], scrollBehavior (to, from, savedPosition) {