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'
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 枚举类:订单来源
|
|
|
|
|
* OrderSourceEnum
|
|
|
|
|
*/
|
|
|
|
|
export default new Enum([
|
|
|
|
|
{ key: 'MASTER', name: '普通订单', value: 10 },
|
|
|
|
|
{ key: 'BARGAIN', name: '砍价订单', value: 20 },
|
|
|
|
|
{ key: 'SHARP', name: '秒杀订单', value: 30 }
|
|
|
|
|
])
|