From 7cfa9ba78e2bcf6f3a4c3c26bcba2bf3caa18d95 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Mon, 1 Jul 2024 14:34:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9B=98=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 12 +- src/pages/count/coms/comCountDetailcards.vue | 139 ++++ src/pages/count/job/countBlindDetail.vue | 647 ++++++++++++++++++ src/pages/count/job/countDetail1.vue | 657 +++++++++++++++++++ src/pages/count/job/countJob.vue | 14 +- src/pages/count/job/countLightDetail.vue | 656 ++++++++++++++++++ 6 files changed, 2120 insertions(+), 5 deletions(-) create mode 100644 src/pages/count/coms/comCountDetailcards.vue create mode 100644 src/pages/count/job/countBlindDetail.vue create mode 100644 src/pages/count/job/countDetail1.vue create mode 100644 src/pages/count/job/countLightDetail.vue diff --git a/src/pages.json b/src/pages.json index 39cfa49e..71de65d0 100644 --- a/src/pages.json +++ b/src/pages.json @@ -1789,13 +1789,21 @@ } }, { - "path": "pages/count/job/countDetail", + "path": "pages/count/job/countBlindDetail", "style": { - "navigationBarTitleText": "盘点详细", + "navigationBarTitleText": "盘点详细(盲盘)", "enablePullDownRefresh": false } }, + { + "path": "pages/count/job/countLightDetail", + "style": { + "navigationBarTitleText": "盘点详细(明盘)", + "enablePullDownRefresh": false + + } + }, { "path": "pages/count/record/countRecord", "style": { diff --git a/src/pages/count/coms/comCountDetailcards.vue b/src/pages/count/coms/comCountDetailcards.vue new file mode 100644 index 00000000..7d2fdafb --- /dev/null +++ b/src/pages/count/coms/comCountDetailcards.vue @@ -0,0 +1,139 @@ + + + + + \ No newline at end of file diff --git a/src/pages/count/job/countBlindDetail.vue b/src/pages/count/job/countBlindDetail.vue new file mode 100644 index 00000000..5e059e0b --- /dev/null +++ b/src/pages/count/job/countBlindDetail.vue @@ -0,0 +1,647 @@ + + + + + \ No newline at end of file diff --git a/src/pages/count/job/countDetail1.vue b/src/pages/count/job/countDetail1.vue new file mode 100644 index 00000000..ce60eb4e --- /dev/null +++ b/src/pages/count/job/countDetail1.vue @@ -0,0 +1,657 @@ + + + + + \ No newline at end of file diff --git a/src/pages/count/job/countJob.vue b/src/pages/count/job/countJob.vue index a179dc03..62729e03 100644 --- a/src/pages/count/job/countJob.vue +++ b/src/pages/count/job/countJob.vue @@ -193,9 +193,17 @@ }, openJobDetail(item) { - uni.navigateTo({ - url: './countDetail?id=' + item.id + '&status=' + item.status - }); + //明盘 + if(item.isOpenCount=="TRUE"){ + uni.navigateTo({ + url: './countLightDetail?id=' + item.id + '&status=' + item.status + }); + }else { + //盲盘 + uni.navigateTo({ + url: './countBlindDetail?id=' + item.id + '&status=' + item.status + }); + } }, showItemList(itemList) { diff --git a/src/pages/count/job/countLightDetail.vue b/src/pages/count/job/countLightDetail.vue new file mode 100644 index 00000000..5bb64a94 --- /dev/null +++ b/src/pages/count/job/countLightDetail.vue @@ -0,0 +1,656 @@ + + + + + \ No newline at end of file