date-time-picker.wxml 727 B

123456789101112131415161718192021222324252627
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <t-picker
  3. style="{{_._style([style, customStyle])}}"
  4. class="{{classPrefix}}"
  5. visible="{{visible}}"
  6. value="{{columnsValue}}"
  7. bind:pick="onColumnChange"
  8. bind:change="onConfirm"
  9. bind:cancel="onCancel"
  10. bind:visible-change="onVisibleChange"
  11. header="{{header}}"
  12. title="{{title}}"
  13. confirmBtn="{{confirmBtn || locale.confirm}}"
  14. cancelBtn="{{cancelBtn || locale.cancel}}"
  15. >
  16. <slot slot="header" name="header" />
  17. <t-picker-item
  18. wx:for="{{columns}}"
  19. wx:key="index"
  20. class="{{_.cls(classPrefix + '__item', [['roomly', columns.length > 5 && index == 0]])}}"
  21. options="{{item}}"
  22. index="index"
  23. />
  24. <slot slot="footer" name="footer" />
  25. </t-picker>