index.wxml 938 B

123456789101112131415161718192021222324252627282930313233343536
  1. <ant-picker
  2. className="ant-date-picker"
  3. popClassName="ant-date-picker-popup {{ popClassName || '' }}"
  4. style="{{ style }}"
  5. popStyle="{{ popStyle }}"
  6. animationType="{{ animationType }}"
  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. bind:change="onChange"
  19. bind:cancel="onCancel"
  20. bind:ok="onOk"
  21. formattedValueText="{{ formattedValueText }}"
  22. bind:visiblechange="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>