From bae1e0d700497fc5bb88949b8b36b9049dfa1a27 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 17 十月 2025 14:58:26 +0800
Subject: [PATCH] feat: 1.2.0.1
---
src/constants/enum.ts | 40 +++++++++++++++++++++++-----------------
1 files changed, 23 insertions(+), 17 deletions(-)
diff --git a/src/constants/enum.ts b/src/constants/enum.ts
index 936694e..40df1fa 100644
--- a/src/constants/enum.ts
+++ b/src/constants/enum.ts
@@ -17,24 +17,30 @@
Town,
}
-// 鏁版嵁鍙鑼冨洿
-export enum DataRangeEnum {
- /**
- * 鍏ㄩ儴鏁版嵁
- */
- All = 100,
- /**
- * 涓汉鏁版嵁
- */
- Person = 10,
-}
-
-export const DataRangeEnumText = {
- [DataRangeEnum.All]: '鍏ㄩ儴鏁版嵁',
- [DataRangeEnum.Person]: '涓汉鏁版嵁',
-};
-
export enum AuthorizeType {
Role = 1,
User,
}
+
+export const BooleanOptions = [
+ { label: '鏄�', value: true },
+ { label: '鍚�', value: false },
+];
+
+export enum Gender {
+ /**
+ * 鐢�
+ */
+ Male = 1,
+ /**
+ * 濂�
+ */
+ Female = 2,
+}
+
+export const GenderText = {
+ [Gender.Male]: '鐢�',
+ [Gender.Female]: '濂�',
+};
+
+export const TempFolderPath = 'https://parkmanagement.oss-cn-hangzhou.aliyuncs.com/FlexJob/Admin';
--
Gitblit v1.9.1