index.wxml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <view class="tools-container l-class" catchtouchmove="{{true}}" style="z-index: {{zIndex}};">
  2. <view class="tools-form">
  3. <view wx:if="{{lockWidth}}">
  4. 锁定裁剪框宽
  5. <switch model:checked="{{lockWidthValue}}" color="{{formColor}}" bindchange="bindSwitchChange" data-type="lockWidth" class="tools-switch"/>
  6. </view>
  7. <view wx:if="{{lockHeight}}">
  8. 锁定裁剪框高
  9. <switch model:checked="{{lockHeightValue}}" color="{{formColor}}" bindchange="bindSwitchChange" data-type="lockHeight" class="tools-switch"/>
  10. </view>
  11. <view wx:if="{{lockRatio}}">
  12. 锁定裁剪框比例
  13. <switch model:checked="{{lockRatioValue}}" color="{{formColor}}" bindchange="bindSwitchChange" data-type="lockRatio" class="tools-switch"/>
  14. </view>
  15. <view wx:if="{{limitMove}}">
  16. 限制移动范围
  17. <switch model:checked="{{limitMoveValue}}" color="{{formColor}}" bindchange="bindSwitchChange" data-type="limitMove" class="tools-switch"/>
  18. </view>
  19. <view wx:if="{{disableScale}}">
  20. 禁止缩放
  21. <switch model:checked="{{disableScaleValue}}" color="{{formColor}}" bindchange="bindSwitchChange" data-type="disableScale" class="tools-switch"/>
  22. </view>
  23. <view wx:if="{{disableRotate}}">
  24. 禁止旋转
  25. <switch model:checked="{{disableRotateValue}}" color="{{formColor}}" bindchange="bindSwitchChange" data-type="disableRotate" class="tools-switch"/>
  26. </view>
  27. </view>
  28. </view>