dk-side-pull-menu.wxml 732 B

12345678910111213141516171819
  1. <!-- 抽屉 侧拉菜单-->
  2. <van-popup show="{{show_p}}" position="right" bind:close="onClose" class="popup" custom-style="height:100%;width:75%">
  3. <view style="height:45rpx;"></view>
  4. <scroll-view scroll-y class="popup-scroll-view">
  5. <slot>
  6. </slot>
  7. </scroll-view>
  8. <view style="height:120rpx;"></view>
  9. <view class="popup-button">
  10. <view class="popup-button-item">
  11. <van-button custom-style="border-radius: 15rpx;width:189rpx;" plain color="#1B365D" catchtap="clearSearchForm">重置</van-button>
  12. </view>
  13. <view class="popup-button-item">
  14. <van-button custom-style="border-radius: 15rpx;width:274rpx;" color="#1B365D" catchtap="doSearchData">确定</van-button>
  15. </view>
  16. </view>
  17. </van-popup>