Files
backend/admin-web/src/utils/dictionary.js
2019-05-06 23:24:23 +08:00

16 lines
398 B
JavaScript

// 字典定义
const DictionaryConstants = {
GENDER: 'gender',
ORDER_STATUS: 'order_status',
ORDER_CANCEL_REASONS: 'order_cancel_reasons',
LOGISTICS_COMPANY: 'logistics_company',
// order return
ORDER_RETURN_STATUS: 'order_return_status',
ORDER_RETURN_REASON: 'order_return_reason',
ORDER_RETURN_SERVICE_TYPE: 'order_return_service_type',
};
export default DictionaryConstants;