jhwxapp/miniprogram/pages/components/voucher-date/index.wxml

55 lines
1.0 KiB
Plaintext
Raw Normal View History

2023-08-10 01:21:29 +08:00
<!--pages/components/voucher-select/index.wxml-->
2024-07-01 23:58:39 +08:00
<view class="voucher_select_max {{classStr}}" bindtap="showPopup" style="width: {{width}};">
2023-08-10 01:21:29 +08:00
<view class="voucher_select_min">
2024-07-01 23:58:39 +08:00
<input class="celect_frame_min" placeholder="{{placeholder}}" placeholder-style="{{classStr?'color:':'color:#6777aa'}};" value="{{value}}" disabled="true"/>
2023-08-10 01:21:29 +08:00
</view>
<view class="voucher_select_icon">
2024-03-17 16:19:31 +08:00
<image src="/images/web_select_date.png"></image>
2023-08-10 01:21:29 +08:00
</view>
</view>
<van-popup show="{{ show }}" bind:close="onClose" position="bottom" custom-class="popup_style">
<view class="option_list_title">
<view class="option_list_title_btn" bindtap="onClose">取消</view>
<view>{{placeholder}}</view>
<view class="option_list_title_btn" bindtap="onConfirm">确认</view>
</view>
2023-08-24 18:44:06 +08:00
<select-date bindchange="onChangeDate" minDate="{{minDate}}" maxDate="{{maxDate}}" currentDate="{{currentDate}}" counts="{{counts}}"></select-date>
2023-08-10 01:21:29 +08:00
</van-popup>