productEnums.js 737 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * 请求结果
  3. */
  4. // export const ProductTypeEnum = {
  5. // OnSale: '1', //出售中
  6. // InTheWarehouse: '2', //仓库中
  7. // SoldOut: '3', //已售罄
  8. // AlertInventory: '4', //警戒库存
  9. // RecycleBin: '5', //回收站
  10. //
  11. // Audit: '6', //待审核
  12. // ReviewFailed: '7', //审核失败
  13. // PendingReview: '8', //待提审
  14. // };
  15. /**
  16. * 营销类型
  17. */
  18. export const ProductMarketingTypeEnum = {
  19. Normal: 0, //基础商品
  20. Seckill: 1, //秒杀
  21. Groupbuying: 2, //拼团
  22. };
  23. /**
  24. * 基础类型 商品类型
  25. */
  26. export const ProductTypeEnum = {
  27. Normal: 0, //基础商品
  28. Integral: 1, //积分
  29. Fictitious: 2, //虚拟,
  30. Video: 4, //视频号
  31. CloudDrive: 5, //云盘商品
  32. CardPassword: 6 //卡密商品
  33. };