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/groupon/GoodsStatus.js

11 lines
219 B

4 months ago
import Enum from '../enum'
/**
* 枚举类拼团商品状态
* GoodsStatusEnum
*/
export default new Enum([
{ key: 'NORMAL', name: '进行中', value: 10 },
{ key: 'FINISH', name: '已结束', value: 20 }
])