index.wxml 915 B

1234567891011121314
  1. <picker-view indicator-style="height: 50px;" style="width: 100%; height: 300px;" value="{{value}}"
  2. bindchange="bindChange" data-index="{{value[0]}}" class="flex" indicator-class="indicator">
  3. <picker-view-column style="flex:1">
  4. <view wx:for="{{times}}" class="text" style="line-height: 50px;" wx:key="index">{{item}}</view>
  5. </picker-view-column>
  6. <picker-view-column style="flex:2">
  7. <view bindtap="onChangeHours" class="hours" wx:for="{{hours}}" style="line-height: 50px" wx:key="index" data-index="{{index}}">
  8. <text class="text">{{item.order_time}}</text>
  9. <image src="/images/icon_radio_01.png" wx:if="{{current != index && item.status == 1}}"></image>
  10. <image src="/images/my/select_ok.png" wx:if="{{current == index && item.status == 1}}"></image>
  11. <image src="/images/icon_radio_03.png" wx:if="{{item.status == 0}}"></image>
  12. </view>
  13. </picker-view-column>
  14. </picker-view>