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.
|
import Enum from '../enum'
|
|
|
|
/**
|
|
* 枚举类:优惠券适用范围
|
|
* ApplyRangeEnum
|
|
*/
|
|
export default new Enum([
|
|
{ key: 'ALL', name: '全部商品', value: 10 },
|
|
{ key: 'SOME_GOODS', name: '指定商品', value: 20 }
|
|
])
|