commit:修复左树右表查询组件,左侧树点击的时候查询条件不起作用的问题

This commit is contained in:
Jerry
2024-10-28 09:34:50 +08:00
parent ad689610fe
commit 8342aa1de1

View File

@@ -784,9 +784,9 @@ const operationDisabled = (type: string) => {
return checkOperationDisabled(operation) || !checkOperationPermCode(operation); return checkOperationDisabled(operation) || !checkOperationPermCode(operation);
}; };
const onLeftWidgetChange = (val: ANY_OBJECT | undefined, dictData: ANY_OBJECT | null) => { const onLeftWidgetChange = (val: ANY_OBJECT | undefined, dictData: ANY_OBJECT | null) => {
onValueChange(leftWidget.value, val);
onWidgetValueChange(leftWidget.value, val, dictData); onWidgetValueChange(leftWidget.value, val, dictData);
nextTick(() => { nextTick(() => {
console.log('onLeftWidgetChange', val, formData.dsTeacher.level);
refreshTable(true); refreshTable(true);
}); });
}; };