From 46f4647180b593a42ec0567e4328bdca2f3e0583 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Tue, 20 Jan 2026 16:56:09 +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 f2dafc9..5df2ca1 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 === String(value))?.dictValue || value || ''
+ return dictList.filter(item => value.includes(item.dictKey)).map(item => item.dictValue).join(',')
}
export function blobDownload(res) {
--
Gitblit v1.9.3