详细问题描述
movable-area 的@scale 回调有误,event.detail中只有:{"scale":scale},而不是文档中提到的{x: x, y: y, scale: scale},
代码:
<movable-area class="picture-area" :scale-area="true">
<movable-view
class="picture-view"
:style="{ width: cropperW + 'px', height: cropperH + 'px' }"
direction="all"
:x="old.x"
:y="old.y"
:scale="true"
:scale-min="1"
:scale-max="2"
@change="movableChange"
@scale="movableScale">
<image :src="localImg" :style="'width:' + cropperW + 'px;height:' + cropperH + 'px'"></image>
</movable-view>
</movable-area>
movableScale(e) {
console.log(JSON.stringify(e));
},
预期结果
detail:{
x: x,
y: y,
scale:1.4
}
实际结果(可见附件)
detail:{
scale:1.4
}
系统信息:
发行平台: [微信小程序、5+ App]
HBuilderX版本:1.9.9.20190522