From 9eb8bb59b802ceef1f52d334c8e577f2bf02c90e Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Wed, 21 Jan 2026 15:12:02 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
packages/utils/common/index.js | 26 ++++++++++++++++++++++++--
1 files changed, 24 insertions(+), 2 deletions(-)
diff --git a/packages/utils/common/index.js b/packages/utils/common/index.js
index 0c1f904..2b1ff27 100644
--- a/packages/utils/common/index.js
+++ b/packages/utils/common/index.js
@@ -1,3 +1,13 @@
+/*
+ * @Author : yuan
+ * @Date : 2026-01-20 17:01:20
+ * @LastEditors : yuan
+ * @LastEditTime : 2026-01-20 17:20:21
+ * @FilePath : \packages\utils\common\index.js
+ * @Description :
+ * Copyright 2026 OBKoro1, All Rights Reserved.
+ * 2026-01-20 17:01:20
+ */
export function fieldRules(required,max) {
// export function fieldRules({ required = true, isSelect = false, max = 50,type = 'string' }) {
const trigger = ['blur', 'change']
@@ -13,8 +23,8 @@
}
-export function getDictLabel(value, dictList) {
- return dictList.find(item => item.dictKey === value)?.dictValue || value || '-'
+export function getDictLabel(value, dictList = []) {
+ return dictList.filter(item => String(value).includes(String(item.dictKey))).map(item => item.dictValue).join(',')
}
export function blobDownload(res) {
@@ -30,3 +40,15 @@
elink.click()
document.body.removeChild(elink)
}
+
+export function geomAnalysis(str) {
+ if (!str) return []
+ return str
+ .replace('POLYGON((', '')
+ .replace('))', '')
+ .split(',')
+ .map(pair => {
+ const [longitude, latitude] = pair.trim().split(' ').map(Number)
+ return { longitude, latitude }
+ })
+}
--
Gitblit v1.9.3