Files
yunxinwei-uniapp/common/enum/order/DeliveryStatus.js
messi 4810dc79e3 fix
2024-08-19 17:17:46 +08:00

12 lines
283 B
JavaScript

import Enum from '../enum'
/**
* 枚举类:订单发货状态
* DeliveryStatusEnum
*/
export default new Enum([
{ key: 'NOT_DELIVERED', name: '未发货', value: 10 },
{ key: 'DELIVERED', name: '已发货', value: 20 },
{ key: 'ACCEPT', name: '已绑定', value: 40 }
])