index.axml 956 B

123456789101112131415161718192021222324252627282930313233343536
  1. <ant-picker
  2. className="ant-cascader-picker {{ className || '' }}"
  3. style="{{ style }}"
  4. animationType="{{ animationType }}"
  5. popClassName="ant-cascader-picker-popup {{ popClassName || '' }}"
  6. popStyle="{{ popStyle }}"
  7. options="{{ columns }}"
  8. value="{{ currentValue }}"
  9. disabled="{{ disabled }}"
  10. title="{{ title }}"
  11. placeholder="{{ placeholder }}"
  12. okText="{{ okText }}"
  13. cancelText="{{ cancelText }}"
  14. maskStyle="{{ maskStyle }}"
  15. maskClassName="{{ maskClassName }}"
  16. indicatorStyle="{{ indicatorStyle }}"
  17. indicatorClassName="{{ indicatorClassName }}"
  18. onChange="onChange"
  19. onCancel="onCancel"
  20. onOk="onOk"
  21. formattedValueText="{{ formattedValueText }}"
  22. onVisibleChange="onVisibleChange"
  23. maskClosable="{{ maskClosable }}">
  24. <slot
  25. name="content"
  26. slot="content" />
  27. <slot
  28. name="title"
  29. slot="title" />
  30. <slot
  31. name="prefix"
  32. slot="prefix" />
  33. <slot
  34. name="suffix"
  35. slot="suffix" />
  36. </ant-picker>