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