以下是小程序中常用的集中彈窗形式:
1.類似layer.confirm('111',function(){})效果
wx.showModal({
title: '',
content: '暫無分析數據',
showCancel: false
});
}
2.類似layer.msg效果
wx.showToast({
title: '登錄成功',
icon: 'success',
duration: 1000
})
3.loading顯示框:showLoading與hideLoading配對使用
wx.showLoading({
title: '加載中。。。',
})
4.隱藏顯示的loading
setTimeout(function () {
wx.hideLoading()
}, 2000)
更多用法與屬性參考微信小程序API
