From ad86fa82778846900a5c9299fe9547259811d404 Mon Sep 17 00:00:00 2001 From: x Date: Wed, 12 Aug 2026 17:48:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=90=88=E7=9B=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 7 ++ pages/SecondPhase/finished/CheckToStore.vue | 96 +++++++++++++++++++++ pages/SecondPhase/finished/abnorToStore.vue | 18 +++- 3 files changed, 118 insertions(+), 3 deletions(-) create mode 100644 pages/SecondPhase/finished/CheckToStore.vue diff --git a/pages.json b/pages.json index 1b9ac65..01fc33c 100644 --- a/pages.json +++ b/pages.json @@ -167,6 +167,13 @@ } } + ,{ + "path" : "pages/SecondPhase/finished/CheckToStore", + "style" : + { + "navigationStyle": "custom" + } + } ,{ "path" : "pages/SecondPhase/finished/abnorToStore", "style" : diff --git a/pages/SecondPhase/finished/CheckToStore.vue b/pages/SecondPhase/finished/CheckToStore.vue new file mode 100644 index 0000000..2d27f6c --- /dev/null +++ b/pages/SecondPhase/finished/CheckToStore.vue @@ -0,0 +1,96 @@ + + + \ No newline at end of file diff --git a/pages/SecondPhase/finished/abnorToStore.vue b/pages/SecondPhase/finished/abnorToStore.vue index c3fcf80..b659bef 100644 --- a/pages/SecondPhase/finished/abnorToStore.vue +++ b/pages/SecondPhase/finished/abnorToStore.vue @@ -10,6 +10,12 @@ + + {{$t('filter.is_un_cap')}} + + + + {{$t('filter.box-no')}} @@ -38,7 +44,7 @@ - + @@ -58,6 +64,8 @@ title: '', options: [{value: '1', text: this.$t('select.return-inspection-warehousing')}, {value: '2', text: this.$t('select.recut-warehousing')}, {value: '0001', text: this.$t('select.production-warehousing')}, {value: '0009', text: this.$t('select.manual-warehousing')}], index: '', + options2: [{value: '1', text: this.$t('select.yes')}, {value: '0', text: this.$t('select.no')}], + index2: '', val1: '', val2: '', val3: '', @@ -71,8 +79,11 @@ selectChange (e) { this.index = e }, + selectChange2 (e) { + this.index2 = e + }, async handleConfirm() { - if (!this.index || !this.val1 || !this.val2 || !this.val3) { + if (!this.index || !this.index2 || !this.val1 || !this.val2 || !this.val3) { return } const isConfirmed = await confirmAction(this.$t('toast.prompt'), this.$t('toast.sure-perform-operation')) @@ -83,7 +94,7 @@ async _twoPdaReback () { this.disabled = true try { - let res = await twoPdaReback(this.index, this.val1, this.val2, this.val3) + let res = await twoPdaReback(this.index, this.index2, this.val1, this.val2, this.val3) uni.showToast({ title: res.message, icon: 'none' @@ -96,6 +107,7 @@ }, clearUp () { this.index = '' + this.index2 = '' this.val1 = '' this.val2 = '' this.val3 = ''