Files
pqs-9100_client/frontend/src/utils/dict.ts
2024-10-30 15:19:47 +08:00

25 lines
514 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ? 系统全局字典
/**
* @description用户性别
*/
export const genderType = [
{ label: "男", value: 1 },
{ label: "女", value: 2 }
];
/**
* @description用户状态
*/
export const userStatus = [
{ label: "启用", value: 1, tagType: "success" },
{ label: "禁用", value: 0, tagType: "danger" }
];
export const resourceType = [
{ label: "菜单", value: 0 },
{ label: "按钮", value: 1 },
{ label: "公共资源", value: 2 }
{ label: "服务间调用资源", value: 3 }
];