Files

22 lines
452 B
JavaScript
Raw Permalink Normal View History

/**
* 营销类型
*/
export const ProductMarketingTypeEnum = {
Normal: 0, //基础商品
Seckill: 1, //秒杀
Groupbuying: 2, //拼团
};
/**
* 基础类型 商品类型
*/
export const ProductTypeEnum = {
Normal: 0, //基础商品
Integral: 1, //积分
Fictitious: 2, //虚拟,
Video: 4, //视频号
CloudDrive: 5, //云盘商品
CardPassword: 6, //卡密商品
Reservation: 7, //预约商品
PunchCard: 8, //次卡商品
};