From d64baafcb465bc52f4b049b857e4a26f73b0d9af Mon Sep 17 00:00:00 2001
From: schangxiang@126.com <schangxiang@126.com>
Date: 周日, 04 5月 2025 08:47:39 +0800
Subject: [PATCH] 枚举类型必须是int类型
---
HIAWms/web/src/widgets/hook.ts | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/HIAWms/web/src/widgets/hook.ts b/HIAWms/web/src/widgets/hook.ts
new file mode 100644
index 0000000..91060c0
--- /dev/null
+++ b/HIAWms/web/src/widgets/hook.ts
@@ -0,0 +1,17 @@
+export const getEntityNames = (
+ widgetsModules: Record<
+ string,
+ {
+ default: Record<string, any>
+ name: string
+ }
+ >
+) => {
+ const entityNames: string[] = []
+ Object.entries(widgetsModules).forEach(([path, fileInfo]) => {
+ if (fileInfo.default) {
+ entityNames.push(fileInfo.default?.name || fileInfo.name)
+ }
+ })
+ return entityNames
+}
--
Gitblit v1.9.3