diff --git a/src/views/basic/product/bindHospProduct.vue b/src/views/basic/product/bindHospProduct.vue index 23d65291..c2357596 100644 --- a/src/views/basic/product/bindHospProduct.vue +++ b/src/views/basic/product/bindHospProduct.vue @@ -222,7 +222,7 @@ export default { }, created() { - this.filterQuery.bindId=this.rId + this.filterQuery.bindType=1 this.getList(); }, diff --git a/src/views/basic/product/product.vue b/src/views/basic/product/product.vue index f49b27b1..91ddd32e 100644 --- a/src/views/basic/product/product.vue +++ b/src/views/basic/product/product.vue @@ -1742,27 +1742,27 @@ export default { addHospProduct(data) { this.rId = data.code if(data.code!=10000){ - this.filterQuery.bindCode = data.code + this.filterQuery.relCode = data.code }else{ - this.filterQuery.bindCode = null; + this.filterQuery.relCode = null; } this.selectHospProductVisible = true; }, removeHospProduct(data){ this.rId = data.code if(data.code!=10000){ - this.filterQuery.bindCode = data.code + this.filterQuery.relCode = data.code }else{ - this.filterQuery.bindCode = null; + this.filterQuery.relCode = null; } this.selectUnBindHospProductVisible = true; }, handleNodeClick(data) { this.rId = data.code if(data.code!=10000){ - this.filterQuery.bindCode = data.code + this.filterQuery.relCode = data.code }else{ - this.filterQuery.bindCode = null; + this.filterQuery.relCode = null; } this.getList(); } diff --git a/src/views/basic/product/unbindHospProduct.vue b/src/views/basic/product/unbindHospProduct.vue index 142bd27a..a3ae165f 100644 --- a/src/views/basic/product/unbindHospProduct.vue +++ b/src/views/basic/product/unbindHospProduct.vue @@ -214,7 +214,7 @@ export default { }, created() { - this.filterQuery.bindCode=this.rId + this.filterQuery.relCode=this.rId this.getList(); }, };