任务明细页面
This commit is contained in:
16
components/picker/picker-item.wxml
Normal file
16
components/picker/picker-item.wxml
Normal file
@@ -0,0 +1,16 @@
|
||||
<view
|
||||
class="{{prefix}}__group"
|
||||
bind:touchstart="onTouchStart"
|
||||
catch:touchmove="onTouchMove"
|
||||
bind:touchend="onTouchEnd"
|
||||
bind:touchcancel="onTouchEnd"
|
||||
>
|
||||
<view
|
||||
class="{{prefix}}__wrapper"
|
||||
style="transition: transform {{ duration }}ms cubic-bezier(0.215, 0.61, 0.355, 1); transform: translate3d(0, {{ offset }}px, 0)"
|
||||
>
|
||||
<view class="{{prefix}}__item" wx:for="{{options}}" wx:key="index" wx:for-item="option" data-index="{{ index }}">
|
||||
{{option.label}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user