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.
 
 
 
 
 
 
yanzong_qianduan/common/enum/sharp/GoodsStatus.js

11 lines
295 B

import Enum from '../enum'
/**
* 枚举类:整点秒杀-活动商品状态
* GoodsStatusEnum
*/
export default new Enum([
{ key: 'STATE_BEGIN', name: '已开始', value: 10 },
{ key: 'STATE_SOON', name: '未开始', value: 20 },
{ key: 'STATE_END', name: '已结束', value: 30 }
])