47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
<!--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="contrent_height">
|
|
<view class="pzzj_screen_title">{{title}}</view>
|
|
<view class="option_list_min">
|
|
<van-picker columns="{{ columns }}" bind:change="onBuildSelectChange" 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">{{title1}}</view>
|
|
<view class="option_list_min">
|
|
<van-picker columns="{{ floorList }}" bind:change="onFloorSelectChange" 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>
|
|
|
|
|
|
|
|
</view>
|
|
</van-popup>
|