2024-08-22 11:27:06 +08:00
|
|
|
|
// ? 系统全局字典
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @description:用户性别
|
|
|
|
|
|
*/
|
|
|
|
|
|
export const genderType = [
|
|
|
|
|
|
{ label: "男", value: 1 },
|
|
|
|
|
|
{ label: "女", value: 2 }
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @description:用户状态
|
|
|
|
|
|
*/
|
|
|
|
|
|
export const userStatus = [
|
|
|
|
|
|
{ label: "启用", value: 1, tagType: "success" },
|
|
|
|
|
|
{ label: "禁用", value: 0, tagType: "danger" }
|
|
|
|
|
|
];
|
2024-10-17 15:09:27 +08:00
|
|
|
|
|
|
|
|
|
|
export const resourceType = [
|
2024-10-30 15:19:47 +08:00
|
|
|
|
{ label: "菜单", value: 0 },
|
|
|
|
|
|
{ label: "按钮", value: 1 },
|
|
|
|
|
|
{ label: "公共资源", value: 2 }
|
|
|
|
|
|
{ label: "服务间调用资源", value: 3 }
|
2024-10-17 15:09:27 +08:00
|
|
|
|
];
|