修改院内分类功能代码

prod
郑明梁 2 years ago
parent 4de861a0f2
commit 8a3c844d99

@ -222,7 +222,7 @@ export default {
}, },
created() { created() {
this.filterQuery.bindId=this.rId this.filterQuery.bindType=1
this.getList(); this.getList();
}, },

@ -1742,27 +1742,27 @@ export default {
addHospProduct(data) { addHospProduct(data) {
this.rId = data.code this.rId = data.code
if(data.code!=10000){ if(data.code!=10000){
this.filterQuery.bindCode = data.code this.filterQuery.relCode = data.code
}else{ }else{
this.filterQuery.bindCode = null; this.filterQuery.relCode = null;
} }
this.selectHospProductVisible = true; this.selectHospProductVisible = true;
}, },
removeHospProduct(data){ removeHospProduct(data){
this.rId = data.code this.rId = data.code
if(data.code!=10000){ if(data.code!=10000){
this.filterQuery.bindCode = data.code this.filterQuery.relCode = data.code
}else{ }else{
this.filterQuery.bindCode = null; this.filterQuery.relCode = null;
} }
this.selectUnBindHospProductVisible = true; this.selectUnBindHospProductVisible = true;
}, },
handleNodeClick(data) { handleNodeClick(data) {
this.rId = data.code this.rId = data.code
if(data.code!=10000){ if(data.code!=10000){
this.filterQuery.bindCode = data.code this.filterQuery.relCode = data.code
}else{ }else{
this.filterQuery.bindCode = null; this.filterQuery.relCode = null;
} }
this.getList(); this.getList();
} }

@ -214,7 +214,7 @@ export default {
}, },
created() { created() {
this.filterQuery.bindCode=this.rId this.filterQuery.relCode=this.rId
this.getList(); this.getList();
}, },
}; };

Loading…
Cancel
Save