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.
12 lines
268 B
12 lines
268 B
11 months ago
|
import Enum from '../enum'
|
||
|
|
||
|
/**
|
||
|
* 枚举类:拼单状态
|
||
|
* TaskStatusEnum
|
||
|
*/
|
||
|
export default new Enum([
|
||
|
{ key: 'NORMAL', name: '进行中', value: 10 },
|
||
|
{ key: 'SUCCESS', name: '拼单成功', value: 20 },
|
||
|
{ key: 'FAIL', name: '拼单失败', value: 30 }
|
||
|
])
|