refactor: ♻️ 字典缓存加载方式修改为按需加载,添加字典实时更新通知

This commit is contained in:
ray
2025-04-27 18:30:24 +08:00
parent 6a245e9d26
commit 7a04eea075
10 changed files with 606 additions and 10043 deletions

View File

@@ -292,11 +292,14 @@ export interface DictItemForm {
*/
export interface DictItemOption {
/** 字典数据值 */
value: string;
value: string | number;
/** 字典数据标签 */
label: string;
/** 标签类型 */
tagType: string;
tagType?: "" | "success" | "info" | "warning" | "danger" | "primary";
/** 允许其他属性 */
[key: string]: any;
}