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
281 B
12 lines
281 B
11 months ago
|
import Enum from '../../enum'
|
||
|
|
||
|
/**
|
||
|
* 枚举类:发货方式
|
||
|
* DeliveryMethodEnum
|
||
|
*/
|
||
|
export default new Enum([
|
||
|
{ key: 'MANUAL', name: '手动发货', value: 10 },
|
||
|
{ key: 'UNWANTED', name: '无需物流', value: 20 },
|
||
|
{ key: 'EORDER', name: '电子面单', value: 30 }
|
||
|
])
|