Compare commits

...

3 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -399,7 +399,7 @@ const AutoTaskActionType = new DictionaryBase('自动化任务动作类型', [
}, },
{ {
id: 3, id: 3,
name: '数据查询', name: '单条查询',
symbol: 'QUERY_SINGLE_DATA', symbol: 'QUERY_SINGLE_DATA',
}, },
{ {

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);
}); });
}; };