index.wxml 1.7 KB

123456789101112131415161718192021222324252627
  1. <view class="word">
  2. <scroll-view class="left-list" scroll-into-view='{{leftIntoViewId}}' scroll-with-animation scroll-y style="height: {{height}}rpx;">
  3. <view class="option line-1 {{leftIntoViewId==item.system+item.systemid?'current':''}}" wx:for="{{list}}" id="{{item.system+item.systemid}}" bindtap="changeType">
  4. {{item.systemname}}
  5. </view>
  6. </scroll-view>
  7. <scroll-view class="right-list" bindscroll='viewScroll' scroll-into-view='{{rightIntoViewId}}' scroll-with-animation scroll-y style="height: {{height}}rpx;">
  8. <view class="group {{item.system+item.systemid}}" wx:for="{{list}}" id="{{item.system+item.systemid}}">
  9. <block wx:for="{{item.clients}}" wx:for-item="item2">
  10. <block wx:for="{{item2.modules}}" wx:for-item="item3">
  11. <view class="label">
  12. <van-checkbox icon-size='28rpx' label-class='label-text' shape='square' name="a">{{item3.systemmodulename}}-{{item2.systemclientname}}</van-checkbox>
  13. </view>
  14. <van-checkbox-group value="{{ result }}" bind:change="onChange">
  15. <van-checkbox wx:for="{{item3.apps}}" wx:for-item="item4" icon-size='28rpx' custom-class='custom-checkbox ' label-class='label-text' shape='square' name="{{item4.systemappid}}">{{item4.systemappname}}</van-checkbox>
  16. </van-checkbox-group>
  17. <view style="clear:both" />
  18. </block>
  19. </block>
  20. </view>
  21. <view style="height: {{height-80}}rpx;" />
  22. <view style="height: {{height-80}}rpx;" />
  23. </scroll-view>
  24. </view>
  25. <!-- <My_empty wx:if="{{list.length==0}}" /> -->