2026-05-02 13:02:57 +08:00

19 lines
328 B
JavaScript

export const appUserStatusFilters = [
["", "全部"],
["active", "正常"],
["banned", "封禁"]
];
export const appUserStatusLabels = {
active: "正常",
banned: "封禁",
disabled: "封禁"
};
export const genderOptions = [
["", "未设置"],
["male", "男"],
["female", "女"],
["unknown", "未知"]
];