使用了uni-popup组件,H5、微信小程序都正常,但百度小程序下就出错。
我换了插件市场的其它组件也是一样的问题,百思不得解,请高手指点一下
<view class="isay" @click="toggle('bottom')">我来说两句</view>
<uni-popup class="popup-comment" ref="popup" background-color="#fff">
<view class="pl-main">
<input placeholder="我来说两句..." class="isay" @input="getText" />
<button @tap="save" class="btn">发送</button>
</view>
</uni-popup>
JS
toggle(type) {
console.log(type);
this.type = type
this.$refs.popup.open(type)
},