From 85f7bdb64b1f8b0fdaf58355a4f3fc389ec26ad0 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 18 十一月 2025 16:00:00 +0800
Subject: [PATCH] feat: 新增审核撤回日志
---
src/constants/enum.ts | 150 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 150 insertions(+), 0 deletions(-)
diff --git a/src/constants/enum.ts b/src/constants/enum.ts
index e403f0e..62bf523 100644
--- a/src/constants/enum.ts
+++ b/src/constants/enum.ts
@@ -43,3 +43,153 @@
{ label: '鏄�', value: true },
{ label: '鍚�', value: false },
];
+
+export const Colors = {
+ Success: 'var(--el-color-success)',
+ Warning: 'var(--el-color-warning)',
+ Danger: 'var(--el-color-danger)',
+};
+
+export const TempFolderPath = 'https://parkmanagement.oss-cn-hangzhou.aliyuncs.com/12333/temp';
+
+export enum DepartmentType {
+ /**
+ * 甯傚満閮�
+ */
+ Market = 1,
+ /**
+ * 閿�鍞儴
+ */
+ Sale,
+ /**
+ * 瀹㈡埛閮�
+ */
+ Customer,
+ /**
+ * 鎷涘晢閮�
+ */
+ Merchants,
+}
+
+export const DepartmentTypeText = {
+ [DepartmentType.Market]: '甯傚満閮�',
+ [DepartmentType.Sale]: '閿�鍞儴',
+ [DepartmentType.Customer]: '瀹㈡埛閮�',
+ [DepartmentType.Merchants]: '鎷涘晢閮�',
+};
+
+export enum ExternalSystem {
+ /**
+ * 鍥涙祦鏀垮姟绔�
+ */
+ Goverend = 'goverend-admin-app-client',
+ /**
+ * 姹熶綉鍏变繚杩愯惀绔�
+ */
+ JYB = 'jyb-admin-app-client',
+ /**
+ * 鐏靛伐绯荤粺杩愯惀绔�
+ */
+ flexjob = 'flexjob-admin-app-client',
+}
+
+export const ExternalSystemText = {
+ [ExternalSystem.Goverend]: '鍥涙祦鏀垮姟绔�',
+ [ExternalSystem.JYB]: '姹熶綉鍏变繚杩愯惀绔�',
+ [ExternalSystem.flexjob]: '鐏靛伐绯荤粺杩愯惀绔�',
+};
+
+export enum OperateHistoryTypeEnum {
+ /**
+ * 璁よ瘉鐢ㄦ埛鏃ュ織
+ */
+ CertifiedUser = 10,
+ /**
+ * 骞冲彴鐢ㄦ埛鏃ュ織
+ */
+ PlatformUser = 11,
+ /**
+ * 鐢ㄦ埛璁よ瘉瀹℃牳鏃ュ織
+ */
+ UserCertificationAudit = 12,
+ /**
+ * 鍏憡鏃ュ織
+ */
+ SystemNotice = 13,
+ /**
+ * 璧勮绠$悊鏃ュ織
+ */
+ InformationForManage = 14,
+ /**
+ * 璧勮瀹℃牳鏃ュ織
+ */
+ InformationWaitForCheck = 15,
+ /**
+ * 寮�鎴风鐞嗘棩蹇�
+ */
+ WalletAccountOpen = 16,
+ /**
+ * 杞处瀹℃牳瀵瑰崟鏃ュ織
+ */
+ alletSingleTransfer = 17,
+ /**
+ * 鍏呭�煎鏍�
+ */
+ WalletRecharge = 18,
+ /**
+ * 璐︽埛绠$悊
+ */
+ AccountManage = 19,
+ /**
+ * 璁よ瘉绠$悊
+ */
+ UserCertificationManage = 20,
+ /**
+ * 鎵归噺杞处瀹℃牳鏃ュ織
+ */
+ AuditWalletBatchTransfer = 21,
+ /**
+ * 琛屼笟鏈烘瀯瀹℃牳鏃ュ織
+ */
+ IndustryBodyAudit = 22,
+ /**
+ * 琛屼笟閰嶅瀹℃牳鏃ュ織
+ */
+ IndustryMatingAudit = 23,
+ /**
+ * 鐢叉柟浼佷笟瀹℃牳鏃ュ織
+ */
+ FirstPartyCompanyAudit = 24,
+ /**
+ * 浜鸿祫鍏徃瀹℃牳鏃ュ織
+ */
+ ParkOrHRAudit = 25,
+ /**
+ * 琛屼笟鏈烘瀯绠$悊鏃ュ織
+ */
+ IndustryBodyManage = 26,
+ /**
+ * 琛屼笟閰嶅绠$悊鏃ュ織
+ */
+ IndustryMatingManage = 27,
+ /**
+ * 鐢叉柟浼佷笟绠$悊鏃ュ織
+ */
+ FirstPartyCompanyManage = 28,
+ /**
+ * 浜鸿祫鍏徃绠$悊鏃ュ織
+ */
+ ParkOrHRManage = 29,
+ /**
+ * 瀹㈡埛绠$悊鏃ュ織
+ */
+ CustomerManage = 30,
+ /**
+ * 濂栧姳閰嶇疆鏃ュ織
+ */
+ ParkRewardManage = 31,
+ /**
+ * 瀹㈡埛妯℃澘鎿嶄綔鏃ュ織
+ */
+ CustomerContractTemplate = 32,
+}
--
Gitblit v1.9.1