index.wxml 897 B

1234567
  1. <!-- components/w-picker/index.wxml -->
  2. <van-popup round="{{true}}" lock-scroll="{{true}}" z-index="{{zIndex}}" show="{{innerShow}}" position="bottom" safe-area-inset-bottom="{{false}}" bind:close="onClose" bind:after-leave="onAfterLeave" bind:before-enter="onBeforeEnter">
  3. <!-- 单选择器 -->
  4. <van-picker wx:if="{{ !showAfterLeave && !isMulti && !isSearch }}" columns="{{ columns }}" visible-item-count="{{ visibleItemCount }}" item-height="{{ itemHeight }}" show-toolbar bind:cancel="onClose" default-index="{{ defaultIndex }}" bind:confirm="onSubmit" bind:change="onChange"></van-picker>
  5. <!-- 多选择器 -->
  6. <van-picker wx:if="{{ !showAfterLeave && isMulti && !isSearch }}" columns="{{ columns }}" visible-item-count="{{ visibleItemCount }}" item-height="{{ itemHeight }}" show-toolbar bind:cancel="onClose" bind:confirm="onSubmit" bind:change="onChange"></van-picker>
  7. </van-popup>