dictionary.js 504 Bytes
Newer Older
sin's avatar
sin committed
1 2 3 4 5
// 字典定义

const DictionaryConstants = {
  GENDER: 'gender',
  ORDER_STATUS: 'order_status',
sin's avatar
sin committed
6
  ORDER_CANCEL_REASONS: 'order_cancel_reasons',
sin's avatar
sin committed
7
  LOGISTICS_COMPANY: 'logistics_company',
8 9 10 11 12

  // order return
  ORDER_RETURN_STATUS: 'order_return_status',
  ORDER_RETURN_REASON: 'order_return_reason',
  ORDER_RETURN_SERVICE_TYPE: 'order_return_service_type',
13 14

  // sms
15
  SMS_TYPE: 'sms_type',
16 17
  SMS_PLATFORM: 'sms_platform',
  SMS_APPLY_STATUS: 'sms_apply_status',
sin's avatar
sin committed
18 19 20
};

export default DictionaryConstants;