From f1ff27e72013b5c89de241d4d3ab11244aa91e15 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 12 十一月 2025 17:30:14 +0800
Subject: [PATCH] fix: 四流

---
 src/constants/enum.ts |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

diff --git a/src/constants/enum.ts b/src/constants/enum.ts
index e403f0e..80a41ea 100644
--- a/src/constants/enum.ts
+++ b/src/constants/enum.ts
@@ -43,3 +43,58 @@
   { 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]: '鐏靛伐绯荤粺杩愯惀绔�',
+};

--
Gitblit v1.9.1