add: 增加生日有礼页面

This commit is contained in:
2025-10-15 15:47:58 +08:00
parent 056992c8a0
commit 36e14ed434
7 changed files with 604 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
export const userTypes = [
{
label: "全部用户",
value: "all",
},
{
label: "非会员用户",
value: "non_vip",
},
{
label: "仅会员用户",
value: "vip",
},
];
export const returnUserType = (type) => {
return userTypes.find((item) => item.value === type)?.label;
};