selectSection.axml 1.4 KB

12345678910111213141516171819202122232425262728
  1. <view class="all-date">
  2. <view class="data-tier" catchTap="onClose"></view>
  3. <view class="date-header {{isShow?'showPop':''}}">
  4. <view>
  5. <view class="flex-box flex-v-ce shu" a:if="{{terr.length>1}}">
  6. <view a:for="{{terr}}" class="flex-box flex-v-ce flex-d-wrap" data-index="{{index}}" catchTap="activeItem" data-item="{{item}}">
  7. <image mode="scaleToFill" src="../../../image/right.png" style="width:20rpx;height:20rpx;margin:0 6rpx;" a:if="{{index!=0}}"/>
  8. {{item.name}}
  9. </view>
  10. </view>
  11. <scroll-view class="ul" scroll-y="{{true}}">
  12. <radio-group class="radio-group" onChange="radioChange">
  13. <view class="flex-box flex-v-ce li" a:for="{{rule_tree}}">
  14. <label class="flex-box flex-v-ce flex-1">
  15. <radio value="{{item}}" checked="{{item.checked}}" name="{{item.id}}"/>
  16. <image mode="scaleToFill" style="width:50rpx;height:50rpx; margin:0 10rpx;" src="../../../image/BM.png"/> {{item.name}}</label>
  17. <view class="xia" data-item="{{item}}" catchTap="openDown" a:if="{{item._child.length>0}}">| 下级</view>
  18. </view>
  19. </radio-group>
  20. </scroll-view>
  21. </view>
  22. <view class="flex-box date-btn">
  23. <view class="flex-1" catchTap="onClose">取消</view>
  24. <view class="flex-1" catchTap="onConfirm">确定</view>
  25. </view>
  26. </view>
  27. <view class="meng" catchTap="onClose"></view>
  28. </view>