test.wxml 763 B

12345678910111213141516171819
  1. <view class='listbox'>
  2. <view class='kelong list' hidden='{{!showkelong}}' style='top:{{kelong.top}}px'>
  3. <view class='index'>?</view>
  4. <view class='info'>
  5. <view class="name">{{kelong.name}}</view>
  6. <view class='sub-name'>{{kelong.subname}}</view>
  7. </view>
  8. <view class='moreiconpl'>三</view>
  9. </view>
  10. <view class='list FlexRow' wx:for="{{optionList}}" wx:key="">
  11. <view class='index'>{{index+1}}</view>
  12. <view class='info'>
  13. <view class="name">{{item.name}}</view>
  14. <view class='sub-name'>{{item.subname}}</view>
  15. </view>
  16. <view class='moreiconpl' data-index='{{index}}' catchtouchstart='dragStart' catchtouchmove='dragMove' catchtouchend='dragEnd'>三</view>
  17. </view>
  18. </view>