| 12345678910111213141516171819 |
- <view class='listbox'>
- <view class='kelong list' hidden='{{!showkelong}}' style='top:{{kelong.top}}px'>
- <view class='index'>?</view>
- <view class='info'>
- <view class="name">{{kelong.name}}</view>
- <view class='sub-name'>{{kelong.subname}}</view>
- </view>
- <view class='moreiconpl'>三</view>
- </view>
- <view class='list FlexRow' wx:for="{{optionList}}" wx:key="">
- <view class='index'>{{index+1}}</view>
- <view class='info'>
- <view class="name">{{item.name}}</view>
- <view class='sub-name'>{{item.subname}}</view>
- </view>
- <view class='moreiconpl' data-index='{{index}}' catchtouchstart='dragStart' catchtouchmove='dragMove' catchtouchend='dragEnd'>三</view>
- </view>
- </view>
|