8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
/**字段类型 */
|
|
type DictType = {
|
|
label: string;
|
|
value: string;
|
|
tagType?: string;
|
|
tagClass?: string;
|
|
};
|