From d718bfc60d8115b7860470b05c4d290d7eee7f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Mon, 10 Jul 2023 16:53:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8D=95=E6=8D=AE=E9=80=89?= =?UTF-8?q?=E5=85=A5=E5=A4=9A=E4=B8=AA=E4=BA=A7=E5=93=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrder.vue | 2 ++ src/views/inout/DialogSelectRl.vue | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index 4398824f..cb6cd368 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -1096,6 +1096,8 @@ export default { //判断是出库需要选择供应商的时候把供应商值传过去 if(tQuery.selectSupId!=null){ this.codeFormData.selectSupId=tQuery.selectSupId + }else{ + this.codeFormData.selectSupId=false } //DI绑定多个产品,请指定对应产品 时候传递关键字做过滤 this.codeFormData.key ="key"; diff --git a/src/views/inout/DialogSelectRl.vue b/src/views/inout/DialogSelectRl.vue index 2236d2bb..5200ac05 100644 --- a/src/views/inout/DialogSelectRl.vue +++ b/src/views/inout/DialogSelectRl.vue @@ -862,7 +862,11 @@ export default { , created() { if(this.curRow.selectSupId!=null){ - this.fromCorp=this.curRow.selectSupId + if(this.curRow.selectSupId!=false){ + this.fromCorp=this.curRow.selectSupId + }else{ + this.fromCorp='' + } } this.getList(); }