From bc29ddb26f9447537bf98ef94b9e2ac9ad4f15f6 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Fri, 16 Aug 2024 09:29:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E6=93=8D=E6=8E=A73=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/SearchBox.vue | 2 +- pages.json | 26 +- pages/common/mater-list.vue | 148 ++++++++++++ pages/entry/mater-group-to-store.vue | 222 +++++------------- pages/home/home.vue | 5 +- .../change-mode.vue => mode/command.vue} | 42 +--- pages/mode/pick.vue | 92 ++++++++ pages/mode/switch-in-out.vue | 92 ++++++++ static/image/menu/RF07.png | Bin 0 -> 2668 bytes 9 files changed, 425 insertions(+), 204 deletions(-) create mode 100644 pages/common/mater-list.vue rename pages/{entry/change-mode.vue => mode/command.vue} (61%) create mode 100644 pages/mode/pick.vue create mode 100644 pages/mode/switch-in-out.vue create mode 100644 static/image/menu/RF07.png diff --git a/components/SearchBox.vue b/components/SearchBox.vue index 24deec5..71fa162 100644 --- a/components/SearchBox.vue +++ b/components/SearchBox.vue @@ -10,7 +10,7 @@ @blur="handleBlur" @confirm="handleSend"> - + diff --git a/pages.json b/pages.json index f99307d..dfbdf4d 100644 --- a/pages.json +++ b/pages.json @@ -183,6 +183,22 @@ ,{ "path" : "pages/entry/mater-group-to-store", "style" : + { + "navigationStyle": "custom" + } + + } + ,{ + "path" : "pages/mode/switch-in-out", + "style" : + { + "navigationStyle": "custom" + } + + } + ,{ + "path" : "pages/common/mater-list", + "style" : { "navigationStyle": "custom", "enablePullDownRefresh": true, @@ -191,7 +207,15 @@ } ,{ - "path" : "pages/entry/change-mode", + "path" : "pages/mode/pick", + "style" : + { + "navigationStyle": "custom" + } + + } + ,{ + "path" : "pages/mode/command", "style" : { "navigationStyle": "custom" diff --git a/pages/common/mater-list.vue b/pages/common/mater-list.vue new file mode 100644 index 0000000..14c9f5e --- /dev/null +++ b/pages/common/mater-list.vue @@ -0,0 +1,148 @@ + + + + + diff --git a/pages/entry/mater-group-to-store.vue b/pages/entry/mater-group-to-store.vue index a1e2da1..92f81c3 100644 --- a/pages/entry/mater-group-to-store.vue +++ b/pages/entry/mater-group-to-store.vue @@ -6,113 +6,89 @@ - 物料 + 物料编码 - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
物料编码物料名称物料规格单位物料单重物料批次物料数量载具编码仓库编码
{{e.material_code}}{{e.material_name}}{{e.material_spec}}{{e.unit_id}}{{e.single_weight}}{{e.pcsn}}{{e.qty}}{{e.vehicle_code}}{{e.stor_code}}
-
-
- - - - - - - - - - + + 物料名称 + + + + + + + + 物料规格 + + + + + + + + 单位 + + + + + + + 物料单重 - - + + - + 物料批次 - - + + - + 物料数量 - - + + - - + + 载具编码 - - + + - - + + 仓库编码 - - + + - - - - - - + + + + diff --git a/pages/home/home.vue b/pages/home/home.vue index 3a91786..b72e901 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -41,12 +41,13 @@ return { userName: '', menuList: [ - {title: '入库管理', path: 'RF01', sonTree: [{title: '物料组盘入库', path: '/pages/entry/mater-group-to-store'}, {title: '设备操控', path: '/pages/entry/change-mode'}, {title: '组盘入库', path: '/pages/entry/group-to-store'}, {title: '空托盘入库', path: '/pages/entry/empty-tray-to-store'}]}, + {title: '入库管理', path: 'RF01', sonTree: [{title: '物料组盘入库', path: '/pages/entry/mater-group-to-store'}, {title: '组盘入库', path: '/pages/entry/group-to-store'}, {title: '空托盘入库', path: '/pages/entry/empty-tray-to-store'}]}, {title: '出库管理', path: 'RF02', sonTree: [{title: '托盘出库', path: '/pages/outbound/tray-out-store'}, {title: '出库确认', path: '/pages/outbound/out-store-confirm'}]}, {title: '在库管理', path: 'RF03', sonTree: [{title: '库存信息', path: '/pages/in/store-info'}]}, {title: '拣选管理', path: 'RF04', sonTree: [{title: '拣选作业', path: '/pages/pick/pick-task'}]}, {title: '盘点管理', path: 'RF05', sonTree: [{title: '盘点作业', path: '/pages/check/check-task'}]}, - {title: '任务管理', path: 'RF06', sonTree: [{title: '任务管理', path: '/pages/task/task-manage'}]} + {title: '任务管理', path: 'RF06', sonTree: [{title: '任务管理', path: '/pages/task/task-manage'}]}, + {title: '设备操控', path: 'RF07', sonTree: [{title: '切换出入库模式', path: '/pages/mode/switch-in-out'}, {title: '拣选工位启停模式', path: '/pages/mode/pick'}, {title: '下发输送线运动命令', path: '/pages/mode/command'}]} ], show: false, secM: [], diff --git a/pages/entry/change-mode.vue b/pages/mode/command.vue similarity index 61% rename from pages/entry/change-mode.vue rename to pages/mode/command.vue index ef3371b..ca31d2e 100644 --- a/pages/entry/change-mode.vue +++ b/pages/mode/command.vue @@ -35,10 +35,8 @@ - - - - + + @@ -46,7 +44,7 @@ + + diff --git a/pages/mode/switch-in-out.vue b/pages/mode/switch-in-out.vue new file mode 100644 index 0000000..5c3a9c6 --- /dev/null +++ b/pages/mode/switch-in-out.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/static/image/menu/RF07.png b/static/image/menu/RF07.png new file mode 100644 index 0000000000000000000000000000000000000000..15c177a8163ce2d03f84990bc92bdb687a1dd55a GIT binary patch literal 2668 zcmaJ@c~lek77o|~f+z}MQy>XgkSz%$AqfNuBy1YQ5ClOXAsI-7EF>d~g0d7fRRM)+ zO%VeqZXnuH6j_g!BD+B-ih@=UB3n>+_-YlJShequXXl)m`@8qt@4M@n8A(X6zrL=y zE(8M64-6pFR5DV1>u9N-_>10}Dq#jvBEV2V9GJos0T6GtAQpfH@|f`e4PdgtU>spCC^QafSy zKQfR3F-yc1f?NR~ref@*7RVkm=AKL~!)~&x+;I!$y;O_aD*c1%xCP`$dMx2&8_kQ!zno}W zJHWhD3q8&{*>}A^rLWS|VyY;5s6E+y$N^oFpB$66)T68^Q(7EFlIv&2>YT8ak1E7| z)oZs69?1(!4APY!H~N0ne5Q6*Q|;0!Y^@zM4zxEQwW3PykoQ@ekv7Da?JGpdw}3a# zZOxo{WdjS(m>d&5-I4jWW~K$bSl+#V0l(1O_Fvvyx%Ru>>bwUT>_=(O>wb{ONJa-U zBNxlJo?6-B$1o{avubiY?ac~tmPL#4Q~O#uO$$;DiP0R~mp zIgL}ytnk#zt8dVbG@R9Sm5(W#l+UD9Et^{c7{q&wd&|(9W_WEot)=87q(CG5;Bm$N z7VT#X^b5Q0Zmg%@tx+I%HT()^tV9_|E3wAdrWa5^T;Y7fAyQGeXriWb>2f8TG28W04yP)alh0Pn{7Pf6z1qBBDL*;%k%pbC@zgjcrbAoj+ zJj)9+JF(}|Ez?PUF`}-*#&EbSJ5G@vV1`hv;-Mv}KS=)nyQ0i;<&x$<;dpv^GRcvJn2;orh#RK13s zjT@mRced)M6`%v7^AGCn_+_T&ot9KV>_+$?$NOvy8_AeS7w6;}z2BrMd!2ZNenOTfO$7RFGLfczK*bPTI*PPJ<-tKJkbUbJ%yI&Ug zmR0(5a%?)IxV1oJUB?j&*etoq<_Vr{?qkGYnKE|U_RzDJE3Bm_cUGA-8>EISj@+2f z%91`lJUjU0aL-`YOY<`w2*ZS>7)JYufMD;sPgpV+i zQ-V_5i^g}nUcIQ0zRP_aP}d?0M|8MhzscpS3rhOU6s*vEa?xzWuszhW*D=R3tntY0 zll0x;)pPrEEN58J$T7=?7g~>a2Ufr8cDp>6UgUjt^1BqB*X|)Jlq0Pj8c(&LRr)AJ z@OD{iztK`(_M7qotdE;dU4hx{hRxWG@gRNC-Z1H$p8TjPCav~*AbHnr!zNgpKvl6KUP#~OH58ihPPW^j!T@Rmz_DV}J?HwnivE>h9iHib;bsdNWuVQkA#prF2nXFAD27 zwe;RTP@N-*E8B59sAkj4`#q|6^1#8D-CJthd>%DhYV6;xK{Xn)4lSv-fgT?B((L@V i&j!YDxbwM}h8Bd8E_1mxPGhM5{{kt&