Browse Source

修复联动填充设置bug

lwx_v27
liwenxuan 2 weeks ago
parent
commit
42daba4fff
  1. 11
      src/components/DesignForm/formControlPropertiNew.vue

11
src/components/DesignForm/formControlPropertiNew.vue

@ -4137,8 +4137,13 @@ const expandUserComponentsTree = computed(()=>{
const treeSelectRef = ref();
const handleTreeSelectChange = (value) => {
// value propsid
console.log(value)
if(undefined == value){
controlData.value.control.connectUserComponent = ""
controlData.value.control.showConnectUserComponent = ""
}else{
// value propsid
//console.log(':', value);
// TreeSelectgetNode
@ -4151,6 +4156,8 @@ const handleTreeSelectChange = (value) => {
//
}
}
}
};

Loading…
Cancel
Save