index.wxml 550 B

1234567891011
  1. <van-popup show="{{ show }}" position="right" custom-style="width: 660rpx; height:100vh;" bind:close="onClose">
  2. <view class="head" />
  3. <My_listBox height="{{listHeight}}" pullDown='{{false}}'>
  4. <slot />
  5. </My_listBox>
  6. <view class="footer" bindtap="onClick">
  7. <van-button data-name="close" custom-class='v-but'>关闭</van-button>
  8. <van-button data-name="reset" custom-class='v-but'>重置</van-button>
  9. <van-button data-name="confirm" custom-class='v-but confirm'>确定</van-button>
  10. </view>
  11. </van-popup>