diff --git a/src/pages.json b/src/pages.json index e4b2dedc..da3c9cbf 100644 --- a/src/pages.json +++ b/src/pages.json @@ -1795,9 +1795,17 @@ } }, { - "path": "pages/count/job/countDetail", + "path": "pages/count/job/countBlindDetail", "style": { - "navigationBarTitleText": "盘点详细", + "navigationBarTitleText": "盘点详细(盲盘)", + "enablePullDownRefresh": false + + } + }, + { + "path": "pages/count/job/countLightDetail", + "style": { + "navigationBarTitleText": "盘点详细(明盘)", "enablePullDownRefresh": false } diff --git a/src/pages/count/coms/comCountDetailcards.vue b/src/pages/count/coms/comCountDetailcards.vue new file mode 100644 index 00000000..c06cd121 --- /dev/null +++ b/src/pages/count/coms/comCountDetailcards.vue @@ -0,0 +1,91 @@ + + + + + diff --git a/src/pages/count/job/countBlindDetail.vue b/src/pages/count/job/countBlindDetail.vue new file mode 100644 index 00000000..e51218f5 --- /dev/null +++ b/src/pages/count/job/countBlindDetail.vue @@ -0,0 +1,581 @@ + + + + + diff --git a/src/pages/count/job/countDetail1.vue b/src/pages/count/job/countDetail1.vue new file mode 100644 index 00000000..804e82c5 --- /dev/null +++ b/src/pages/count/job/countDetail1.vue @@ -0,0 +1,588 @@ + + + + + diff --git a/src/pages/count/job/countJob.vue b/src/pages/count/job/countJob.vue index 82e7cdf1..3e63ca9f 100644 --- a/src/pages/count/job/countJob.vue +++ b/src/pages/count/job/countJob.vue @@ -165,7 +165,17 @@ const getList = (type) => { }) } const openJobDetail = (item) => { - proxy.$tab.navigateTo(`./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}` + }) + } } const selectedItem = (item) => { openJobDetail(item) diff --git a/src/pages/count/job/countLightDetail.vue b/src/pages/count/job/countLightDetail.vue new file mode 100644 index 00000000..1dd5dbe4 --- /dev/null +++ b/src/pages/count/job/countLightDetail.vue @@ -0,0 +1,589 @@ + + + + +