jhprjv2/ruoyi-ui-app/miniprogram/pages/components/voucher-selected/index.wxml

57 lines
1.2 KiB
Plaintext

<!--pages/components/voucher-select/index.wxml-->
<view class="voucher_select_max" bindtap="showPopup" style="border-radius: 40rpx;background-color: {{background}};">
<view class="voucher_select_icon">
<image src="https://xiangguan.sxyanzhu.com/statics/static/img/menu/CORE_B1C818B4CF2C44FE9D96624589329EBC.png"></image>
</view>
<view class="voucher_select_min">
<input class="celect_frame_min" placeholder="{{placeholder}}" placeholder-style="color:#fff;" value="{{value}}" disabled="true"/>
</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>
<van-picker columns="{{ columns }}" bind:change="onSelectChange" custom-class="time_select_style" default-index="{{index}}"
column-class="time_list_style" active-class="time_active_style" toolbar-class="toolbar_style" visible-item-count="5" />
</van-popup>