<!--pages/components/pz-screen/index.wxml--> <view class="pz_screen" bindtap="showPopup">筛选</view> <van-popup show="{{ show }}" bind:close="onClose" position="bottom" custom-class="popup_style"> <view class="option_list_max"> <view class="option_list_title"> <view class="option_list_title_btn" bindtap="onClose">取消</view> <view>筛选</view> <view class="option_list_title_btn" bindtap="onConfirm">确认</view> </view> <view class="pzzj_screen_title">凭证类型</view> <view class="option_list_min"> <van-picker columns="{{ columns }}" bind:change="onSelectChange" custom-class="time_select_style" column-class="time_list_style" active-class="time_active_style" visible-item-count="3"/> </view> <view class="pzzj_screen_title">上传时间</view> <view class="pzzj_screen_time"> <van-row> <van-col span="11"> <select-date bindchange="onStartDate"></select-date> </van-col> <van-col span="2"> <view class="pzzj_screen_time_bar"> - </view> </van-col> <van-col span="11"> <select-date bindchange="onEndDate"></select-date> </van-col> </van-row> </view> </view> </van-popup>