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(); }