| 12345678910111213141516171819 |
- <!-- 抽屉 侧拉菜单-->
- <van-popup show="{{show_p}}" position="right" bind:close="onClose" class="popup" custom-style="height:100%;width:75%">
- <view style="height:45rpx;"></view>
- <scroll-view scroll-y class="popup-scroll-view">
- <slot>
- </slot>
- </scroll-view>
- <view style="height:120rpx;"></view>
- <view class="popup-button">
- <view class="popup-button-item">
- <van-button custom-style="border-radius: 15rpx;width:189rpx;" plain color="#1B365D" catchtap="clearSearchForm">重置</van-button>
- </view>
- <view class="popup-button-item">
- <van-button custom-style="border-radius: 15rpx;width:274rpx;" color="#1B365D" catchtap="doSearchData">确定</van-button>
- </view>
- </view>
- </van-popup>
|