Toast提示
mask Boolean 否 是否顯示透明蒙層但狭,防止觸摸穿透,默認(rèn):false
icon String 否 圖標(biāo)瞻惋,有效值 "success", "loading", "none"
wx.showToast({
title: '請(qǐng)輸入提示語(yǔ)',
icon: 'none',
mask:true,
duration: 2000
})
加載的loading
wx.showLoading({
title: '正在加載',
mask: true,
})
wx.hideLoading();
延遲執(zhí)行
setTimeout(function() {
wx.hideLoading()
}, 1000)
彈出窗口提示
wx.showModal({
title: '我是彈窗標(biāo)題',
content: '佛系彈窗詳情內(nèi)容',
success: function(res) {
if (res.confirm) {
console.log('用戶點(diǎn)擊確定')
} else if (res.cancel) {
console.log('用戶點(diǎn)擊取消')
}
}
})