action-sheet点击一闪一闪的
发布于 5 年前 作者 nama 17813 次浏览 来自 问答

<!–底部弹出框–>

<action-sheet hidden="{{item.actionSheetHidden!=’’?true:false}}" bindchange=“actionSheetbindchange”>

<view>

<action-sheet-item bindtap=“bindmenu”>

<view class=“pull1”>

<image class=“cancel” src="/images/[email protected]" data-cart-index="{{index}}" catchtap=“cancel” />

</view>

<!-- <view class=“pull2”>

                           <view class=“pulltitle”>

                               起刊时间

                           </view>

                           <view class=“pullline”>

                               <block wx:for="{{item.bookingStart}}" wx:for-item=“ele”>

                                   <view data-fromDate="{{ele.fromDate}}" data-index="{{index}}" data-parent-index="{{ele.parentIndex}}" class="{{ele.style}}" catchtap=“pickFromDate”>

                                       {{ele.fromDate}}

                                   </view>

                               </block>

                           </view>

                       </view> -->

<view class=“pull2”>

<view class=“pulltitle”>

年数

</view>

<view class=“pullline”>

<view class="{{selected4?‘pullyearred’:‘pullyear’}}" catchtap=“selected4” data-parent-index="{{index}}">

1年

</view>

<view class="{{selected5?‘pullyearred’:‘pullyear’}}" catchtap=“selected5” data-parent-index="{{index}}">

2年

</view>

<view class="{{selected6?‘pullyearred’:‘pullyear’}}" catchtap=“selected6” data-parent-index="{{index}}">

3年

</view>

</view>

</view>

<view class=“pullsubmit”>

<button data-cart-index="{{index}}" catchtap=“confirm”>确定</button>

</view>

</action-sheet-item>

</view>

</action-sheet>

回到顶部