微信小程序中button中open-type="contact",是不是不能加拖拽方法。为啥加入拖拽方法后不能点击弹出客服回话了。
<button class="floating-button" open-type="contact"
style="right: {{position.right}}rpx; bottom: {{position.bottom}}rpx;"
catchtouchstart="handleTouchStart"
catchtouchmove="handleTouchMove"
catchtouchend="handleTouchEnd"
>
<image class="icon-32" src="/static/index/contact.png"></image>
</button>
这样写只能拖拽,但是不能弹出客服回话了,open-type="contact"也没没有js方法,在button 外包一层view也不行。这是什么原因。

button外边用movable-view套一下看看效果呢