From 7b8789643b13dba1f2190f3bde92a7e4fa8eaafc Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 20 Jan 2026 15:24:59 +0800
Subject: [PATCH] feat:场景类型字典值显示调整

---
 packages/utils/common/index.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/packages/utils/common/index.js b/packages/utils/common/index.js
index 9d00919..f2dafc9 100644
--- a/packages/utils/common/index.js
+++ b/packages/utils/common/index.js
@@ -14,7 +14,7 @@
 
 
 export function getDictLabel(value, dictList) {
-	return dictList.find(item => item.dictKey === value)?.dictValue || value || '-'
+	return dictList.find(item => item.dictKey === String(value))?.dictValue || value || ''
 }
 
 export function blobDownload(res) {

--
Gitblit v1.9.3