initHeader

This commit is contained in:
2024-08-22 11:27:06 +08:00
parent fe895bd37c
commit e0aaa7a30d
178 changed files with 5726 additions and 4999 deletions

View File

@@ -0,0 +1,17 @@
// ? 系统全局字典
/**
* @description用户性别
*/
export const genderType = [
{ label: "男", value: 1 },
{ label: "女", value: 2 }
];
/**
* @description用户状态
*/
export const userStatus = [
{ label: "启用", value: 1, tagType: "success" },
{ label: "禁用", value: 0, tagType: "danger" }
];