- 显示消息提示框
wx.showToast(OBJECT)
wx.showToast({
title: '加载中',
icon: 'loading',
duration: 10000
})
- 隐藏消息提示框
wx.hideToast()
setTimeout(function(){
wx.hideToast()
},2000)
- 显示模态弹窗
wx.showModal(OBJECT)
wx.showModal({
title: '提示' ,
content: '这是一个模态弹窗' ,
success: function (res) {
if (res.confirm) {
console.log( '用户点击确定' )
} else {
console.log( '用户点击取消' )
}
}
})
- 显示操作菜单
wx.showActionSheet(OBJECT)
wx.showActionSheet({
itemList: ['A', 'B', 'C'],
success: function(res) {
if (!res.cancel) {
console.log(res.tapIndex)
}
}
})