feat: add字典管理
Some checks failed
coverage CI / build (push) Has been cancelled

This commit is contained in:
2025-10-17 16:50:13 +08:00
parent b4d3535b91
commit 2821e864da
6 changed files with 54 additions and 18 deletions

View File

@@ -34,3 +34,10 @@ export const systemDataScopetStatus = [
{ label: '部门及以下数据权限', value: 4 },
{ label: '仅本人数据权限', value: 5 },
];
// ========== COMMON 模块 ==========
// 全局通用状态枚举
export const CommonStatusEnum = {
ENABLE: 0, // 开启
DISABLE: 1, // 禁用
};