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 @@ - + +