web-retail-h5/util/common.js

30 lines
520 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

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,
}
export const ORDER_STATUS = [
{
label: '全部',
value: '',
},
{
label: '待发货',
value: 1,
},
{
label: '待收货',
value: 3,
},
{
label: '已收货',
value: 5,
},
]