From 173edfae9dadc819465f1889703dee9de053ebf6 Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Wed, 25 Dec 2024 15:08:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E7=BB=99=E5=93=81=E5=A4=9A=E6=AC=A1?= =?UTF-8?q?=E6=94=B6=E8=B4=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mycomponents/balance/productionline.vue | 46 +++++++++++++++++++ src/mycomponents/balance/shift.vue | 44 ++++++++++++++++++ src/mycomponents/job/jobComMainDetailCard.vue | 19 +++++++- .../productReceipt/coms/comProductJobCard.vue | 10 +++- .../job/productReceiptDetail.vue | 33 +++++++------ .../productReceipt/job/productReceiptJob.vue | 40 ++++++++++------ 6 files changed, 162 insertions(+), 30 deletions(-) create mode 100644 src/mycomponents/balance/productionline.vue create mode 100644 src/mycomponents/balance/shift.vue diff --git a/src/mycomponents/balance/productionline.vue b/src/mycomponents/balance/productionline.vue new file mode 100644 index 00000000..de155d5c --- /dev/null +++ b/src/mycomponents/balance/productionline.vue @@ -0,0 +1,46 @@ + + + + + + + diff --git a/src/mycomponents/balance/shift.vue b/src/mycomponents/balance/shift.vue new file mode 100644 index 00000000..af509ce9 --- /dev/null +++ b/src/mycomponents/balance/shift.vue @@ -0,0 +1,44 @@ + + + + + \ No newline at end of file diff --git a/src/mycomponents/job/jobComMainDetailCard.vue b/src/mycomponents/job/jobComMainDetailCard.vue index be5e64e9..3800c676 100644 --- a/src/mycomponents/job/jobComMainDetailCard.vue +++ b/src/mycomponents/job/jobComMainDetailCard.vue @@ -10,6 +10,9 @@
+ + @@ -35,6 +38,8 @@ import batch from '@/mycomponents/balance/batch.vue' import intoDeliNo from '@/mycomponents/balance/intoDeliNo.vue' import goodsShelves from '@/mycomponents/balance/goodsShelves.vue' + import productionline from '@/mycomponents/balance/productionline.vue' + import shift from '@/mycomponents/balance/shift.vue' import itemCompareQty from '@/mycomponents/item/itemCompareQty.vue' import level from '@/mycomponents/balance/level.vue' @@ -47,7 +52,9 @@ intoDeliNo, itemCompareQty, level, - goodsShelves + goodsShelves, + productionline, + shift }, data() { return {}; @@ -97,7 +104,15 @@ isShowGoodsShelves:{ type:Boolean, default:false - } + }, + isShowProductionline:{ + type:Boolean, + default:false + }, + isShowShift:{ + type:Boolean, + default:false + }, }, diff --git a/src/pages/productReceipt/coms/comProductJobCard.vue b/src/pages/productReceipt/coms/comProductJobCard.vue index 594a2bfd..1cee6fde 100644 --- a/src/pages/productReceipt/coms/comProductJobCard.vue +++ b/src/pages/productReceipt/coms/comProductJobCard.vue @@ -1,7 +1,7 @@