style: 优化按钮样式

This commit is contained in:
xlsea
2025-05-10 10:45:30 +08:00
parent cc34f546c6
commit 5b0ae4443c
12 changed files with 80 additions and 40 deletions

View File

@ -32,15 +32,15 @@ declare namespace CommonType {
/** The res error code */
type ErrorCode = '401' | '403' | '404' | 'default';
/** 构造树型结构数据的配置选项 */
/** The configuration options for constructing tree structure data */
type TreeConfig = {
/** id字段名 */
/** id field name */
idField: string;
/** 父节点字段名 */
/** parent id field name */
parentIdField?: string;
/** 子节点字段名 */
/** children field name */
childrenField?: string;
/** 过滤函数 */
/** filter function */
filterFn?: (node: any) => boolean;
};
}