1、工单处理
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-09 18:12:28 +08:00
parent 43b1af937b
commit f93b6d356b
6 changed files with 214 additions and 56 deletions

View File

@@ -152,14 +152,15 @@ async function queryUnitData() {
formApi.updateSchema([{
componentProps: () => ({
options: options,
filterOption: filterOption
filterOption: filterOption,
showSearch:true,
}),
fieldName: 'unit',
}])
}
const filterOption = (input: string, option: any) => {
return option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0;
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
};
async function changeProjectNum() {