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.
// 会员标记(0=正常会员,1=V日会员,2=V5会员)
// 正常会员:指V1以上,可以查看所有功能
// VO会员:指V日级别,只有会员专区
// V5会员:指V5级别,只有V5显示市场动态等
export const MEMBER_SIGN = {
ZERO_LEVEL: 1,
NORMAL_LEVEL: 0,
V5_LEVEL: 2,
}