From 53cb5e338c552a9ca4fb6e46d014d920f24de4bc Mon Sep 17 00:00:00 2001 From: wangsiyang <524156191@qq.com> Date: Mon, 15 Sep 2025 10:43:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/bottomBtn/bottomBtn.vue | 6 +++--- pages/work/wms/emptyPalletOut.vue | 2 +- pages/work/wms/surplusReturn.vue | 4 +++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/components/bottomBtn/bottomBtn.vue b/components/bottomBtn/bottomBtn.vue index fa63fc9..de44d1b 100644 --- a/components/bottomBtn/bottomBtn.vue +++ b/components/bottomBtn/bottomBtn.vue @@ -71,15 +71,15 @@ // 方法 methods: { onSubmit() { - if (props.disable) return + if (this.disable) return this.$emit('onSubmit'); }, onCancel() { - if (props.disable) return + if (this.disable) return this.$emit('onCancel'); }, onCheck() { - if (props.disable) return + if (this.disable) return this.$emit('onCheck'); } } diff --git a/pages/work/wms/emptyPalletOut.vue b/pages/work/wms/emptyPalletOut.vue index 5a84d28..9caa91d 100644 --- a/pages/work/wms/emptyPalletOut.vue +++ b/pages/work/wms/emptyPalletOut.vue @@ -37,7 +37,7 @@ + :texts="['呼叫出库']" @onSubmit="submitPallet"> diff --git a/pages/work/wms/surplusReturn.vue b/pages/work/wms/surplusReturn.vue index 27f6a71..9eb1a14 100644 --- a/pages/work/wms/surplusReturn.vue +++ b/pages/work/wms/surplusReturn.vue @@ -19,8 +19,10 @@ - + +