cropper-avatar.wxml 580 B

12345678910
  1. <!--pages/me/cropper-avatar.wxml-->
  2. <o2-navi title="修改头像" ></o2-navi>
  3. <image-cropper id="image-cropper" bindload="cropperload" bindimageload="loadimage" limit_move="true" disable_rotate="true" width="{{width}}" height="{{height}}" imgSrc="{{src}}" max_width="{{max_width}}" max_height="{{max_height}}" disable_ratio="false">
  4. </image-cropper>
  5. <view class="bottom">
  6. <button class="weui-btn weui-btn_mini weui-btn_default" catchtap='chooseImage' >选择图片</button>
  7. <button class="weui-btn weui-btn_mini weui-btn_primary" bindtap='submit'>确定</button>
  8. </view>