35 lines
737 B
JavaScript
35 lines
737 B
JavaScript
![]() |
/**
|
||
|
* 请求结果
|
||
|
*/
|
||
|
// export const ProductTypeEnum = {
|
||
|
// OnSale: '1', //出售中
|
||
|
// InTheWarehouse: '2', //仓库中
|
||
|
// SoldOut: '3', //已售罄
|
||
|
// AlertInventory: '4', //警戒库存
|
||
|
// RecycleBin: '5', //回收站
|
||
|
//
|
||
|
// Audit: '6', //待审核
|
||
|
// ReviewFailed: '7', //审核失败
|
||
|
// PendingReview: '8', //待提审
|
||
|
// };
|
||
|
|
||
|
/**
|
||
|
* 营销类型
|
||
|
*/
|
||
|
export const ProductMarketingTypeEnum = {
|
||
|
Normal: 0, //基础商品
|
||
|
Seckill: 1, //秒杀
|
||
|
Groupbuying: 2, //拼团
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 基础类型 商品类型
|
||
|
*/
|
||
|
export const ProductTypeEnum = {
|
||
|
Normal: 0, //基础商品
|
||
|
Integral: 1, //积分
|
||
|
Fictitious: 2, //虚拟,
|
||
|
Video: 4, //视频号
|
||
|
CloudDrive: 5, //云盘商品
|
||
|
CardPassword: 6 //卡密商品
|
||
|
};
|