Add combo input into parameter

This commit is contained in:
2022-04-08 21:46:33 +08:00
parent cb2501f1f0
commit 3026c463bd
10 changed files with 181 additions and 218 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ interface IParameterOptionItem<T extends IParamType = IParamType> {
/**
* 全部选项
*/
allOption?: string[];
allOption?: Array<{key: string, name: string}>;
}
interface IParameter {