19 lines
886 B
Plaintext
19 lines
886 B
Plaintext
<!--pages/components/project-select/index.wxml-->
|
|
<view class="video_add">
|
|
<view class="video_address" style="width: {{width}};margin-left: {{left}};">
|
|
<view class="video_address_min" bindtap="showPopup">
|
|
{{item.text}}
|
|
</view>
|
|
</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>
|