Browse Source

修复联动填充设置bug

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

7
src/components/DesignForm/formControlPropertiNew.vue

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

Loading…
Cancel
Save