From e54c2b3e7adcdee1e90a032be438b6acfe044094 Mon Sep 17 00:00:00 2001 From: puhui999 Date: Wed, 11 Feb 2026 17:37:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=8C=E6=88=90=20review=20c153ff93?= =?UTF-8?q?=20=E7=9A=84=E6=89=80=E6=9C=89=20TODO=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/constants.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 91e182721..2375098ae 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -463,3 +463,13 @@ export const BpmAutoApproveType = { APPROVE_ALL: 1, // 仅审批一次,后续重复的审批节点均自动通过 APPROVE_SEQUENT: 2 // 仅针对连续审批的节点自动通过 } + +// ========== SYSTEM - 地区模块 ========== +/** + * 地区选择器层级枚举 + */ +export const AreaLevelEnum = { + PROVINCE: 1, // 省 + CITY: 2, // 市 + DISTRICT: 3 // 区 +}