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.
11 lines
229 B
11 lines
229 B
1 year ago
|
import Enum from '../enum'
|
||
|
|
||
|
/**
|
||
|
* 枚举类:订单收货状态
|
||
|
* ReceiptStatusEnum
|
||
|
*/
|
||
|
export default new Enum([
|
||
|
{ key: 'NOT_RECEIVED', name: '未收货', value: 10 },
|
||
|
{ key: 'RECEIVED', name: '已收货', value: 20 }
|
||
|
])
|