props.js 589 B

1234567891011121314151617181920212223242526
  1. export var DatePickerDefaultProps = {
  2. okText: '确定',
  3. cancelText: '取消',
  4. maskClosable: true,
  5. placeholder: '请选择',
  6. format: 'YYYY/MM/DD',
  7. precision: 'day',
  8. };
  9. export var DatePickerFunctionalProps = {
  10. animationType: 'transform',
  11. format: 'YYYY/MM/DD',
  12. min: null,
  13. max: null,
  14. value: null,
  15. defaultValue: null,
  16. title: '',
  17. okText: '确定',
  18. cancelText: '取消',
  19. placeholder: '请选择',
  20. precision: 'day',
  21. maskClosable: true,
  22. popClassName: '',
  23. popStyle: '',
  24. disabled: false,
  25. onFormatLabel: null,
  26. };