From 45fb0440dce8988eb07475ad2cbe065c792bc7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Thu, 10 Aug 2023 10:40:54 +0800 Subject: [PATCH] =?UTF-8?q?job=E6=89=80=E6=9C=89=E6=96=B0=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=9A=82=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/commonTabel-drawer/index.vue | 2 + PC/UI.WinIn.FasterZ.Job/public/config.js | 7 +- .../components/commonTabel-drawer/index.vue | 2 + .../src/utils/baseData/urlOption.js | 110 ++++++++++++++++++ .../src/views/menuList/CheckJob.vue | 9 -- .../{demo_read.vue => CheckJobDetail.vue} | 3 +- .../src/views/menuList/CountJob.vue | 104 +++++++++++++++++ .../src/views/menuList/CountJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/DeliverJob.vue | 104 +++++++++++++++++ .../src/views/menuList/DeliverJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/InspectJob.vue | 104 +++++++++++++++++ .../src/views/menuList/InspectJobDetail.vue | 100 ++++++++++++++++ .../menuList/InspectJobSummaryDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/IssueJob.vue | 9 -- .../src/views/menuList/IssueJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/JisDeliverJob.vue | 104 +++++++++++++++++ .../views/menuList/JisDeliverJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/ProductReceiveJob.vue | 104 +++++++++++++++++ .../menuList/ProductReceiveJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/PurchaseReceiptJob.vue | 104 +++++++++++++++++ .../menuList/PurchaseReceiptJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/PurchaseReturnJob.vue | 104 +++++++++++++++++ .../menuList/PurchaseReturnJobDetail.vue | 100 ++++++++++++++++ .../src/views/menuList/PutawayJob.vue | 104 +++++++++++++++++ .../src/views/menuList/PutawayJobDetail.vue | 100 ++++++++++++++++ .../components/commonTabel-drawer/index.vue | 2 + 26 files changed, 1955 insertions(+), 21 deletions(-) rename PC/UI.WinIn.FasterZ.Job/src/views/menuList/{demo_read.vue => CheckJobDetail.vue} (97%) create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/CountJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/CountJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobSummaryDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/IssueJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJobDetail.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJob.vue create mode 100644 PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJobDetail.vue diff --git a/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue b/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue index 0297b03..933e44a 100644 --- a/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue +++ b/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue @@ -140,6 +140,8 @@ :title="detailInfoTitle" :visible.sync="displayDialog.detailInfoDialog" :show-close="true" + :close-on-click-modal="true" + :close-on-press-escape="true" >
-
- +
+ + + + + + +
+ + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/CountJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/CountJobDetail.vue new file mode 100644 index 0000000..cfcd97d --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/CountJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJob.vue new file mode 100644 index 0000000..85ed760 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJobDetail.vue new file mode 100644 index 0000000..44471a4 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/DeliverJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJob.vue new file mode 100644 index 0000000..7f05c4d --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobDetail.vue new file mode 100644 index 0000000..3fcf232 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobSummaryDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobSummaryDetail.vue new file mode 100644 index 0000000..c70d1c9 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/InspectJobSummaryDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/IssueJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/IssueJob.vue index 894ca7a..b7a2a1e 100644 --- a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/IssueJob.vue +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/IssueJob.vue @@ -1,6 +1,5 @@ + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJob.vue new file mode 100644 index 0000000..f51fed0 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJobDetail.vue new file mode 100644 index 0000000..0d824c0 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/JisDeliverJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJob.vue new file mode 100644 index 0000000..077b44d --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJobDetail.vue new file mode 100644 index 0000000..a1a4f68 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/ProductReceiveJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJob.vue new file mode 100644 index 0000000..60c91dd --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJobDetail.vue new file mode 100644 index 0000000..0ce4388 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReceiptJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJob.vue new file mode 100644 index 0000000..3f6a3ed --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJobDetail.vue new file mode 100644 index 0000000..db1f0e1 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PurchaseReturnJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJob.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJob.vue new file mode 100644 index 0000000..eae39ec --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJob.vue @@ -0,0 +1,104 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJobDetail.vue b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJobDetail.vue new file mode 100644 index 0000000..846f421 --- /dev/null +++ b/PC/UI.WinIn.FasterZ.Job/src/views/menuList/PutawayJobDetail.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/PC/UI.WinIn.FasterZ.Store/src/components/commonTabel-drawer/index.vue b/PC/UI.WinIn.FasterZ.Store/src/components/commonTabel-drawer/index.vue index 79582eb..6e473ef 100644 --- a/PC/UI.WinIn.FasterZ.Store/src/components/commonTabel-drawer/index.vue +++ b/PC/UI.WinIn.FasterZ.Store/src/components/commonTabel-drawer/index.vue @@ -140,6 +140,8 @@ :title="detailInfoTitle" :visible.sync="displayDialog.detailInfoDialog" :show-close="true" + :close-on-click-modal="true" + :close-on-press-escape="true" >