You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
586 B
35 lines
586 B
/**
|
|
* 全局常量,请避免使用魔法数字
|
|
*/
|
|
|
|
// 用户凭证名
|
|
const TOKEN_KEY = "msbPcToken";
|
|
|
|
// 订单状态
|
|
const ORDER_STATUS = {
|
|
WAIT_PAY: 1, // 待付款
|
|
WAIT_SEND: 3, //待发货
|
|
WAIT_RECEIVE: 4, // 待收货
|
|
};
|
|
|
|
// 性别
|
|
const SEX_TYPE = {
|
|
MALE: 1, // 男
|
|
FEMALE: 2, // 女
|
|
UNKNOW: 3, // 未知
|
|
};
|
|
|
|
// 热门分类类级
|
|
const CATEGROY_LEVEL = {
|
|
ONE: 1,
|
|
TWO: 2,
|
|
};
|
|
|
|
// 秒杀活动状态
|
|
const SECKILL_STATUS = {
|
|
NOT_START: 1, // 未开始
|
|
GOING: 2, // 进行中
|
|
};
|
|
|
|
export { TOKEN_KEY, ORDER_STATUS, SEX_TYPE, CATEGROY_LEVEL, SECKILL_STATUS };
|