指标列表

This commit is contained in:
仲么了
2024-01-15 16:15:24 +08:00
parent 646af778e9
commit 0feebcd5ba
12 changed files with 505 additions and 127 deletions

9
types/global.d.ts vendored
View File

@@ -13,6 +13,15 @@ interface anyObj {
[key: string]: any
}
interface treeData {
id?: string
value?: string
name?: string
label?: string
children: treeData[]
[key: string]: any
}
interface TableDefaultData<T = any> {
list: T
remark: string