wx.showActionSheet()函数在Android手机上显示问题
开发者微信号:lzs454040093
机型:华为荣耀8
操作系统: Android 7.0
是否必现:可重现。
问题描述:操作菜单没有“取消”选项,不是从底部弹出的。
问题截图:
代码片段:
<!–pages/test/test.wxml–>
<view style=‘margin:60rpx;’>
<button type=‘default’ bindtap=‘actionSheet’>弹出action-sheet</button>
</view>
// pages/test/test.js
Page({
data:{
},
actionSheet: function () {
wx.showActionSheet({
itemList: [‘item1’, ‘item2’, ‘item3’, ‘item4’],
itemColor: ‘#000000’,
success: function (res) {
console.log(res)
},
fail: function (res) { },
complete: function (res) { },
})
}
})